mirror of
https://github.com/nix-community/home-manager
synced 2024-10-31 16:29:44 +01:00
0a71046493
`document-highlighter` now outputs a `<code>` block inside the pre-formatted `<pre>` tag. This changes the required CSS for rendering code snippets. Moreover, this commit uses the highlightjs as provided by the `document-highlighter` package instead of the version packaged in `nmd`.
8 lines
70 B
CSS
8 lines
70 B
CSS
pre {
|
|
padding: 0;
|
|
}
|
|
|
|
pre code.hljs {
|
|
border: none;
|
|
margin: 0;
|
|
}
|