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`.
9 lines
70 B
CSS
9 lines
70 B
CSS
pre {
|
|
padding: 0;
|
|
}
|
|
|
|
pre code.hljs {
|
|
border: none;
|
|
margin: 0;
|
|
}
|