vscode-string-html/README.md

18 lines
235 B
Markdown
Raw Normal View History

2023-03-03 12:07:45 +08:00
## string-html-css
2023-03-03 17:17:11 +08:00
一个高亮js代码中的 html/css/scss/sass/less的字符串, 并支持emmet.
```js
const foo = css`
.foo { color: red }
`
const foo = scss`
.foo { color: red }
`
const foo = html`
<div>hello</div>
`
```