Skip to content

Commit 4bf5e85

Browse files
committed
Update docs
1 parent 9999312 commit 4bf5e85

File tree

3 files changed

+19
-13
lines changed

3 files changed

+19
-13
lines changed

CHANGELOG.md

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

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

5+
## [1.9.1] - 2021-01-17
6+
7+
- Update documentation.
8+
59
## [1.9.0] - 2021-01-16
610

711
- Added Clear Cache command.

README.md

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ HTML `id` and `class` attribute completion for Visual Studio Code.
99
- Supports template inheritance.
1010
- Supports additional style sheets.
1111
- Supports other HTML like languages.
12+
- Validates CSS selectors on demand.
1213

1314
## Usage
1415

@@ -26,28 +27,28 @@ Linked `[<link rel="stylesheet">]` and embedded `[<style></style>]` style sheets
2627
<head>
2728
<!-- Remote style sheet -->
2829

29-
<link rel="stylesheet"
30-
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
30+
<link rel="stylesheet"
31+
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
3132

3233
<!-- Local style sheet relative to workspace folder -->
3334

34-
<link rel="stylesheet" href="/style.css">
35+
<link rel="stylesheet" href="/style.css">
3536

3637
<!-- Local style sheet relative to this file -->
3738

38-
<link rel="stylesheet" href="style.css">
39+
<link rel="stylesheet" href="style.css">
3940

4041
<!-- Embedded style sheet -->
4142

42-
<style>
43-
#content {
44-
display: block;
45-
}
43+
<style>
44+
#content {
45+
display: block;
46+
}
4647
47-
.internal {
48-
display: block;
49-
}
50-
</style>
48+
.internal {
49+
display: block;
50+
}
51+
</style>
5152
</head>
5253

5354
<body>
@@ -61,6 +62,7 @@ Linked `[<link rel="stylesheet">]` and embedded `[<style></style>]` style sheets
6162

6263
</html>
6364
```
65+
6466
All local links point to the same file which is in the root of workspace folder:
6567

6668
**`style.css`**

package.json

Lines changed: 1 addition & 1 deletion
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.9.0",
5+
"version": "1.9.1",
66
"publisher": "ecmel",
77
"license": "MIT",
88
"homepage": "https://github.com/ecmel/vscode-html-css",

0 commit comments

Comments
 (0)