1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-24 15:40:15 +01:00
mkdocs-material/docs/schema/plugins.json

132 lines
3.4 KiB
JSON
Raw Normal View History

2022-01-29 16:12:25 +01:00
{
"$schema": "https://json-schema.org/draft-07/schema",
"title": "Plugins",
"markdownDescription": "https://www.mkdocs.org/dev-guide/plugins/",
"type": "array",
"items": {
2023-02-06 17:14:19 +01:00
"anyOf": [
{
2022-03-06 11:45:09 +01:00
"$ref": "#/definitions/built-in"
},
{
2022-03-06 11:45:09 +01:00
"$ref": "#/definitions/external"
},
{
2022-03-06 11:45:09 +01:00
"$ref": "#/definitions/external-community"
2022-01-29 16:12:25 +01:00
}
]
},
"uniqueItems": true,
2022-03-06 11:45:09 +01:00
"minItems": 1,
"definitions": {
"built-in": {
"description": "Built-in plugins",
2023-02-06 17:14:19 +01:00
"anyOf": [
2022-09-11 19:25:40 +02:00
{
"$ref": "plugins/blog.json"
},
2023-09-11 17:18:58 +02:00
{
"$ref": "plugins/group.json"
},
2022-12-18 17:58:11 +01:00
{
"$ref": "plugins/info.json"
},
2022-07-17 16:36:42 +02:00
{
"$ref": "plugins/meta.json"
},
2022-03-06 11:45:09 +01:00
{
"$ref": "plugins/offline.json"
},
2023-07-18 15:02:13 +02:00
{
"$ref": "plugins/optimize.json"
},
2022-03-06 11:45:09 +01:00
{
"$ref": "plugins/privacy.json"
},
2023-07-29 17:58:01 +02:00
{
"$ref": "plugins/projects.json"
},
2022-03-06 11:45:09 +01:00
{
"$ref": "plugins/search.json"
},
{
"$ref": "plugins/social.json"
},
{
"$ref": "plugins/tags.json"
2023-07-18 15:02:13 +02:00
},
{
"$ref": "plugins/typeset.json"
2022-03-06 11:45:09 +01:00
}
]
},
"external": {
"description": "External plugins, schema provided by us",
2023-02-06 17:14:19 +01:00
"anyOf": [
{
"$ref": "plugins/external/gen-files.json"
},
2022-06-24 14:38:01 +02:00
{
"$ref": "plugins/external/git-authors.json"
},
{
"$ref": "plugins/external/git-committers.json"
},
2022-03-06 11:45:09 +01:00
{
"$ref": "plugins/external/git-revision-date.json"
},
{
"$ref": "plugins/external/literate-nav.json"
},
{
"$ref": "plugins/external/macros.json"
},
2022-03-06 11:45:09 +01:00
{
"$ref": "plugins/external/minify.json"
},
{
"$ref": "plugins/external/redirects.json"
},
{
"$ref": "plugins/external/section-index.json"
2022-03-06 11:45:09 +01:00
}
]
},
"external-community": {
2023-09-21 14:53:33 +02:00
"description": "External plugins, schema provided by our community",
2023-02-06 17:14:19 +01:00
"anyOf": [
2022-03-06 11:45:09 +01:00
{
"$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"
},
{
"$ref": "https://raw.githubusercontent.com/Guts/mkdocs-rss-plugin/main/docs/schema.json"
},
{
"$ref": "https://raw.githubusercontent.com/timvink/mkdocs-git-revision-date-localized-plugin/master/docs/schema.json"
},
{
"$ref": "https://raw.githubusercontent.com/blueswen/mkdocs-glightbox/main/schema.json"
},
{
"$ref": "https://raw.githubusercontent.com/prcr/mkdocs-meta-descriptions-plugin/main/schema.json"
2022-12-11 16:22:14 +01:00
},
{
"$ref": "https://raw.githubusercontent.com/mkdocstrings/mkdocstrings/master/docs/schema.json"
},
{
"$ref": "https://raw.githubusercontent.com/pawamoy/mkdocs-coverage/master/docs/schema.json"
},
{
"$ref": "https://raw.githubusercontent.com/pawamoy/mkdocs-spellcheck/master/docs/schema.json"
},
{
"$ref": "https://raw.githubusercontent.com/pawamoy/markdown-exec/master/docs/schema.json"
2022-03-06 11:45:09 +01:00
}
]
}
}
2022-01-29 16:12:25 +01:00
}