Skip to content

Commit a1aab9a

Browse files
committed
Update docs
1 parent b5189fa commit a1aab9a

File tree

4 files changed

+18
-7
lines changed

4 files changed

+18
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to the extension will be documented in this file.
44

5+
## [1.6.1] - 2020-12-31
6+
7+
- Update documentation.
8+
- Update dependencies.
9+
510
## [1.6.0] - 2020-12-29
611

712
- Updated settings.

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# Visual Studio Code CSS Intellisense for HTML
22

3-
HTML `id` and `class` attributes completion and validation for Visual Studio Code.
3+
HTML `id` and `class` attribute completion and validation for Visual Studio Code.
44

55
## Features
66

7-
- HTML `id` and `class` attributes completion and validation.
7+
- HTML `id` and `class` attribute completion and validation.
88
- Supports linked and embedded style sheets.
99
- Supports template inheritance.
1010
- Supports additional style sheets.
1111
- Supports other HTML like languages.
1212

1313
## Usage
1414

15-
You can view a list of `id` and `class` attribute suggestions via `ctrl + space`. Invalid selectors will be shown as warnings.
15+
You can view a list of `id` and `class` attribute suggestions via `ctrl + space`. Invalid `class` selectors will be shown as warnings, `id` selectors will be shown as information.
1616

1717
## Linked and Embedded Style Sheets
1818

@@ -146,6 +146,9 @@ If it is not possible to specify local or remote styles in HTML or via template
146146
"./site.css"
147147
]
148148
```
149+
150+
All relative paths will be evaluated relative to the HTML file being edited.
151+
149152
## Selector Validation
150153

151154
Validated selectors can be configured with the `css.validation` setting. By default `class` selectors are validated:

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-html-css",
33
"displayName": "HTML CSS Support",
44
"description": "CSS Intellisense for HTML",
5-
"version": "1.6.0",
5+
"version": "1.6.1",
66
"publisher": "ecmel",
77
"license": "MIT",
88
"homepage": "https://github.com/ecmel/vscode-html-css",
@@ -20,13 +20,16 @@
2020
"Other"
2121
],
2222
"keywords": [
23+
"css",
2324
"html",
2425
"twig",
2526
"blade",
2627
"django",
2728
"nunjucks",
2829
"mustache",
29-
"css",
30+
"angular",
31+
"react",
32+
"vue",
3033
"multi-root ready"
3134
],
3235
"activationEvents": [
@@ -105,4 +108,4 @@
105108
"webpack-cli": "^4.2.0",
106109
"webpack": "^5.10.0"
107110
}
108-
}
111+
}

0 commit comments

Comments
 (0)