mkdocs-material/docs/schema/extensions.json

22 lines
469 B
JSON
Raw Normal View History

2022-01-29 18:12:25 +03:00
{
"$schema": "https://json-schema.org/draft-07/schema",
"title": "Markdown extensions",
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/",
"type": "array",
"items": {
"oneOf": [
{
2022-01-30 20:00:23 +03:00
"$ref": "extensions/markdown.json"
2022-01-29 18:12:25 +03:00
},
{
2022-01-30 20:00:23 +03:00
"$ref": "extensions/pymdownx.json"
},
{
"$ref": "extensions/external/neoteroi.json"
2022-01-29 18:12:25 +03:00
}
]
},
"uniqueItems": true,
"minItems": 1
}