Skip to content

Commit

Permalink
fix(docs): Use CSS-style comments in syntax highlight CSS suggestion …
Browse files Browse the repository at this point in the history
…snippet. (getzola#2572)
  • Loading branch information
schilkp authored Jul 13, 2024
1 parent e834c7a commit c20b336
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/content/documentation/content/syntax-highlighting.md
Original file line number Diff line number Diff line change
Expand Up @@ -316,27 +316,27 @@ highlight(code);
Depending on the annotations used, some codeblocks will be hard to read without any CSS. We recommend using the following
snippet in your sites:

```scss
```css
pre {
padding: 1rem;
overflow: auto;
}
// The line numbers already provide some kind of left/right padding
/* The line numbers already provide some kind of left/right padding */
pre[data-linenos] {
padding: 1rem 0;
}
pre table td {
padding: 0;
}
// The line number cells
/* The line number cells */
pre table td:nth-of-type(1) {
text-align: center;
user-select: none;
}
pre mark {
// If you want your highlights to take the full width.
/* If you want your highlights to take the full width */
display: block;
// The default background colour of a mark is bright yellow
/* The default background colour of a mark is bright yellow */
background-color: rgba(254, 252, 232, 0.9);
}
pre table {
Expand All @@ -353,7 +353,7 @@ snippet above.

```scss, linenos, linenostart=10, hl_lines=3-4 8-9, hide_lines=2 7
pre mark {
// If you want your highlights to take the full width.
// If you want your highlights to take the full width
display: block;
color: currentcolor;
}
Expand Down

0 comments on commit c20b336

Please sign in to comment.