nix-community.nixvim/docs/lib/pages.nix
Matt Sturgeon 2ee5d71d52
doc/lib/index.md: update heading title
Move heading to `pages.nix` page title.
2025-05-19 00:22:43 +01:00

13 lines
416 B
Nix

# This file contains a list of function reference docs pages that should be generated by `nixdoc`
#
# Note: `nixdoc` uses `rnix` to parse the input file, so the file must return a fairly simple attrset.
# If there is an issue parsing the file, the resulting markdown will not contain any function docs.
{
lib.pages = {
nixvim = {
title = "Nixvim's functions";
markdown = ./index.md;
};
};
}