Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,23 +26,26 @@ Missing CSS support for HTML documents.
- nunjucks
- javascript
- javascriptreact
- typescript
- typescriptreact

## Remote Style Sheets

Remote style sheets can be specified in VS Code settings:

```
```json
"css.remoteStyleSheets": [
"https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css"
]
```

## Style Sheet File Extensions

By default, `css` and `scss` files in the project are parsed. You may configure this in VS Code Settings

Remote style sheets can be specified in VS Code settings:

```
```json
"css.fileExtensions": [ "css", "scss"]
```

Expand All @@ -51,4 +54,5 @@ Remote style sheets can be specified in VS Code settings:
[Visual Studio Code Marketplace](https://marketplace.visualstudio.com/items?itemName=ecmel.vscode-html-css)

## Usage

You can view a list of attributes via `ctrl + space`.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@
"onLanguage:md",
"onLanguage:nunjucks",
"onLanguage:javascript",
"onLanguage:javascriptreact"
"onLanguage:javascriptreact",
"onLanguage:typescriptreact",
"onLanguage:typescript"
],
"main": "./out/src/extension",
"scripts": {
Expand Down