about summary refs log tree commit diff
path: root/doc/manpage-urls.json
AgeCommit message (Collapse)AuthorFilesLines
2024-02-08doc: update buildNixShellImage docs, add streamNixShellImage docsDS1-1/+2
2024-02-01doc: update environment helpers in dockerTools docs, add fakeNss sectionDS1-1/+4
Co-authored-by: Robert Hensing <roberth@users.noreply.github.com>
2023-12-18doc/manpage-urls.json: Fix link to gnunet's manualnicoo1-1/+1
2023-12-12doc/manpage-urls.json: Add *all* systemd manpagesnicoo1-3/+287
and add the generating script to `maintainers/scripts/doc`
2023-11-21nixos/xdg/portal: Add config and configPackages optionBobby Rong1-0/+2
In x-d-p 1.17, when no configs are given, you apps will likely not able to find a backend. Let users aware of the changes.
2023-01-21doc/manpage-urls.json: add gnunet.confNaïm Favier1-0/+1
2023-01-21doc/manpage-urls.json: add mpdNaïm Favier1-1/+3
2023-01-02doc: separate manpage URLs from the Pandoc filterNaïm Favier1-0/+29
Move the manpage-to-URL mapping to `doc/manpage-urls.json` so that we can reuse that file elsewhere, and generate the `link-manpages.lua` filter from that file. Also modify the Pandoc filter so that it doesn't wrap manpages that are already inside a link. Keeping a Lua filter is essential for speed: a Python filter would increase the runtime `md-to-db.sh` from ~20s to ~30s (but Python is not to blame; marshalling Pandoc types to and from JSON is a costly operation). Parsing in Lua seems tedious, so I went with the Nix way.