https://github.com/zaydek/vscode-sass-template-strings
Syntax highlighting for CSS and Sass template strings
https://github.com/zaydek/vscode-sass-template-strings
Last synced: 3 months ago
JSON representation
Syntax highlighting for CSS and Sass template strings
- Host: GitHub
- URL: https://github.com/zaydek/vscode-sass-template-strings
- Owner: zaydek
- License: mit
- Created: 2021-04-17T05:16:28.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-04-02T02:04:23.000Z (about 4 years ago)
- Last Synced: 2025-01-24T19:17:25.548Z (over 1 year ago)
- Homepage: https://marketplace.visualstudio.com/items?itemName=ZaydekMichels-Gualtieri.sass-template-strings
- Size: 21.5 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sass Template Strings (VS Code Extension)
[VS Code extension](https://marketplace.visualstudio.com/items?itemName=ZaydekMichels-Gualtieri.sass-template-strings) to add first-class CSS and Sass syntax highlighting for `css`, `sass`, and `scss` ES6 template literals (template strings).
For example:
```js
// Adds syntax highlighting here
css`
.foo bar {
content: "baz";
}
`
// Here
sass`
.foo {
.bar {
content: "baz";
}
}
`
// And here
sass(`
.foo {
.bar {
content: "baz";
}
}
`)
```
[`sass-template-strings`](https://marketplace.visualstudio.com/items?itemName=ZaydekMichels-Gualtieri.sass-template-strings) is a fork of [`sass-in-template-string`](https://marketplace.visualstudio.com/items?itemName=enhancedjs.sass-in-template-string) which is a fork of [`vscode-styled-components`](https://marketplace.visualstudio.com/items?itemName=jpoissonnier.vscode-styled-components).
---
Licensed as [MIT](/LICENSE).