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
+19-3
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,19 @@
1
1
# CSS Nesting Syntax Highlighting
2
-
All modern browsers support CSS nesting ([Can I Use](https://caniuse.com/css-nesting)), but Visual Studio Code doesn't currently have CSS nesting syntax highlighting. This extension rectifies that by updating the CSS syntax highlighting to include nesting (and more).
2
+
3
+
| Table of Contents |
4
+
| -- |
5
+
|[Overview](#overview)|
6
+
|[CSS Nesting Example](#css-nesting-example)|
7
+
|[Other Features](#other-features)|
8
+
|[Installation](#installation)|
9
+
|[Companion Theme](#companion-theme)|
10
+
|[What's New](#whats-new)|
11
+
|[Known Issues](#known-issues)|
12
+
|[Reporting Issues](#issues)|
13
+
14
+
## Overview
15
+
16
+
All modern browsers support CSS nesting ([Can I Use](https://caniuse.com/css-nesting)), but Visual Studio Code doesn't currently have CSS nesting syntax highlighting. This extension rectifies that by updating the CSS syntax highlighting to include nesting ([and more](#other-features)).
3
17
4
18
To learn more about CSS Nesting, see [MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_nesting).
5
19
@@ -24,7 +38,9 @@ The core CSS syntax file this extension updates can be found in the [official vs
24
38
}
25
39
```
26
40
27
-
## Includes `@container` Syntax Highlighting
41
+
## Other Features
42
+
43
+
### Includes syntax highlighting for `@container`
28
44
29
45
```css
30
46
/* Nested @container example */
@@ -41,7 +57,7 @@ The core CSS syntax file this extension updates can be found in the [official vs
41
57
}
42
58
```
43
59
44
-
## Includes _function_ syntax highlighting for 'at-rules', such as in `@media`
60
+
### Includes _function_ syntax highlighting for 'at-rules', such as in `@media`
0 commit comments