Initial Commit
Bringing Documentation into Gitea
This commit is contained in:
34
schema/nav.json
Normal file
34
schema/nav.json
Normal file
@ -0,0 +1,34 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft-07/schema",
|
||||
"title": "Navigation tree",
|
||||
"markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#nav",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"anyOf": [
|
||||
{
|
||||
"title": "Navigation item",
|
||||
"markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#nav",
|
||||
"pattern": "\\.md$"
|
||||
},
|
||||
{
|
||||
"type": "object",
|
||||
"markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#nav",
|
||||
"patternProperties": {
|
||||
".*": {
|
||||
"oneOf": [
|
||||
{
|
||||
"title": "Navigation item",
|
||||
"markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#nav",
|
||||
"pattern": "\\.md$"
|
||||
},
|
||||
{
|
||||
"$ref": "#"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"additionalItems": false
|
||||
}
|
Reference in New Issue
Block a user