You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-7Lines changed: 5 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,17 +4,17 @@ Missing `id` and `class` attribute completion support for HTML documents.
4
4
5
5
## Features
6
6
7
-
- HTML `class` attribute completion.
8
7
- HTML `id` attribute completion.
9
-
- Supports linked [`<link rel="stylesheet">`] and embedded [`<style></style>`] style sheets.
8
+
- HTML `class` attribute completion.
9
+
- Supports linked `[<link rel="stylesheet">]` and embedded `[<style></style>]` style sheets.
10
10
- Supports template inheritance.
11
11
- Supports additional style sheets.
12
12
- Supports other HTML like languages.
13
13
14
14
## Linked and Embedded Style Sheets
15
15
16
16
In the following HTML file, completion will suggest for all `id` and `class` attributes. All
17
-
local links point to the same file.
17
+
local links point to the same file which is in the root of workspace folder.
18
18
19
19
**`index.html`**
20
20
```html
@@ -95,17 +95,15 @@ If it is not possible to specify local or remote styles within each HTML file or
95
95
## Supported Languages
96
96
97
97
Supported languages can be configured with the `css.enabledLanguages` setting. By default
98
-
`html` is enabled:
98
+
`html` is enabled.
99
99
100
100
```json
101
101
"css.enabledLanguages": [
102
102
"html"
103
103
]
104
104
```
105
105
106
-
Extension can be configured to support any language where it makes sense such as `handlebars`,
107
-
`php`, `javascriptreact`, `nunjucks` etc. You should also install corresponding language
108
-
extension which registers choosen language id in VS Code.
106
+
Extension can be configured to support any language where it makes sense such as `nunjucks`, `twig`, `mustache`, etc. You should also install corresponding language extension which registers choosen language id in VS Code.
109
107
110
108
This setting is application scoped so it should be set in global settings and changing the
0 commit comments