2022-01-29 18:12:25 +03:00
|
|
|
{
|
|
|
|
"$schema": "https://json-schema.org/draft-07/schema",
|
|
|
|
"title": "Plugins",
|
|
|
|
"markdownDescription": "https://www.mkdocs.org/dev-guide/plugins/",
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"oneOf": [
|
2022-03-06 13:27:03 +03:00
|
|
|
{
|
2022-03-06 13:45:09 +03:00
|
|
|
"$ref": "#/definitions/built-in"
|
2022-03-06 13:27:03 +03:00
|
|
|
},
|
2022-01-30 20:17:51 +03:00
|
|
|
{
|
2022-03-06 13:45:09 +03:00
|
|
|
"$ref": "#/definitions/external"
|
2022-01-30 20:17:51 +03:00
|
|
|
},
|
|
|
|
{
|
2022-03-06 13:45:09 +03:00
|
|
|
"$ref": "#/definitions/external-community"
|
2022-01-29 18:12:25 +03:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"uniqueItems": true,
|
2022-03-06 13:45:09 +03:00
|
|
|
"minItems": 1,
|
|
|
|
"definitions": {
|
|
|
|
"built-in": {
|
|
|
|
"description": "Built-in plugins",
|
|
|
|
"oneOf": [
|
2022-09-11 20:25:40 +03:00
|
|
|
{
|
|
|
|
"$ref": "plugins/blog.json"
|
|
|
|
},
|
2022-07-17 17:36:42 +03:00
|
|
|
{
|
|
|
|
"$ref": "plugins/meta.json"
|
|
|
|
},
|
2022-03-06 13:45:09 +03:00
|
|
|
{
|
|
|
|
"$ref": "plugins/offline.json"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"$ref": "plugins/privacy.json"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"$ref": "plugins/search.json"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"$ref": "plugins/social.json"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"$ref": "plugins/tags.json"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"external": {
|
|
|
|
"description": "External plugins, schema provided by us",
|
|
|
|
"oneOf": [
|
2022-06-24 15:38:01 +03:00
|
|
|
{
|
|
|
|
"$ref": "plugins/external/git-authors.json"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"$ref": "plugins/external/git-committers.json"
|
|
|
|
},
|
2022-03-06 13:45:09 +03:00
|
|
|
{
|
|
|
|
"$ref": "plugins/external/git-revision-date.json"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"$ref": "plugins/external/minify.json"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"$ref": "plugins/external/redirects.json"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"external-community": {
|
|
|
|
"description": "External plugins, schema provided by the community",
|
|
|
|
"oneOf": [
|
|
|
|
{
|
|
|
|
"$ref": "https://raw.githubusercontent.com/mondeja/mkdocs-include-markdown-plugin/master/schema.json"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"$ref": "https://raw.githubusercontent.com/mondeja/mkdocs-material-relative-language-selector/master/schema.json"
|
|
|
|
},
|
|
|
|
{
|
2022-06-11 11:32:30 +03:00
|
|
|
"$ref": "https://raw.githubusercontent.com/Guts/mkdocs-rss-plugin/main/docs/schema.json"
|
2022-07-14 11:47:16 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"$ref": "https://raw.githubusercontent.com/timvink/mkdocs-git-revision-date-localized-plugin/master/docs/schema.json"
|
2022-07-17 19:13:34 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"$ref": "https://raw.githubusercontent.com/blueswen/mkdocs-glightbox/main/schema.json"
|
2022-10-09 12:59:40 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"$ref": "https://raw.githubusercontent.com/prcr/mkdocs-meta-descriptions-plugin/main/schema.json"
|
2022-03-06 13:45:09 +03:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
2022-01-29 18:12:25 +03:00
|
|
|
}
|