mirror of
https://github.com/nix-community/home-manager
synced 2024-11-06 03:09:45 +01:00
docs: fix syntax highlighting
`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`.
This commit is contained in:
parent
ecc724dac9
commit
0da5767319
2 changed files with 14 additions and 3 deletions
8
docs/highlight-style.css
Normal file
8
docs/highlight-style.css
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
pre {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre code.hljs {
|
||||||
|
border: none;
|
||||||
|
margin: 0;
|
||||||
|
}
|
|
@ -32,14 +32,17 @@ in stdenv.mkDerivation {
|
||||||
--replace \
|
--replace \
|
||||||
'@OPTIONS_JSON@' \
|
'@OPTIONS_JSON@' \
|
||||||
${home-manager-options.nix-darwin}/share/doc/nixos/options.json
|
${home-manager-options.nix-darwin}/share/doc/nixos/options.json
|
||||||
|
cp -t out/highlightjs ${nmd}/static/highlightjs/tomorrow-night.min.css
|
||||||
|
cp ${./highlight-style.css} out/highlightjs/highlight-style.css
|
||||||
|
|
||||||
nixos-render-docs manual html \
|
nixos-render-docs manual html \
|
||||||
--manpage-urls ./manpage-urls.json \
|
--manpage-urls ./manpage-urls.json \
|
||||||
--revision ${lib.trivial.revisionWithDefault revision} \
|
--revision ${lib.trivial.revisionWithDefault revision} \
|
||||||
--stylesheet ${nmd}/static/style.css \
|
--stylesheet ${nmd}/static/style.css \
|
||||||
--stylesheet ${nmd}/static/highlightjs/tomorrow-night.min.css \
|
--stylesheet $out/share/doc/home-manager/highlightjs/tomorrow-night.min.css \
|
||||||
--script ${nmd}/static/highlightjs/highlight.min.js \
|
--stylesheet $out/share/doc/home-manager/highlightjs/highlight-style.css \
|
||||||
--script ${nmd}/static/highlightjs/highlight.load.js \
|
--script $out/share/doc/home-manager/highlightjs/highlight.pack.js \
|
||||||
|
--script $out/share/doc/home-manager/highlightjs/loader.js \
|
||||||
--toc-depth 1 \
|
--toc-depth 1 \
|
||||||
--section-toc-depth 1 \
|
--section-toc-depth 1 \
|
||||||
manual.md \
|
manual.md \
|
||||||
|
|
Loading…
Reference in a new issue