Skip to content

Commit 354c423

Browse files
Merge pull request #3905 from Textualize/hllines-docs-fix
Fix highlighted lines in docs example
2 parents 03fb1b1 + 0e67697 commit 354c423

File tree

102 files changed

+232
-232
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+232
-232
lines changed

docs/css_types/_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ If the type has many different syntaxes, cover all of them.
5151
Add comments when needed/if helpful.
5252
-->
5353

54-
```sass
54+
```css
5555
.some-class {
5656
rule: type-value-1;
5757
rule: type-value-2;

docs/css_types/border.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ textual borders
3737

3838
### CSS
3939

40-
```sass
40+
```css
4141
#container {
4242
border: heavy red;
4343
}

docs/css_types/color.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ For example, `hsla(128, 100%, 50%, 0.5)` is the color `hsl(128, 100%, 50%)` with
106106

107107
### CSS
108108

109-
```sass
109+
```css
110110
Header {
111111
background: red; /* Color name */
112112
}

docs/css_types/horizontal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The [`<horizontal>`](./horizontal.md) type can take any of the following values:
1616

1717
### CSS
1818

19-
```sass
19+
```css
2020
.container {
2121
align-horizontal: right;
2222
}

docs/css_types/integer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ An [`<integer>`](./integer.md) is any valid integer number like `-10` or `42`.
1414

1515
### CSS
1616

17-
```sass
17+
```css
1818
.classname {
1919
offset: 10 -20
2020
}

docs/css_types/keyline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The `<keyline>` CSS type represents a line style used in the [keyline](../styles
1616

1717
### CSS
1818

19-
```sass
19+
```css
2020
Vertical {
2121
keyline: thin green;
2222
}

docs/css_types/name.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ A [`<name>`](./name.md) is any non-empty sequence of characters:
1313

1414
### CSS
1515

16-
```sass
16+
```css
1717
Screen {
1818
layers: onlyLetters Letters-and-hiphens _lead-under letters-1-digit;
1919
}

docs/css_types/number.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ A [`<number>`](./number.md) is an [`<integer>`](./integer.md), optionally follow
1010

1111
### CSS
1212

13-
```sass
13+
```css
1414
Grid {
1515
grid-size: 3 6 /* Integers are numbers */
1616
}

docs/css_types/overflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The [`<overflow>`](./overflow.md) type can take any of the following values:
1616

1717
### CSS
1818

19-
```sass
19+
```css
2020
#container {
2121
overflow-y: hidden; /* Don't overflow */
2222
}

docs/css_types/percentage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Some rules may clamp the values between `0%` and `100%`.
1616

1717
### CSS
1818

19-
```sass
19+
```css
2020
#footer {
2121
/* Integer followed by % */
2222
color: red 70%;

0 commit comments

Comments
 (0)