2025-03-05 20:44:36 +00:00
|
|
|
# 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.
|
|
|
|
|
|
|
|
{
|
2025-05-15 14:54:58 +01:00
|
|
|
lib.pages = {
|
|
|
|
nixvim = {
|
2025-05-15 15:37:22 +01:00
|
|
|
title = "Nixvim's functions";
|
2025-05-15 14:54:58 +01:00
|
|
|
markdown = ./index.md;
|
2025-05-15 15:54:58 +01:00
|
|
|
|
|
|
|
pages = {
|
|
|
|
utils = {
|
|
|
|
file = ../../lib/utils.nix;
|
|
|
|
title = "utility functions";
|
|
|
|
};
|
|
|
|
};
|
2025-05-15 14:54:58 +01:00
|
|
|
};
|
|
|
|
};
|
2025-03-05 20:44:36 +00:00
|
|
|
}
|