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

19 lines
400 B
JSON
Raw Normal View History

2022-01-29 16:12:25 +01: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 18:00:23 +01:00
"$ref": "extensions/markdown.json"
2022-01-29 16:12:25 +01:00
},
{
2022-01-30 18:00:23 +01:00
"$ref": "extensions/pymdownx.json"
2022-01-29 16:12:25 +01:00
}
]
},
"uniqueItems": true,
"minItems": 1
}