about summary refs log tree commit diff
path: root/doc/manpage-urls.json
AgeCommit message (Collapse)AuthorFilesLines
2024-04-03doc: improve fetchers overview, deduplicate readme content, follow doc ↵Daniel Sidhion1-1/+3
conventions (#297654) * doc: improve fetchers overview, deduplicate readme content * Improve caveat explanation and some fetchurl content * move out consumer docs on source fetching * move note on mirror URLs to the relevant section this may be better suited for the `fetchurl` reference, but it's probably better to just render that information into the manual. for now, because - contributor documentation encourages mirrors - we can expect contributors to dig into the source - linking source files is trivial in in-code documentation we leave it there. * move instructions for updating hashes to the manual * Add more clarity on text, reorganise source hash methods --------- Co-authored-by: Valentin Gagarin <valentin.gagarin@tweag.io> Co-authored-by: Dominic Mills-Howell <dominic.millz27@gmail.com> Co-authored-by: lolbinarycat <dogedoge61+github@gmail.com>
2024-02-29doc: update docs for portableService, follow doc conventionsDS1-1/+2
2024-02-29doc: update docs in ociTools, follow doc conventionsDS1-0/+1
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.