mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
46 lines
1.5 KiB
JSON
46 lines
1.5 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft-07/schema",
|
|
"title": "Add git contributors to pages",
|
|
"oneOf": [
|
|
{
|
|
"markdownDescription": "https://github.com/ojacques/mkdocs-git-committers-plugin-2",
|
|
"enum": [
|
|
"git-committers"
|
|
]
|
|
},
|
|
{
|
|
"type": "object",
|
|
"properties": {
|
|
"git-committers": {
|
|
"markdownDescription": "https://github.com/ojacques/mkdocs-git-committers-plugin-2",
|
|
"type": "object",
|
|
"properties": {
|
|
"enabled": {
|
|
"title": "Enable plugin",
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/adding-a-git-repository/#+git-committers.enabled",
|
|
"type": "boolean",
|
|
"default": true
|
|
},
|
|
"repository": {
|
|
"title": "Repository slug",
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/adding-a-git-repository/#+git-committers.repository",
|
|
"type": "string"
|
|
},
|
|
"branch": {
|
|
"title": "Repository branch",
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/adding-a-git-repository/#+git-committers.branch",
|
|
"type": "string",
|
|
"default": "master"
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"repository"
|
|
]
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|
|
]
|
|
}
|