vscode-string-html/README.md

18 lines
235 B
Markdown

## string-html-css
一个高亮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>
`
```
TypeScript 96.4%
JavaScript 3.6%