Merge branch 'master' of github.com:squidfunk/mkdocs-material

This commit is contained in:
squidfunk 2023-11-22 12:04:05 +01:00
commit 120a9be634
No known key found for this signature in database
GPG Key ID: 5ED40BC4F9C436DF
2 changed files with 33 additions and 4 deletions

View File

@ -4,15 +4,36 @@
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/",
"type": "array", "type": "array",
"items": { "items": {
"oneOf": [ "anyOf": [
{ {
"$ref": "extensions/markdown.json" "$ref": "#/$defs/external"
}, },
{ {
"$ref": "extensions/pymdownx.json" "$ref": "#/$defs/external-community"
} }
] ]
}, },
"uniqueItems": true, "uniqueItems": true,
"minItems": 1 "minItems": 1,
"$defs": {
"external": {
"description": "External markdown extensions, schema provided by us",
"anyOf": [
{
"$ref": "extensions/markdown.json"
},
{
"$ref": "extensions/pymdownx.json"
}
]
},
"external-community": {
"description": "External markdown extensions, schema provided by our community",
"anyOf": [
{
"$ref": "https://raw.githubusercontent.com/Neoteroi/mkdocs-plugins/main/docs/extensions-schema.json"
}
]
}
}
} }

View File

@ -59,6 +59,14 @@
"md_in_html" "md_in_html"
] ]
}, },
{
"title": "Sane Lists Python Markdown",
"markdownDescription": "https://python-markdown.github.io/extensions/sane_lists/",
"enum": [
"markdown.extensions.sane_lists",
"sane_lists"
]
},
{ {
"title": "Tables Python Markdown", "title": "Tables Python Markdown",
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#tables", "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#tables",