mkdocs-material/docs/schema/plugins/external/literate-nav.json

38 lines
1.4 KiB
JSON
Raw Normal View History

2022-12-16 20:22:18 +03:00
{
"$schema": "http://json-schema.org/draft-07/schema",
2023-01-28 16:41:31 +03:00
"title": "Configure navigation in Markdown instead of YAML",
"oneOf": [
{
2022-12-16 20:22:18 +03:00
"markdownDescription": "https://github.com/oprypin/mkdocs-literate-nav",
"enum": [
"literate-nav"
]
},
{
2022-12-16 20:22:18 +03:00
"type": "object",
"properties": {
"literate-nav": {
"markdownDescription": "https://github.com/oprypin/mkdocs-literate-nav",
"type": "object",
"properties": {
"nav_file": {
"title": "The name of the file to read to determine the navigation for a particular directory under `docs_dir`",
"markdownDescription": "https://oprypin.github.io/mkdocs-literate-nav/reference.html#nav_file",
"type": "string",
"default": "SUMMARY.md"
},
"implicit_index": {
"title": "If set and a directory has a file named `index.md` or `README.md`, but the literate nav for that directory that never includes it, it will be inserted as the first item of the nav",
"markdownDescription": "https://oprypin.github.io/mkdocs-literate-nav/reference.html#implicit_index",
"type": "boolean",
"default": false
}
},
"additionalProperties": false
2022-12-16 20:22:18 +03:00
}
},
"additionalProperties": false
}
]
2022-12-16 20:22:18 +03:00
}