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" ,
2022-12-18 01:00:06 +03:00
"oneOf" : [
{
2022-12-16 20:22:18 +03:00
"markdownDescription" : "https://github.com/oprypin/mkdocs-literate-nav" ,
2023-11-20 12:59:18 +03:00
"const" : "literate-nav"
2022-12-18 01:00:06 +03:00
} ,
{
2022-12-16 20:22:18 +03:00
"type" : "object" ,
"properties" : {
2022-12-18 01:00:06 +03:00
"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-18 01:00:06 +03:00
]
2022-12-16 20:22:18 +03:00
}