mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
40 lines
1.2 KiB
JSON
40 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft-07/schema",
|
|
"title": "Git authors plugin",
|
|
"oneOf": [
|
|
{
|
|
"markdownDescription": "https://timvink.github.io/mkdocs-git-authors-plugin/",
|
|
"enum": [
|
|
"git-authors"
|
|
]
|
|
},
|
|
{
|
|
"type": "object",
|
|
"properties": {
|
|
"git-authors": {
|
|
"markdownDescription": "https://timvink.github.io/mkdocs-git-authors-plugin/options.html",
|
|
"type": "object",
|
|
"properties": {
|
|
"enabled": {
|
|
"title": "Enable plugin",
|
|
"markdownDescription": "https://timvink.github.io/mkdocs-git-authors-plugin/options.html#enabled",
|
|
"type": "boolean",
|
|
"default": true
|
|
},
|
|
"exclude": {
|
|
"title": "List of Markdown file patterns",
|
|
"markdownDescription": "https://timvink.github.io/mkdocs-git-authors-plugin/options.html#exclude",
|
|
"type": "array",
|
|
"items": {
|
|
"pattern": "(\\*|\\.md)$"
|
|
}
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|
|
]
|
|
}
|