mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-14 19:07:41 +01:00
65 lines
2.4 KiB
JSON
65 lines
2.4 KiB
JSON
|
{
|
||
|
"$schema": "https://json-schema.org/draft-07/schema",
|
||
|
"title": "Built-in social plugin",
|
||
|
"oneOf": [
|
||
|
{
|
||
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/",
|
||
|
"enum": [
|
||
|
"social"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"social": {
|
||
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/",
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"cards": {
|
||
|
"title": "Social card generation",
|
||
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#cards",
|
||
|
"type": "boolean"
|
||
|
},
|
||
|
"cards_color": {
|
||
|
"title": "Social card color palette",
|
||
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#cards-color",
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"fill": {
|
||
|
"title": "Background fill color",
|
||
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#cards-color",
|
||
|
"type": "string"
|
||
|
},
|
||
|
"text": {
|
||
|
"title": "Foreground text color",
|
||
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#cards-color",
|
||
|
"type": "string"
|
||
|
}
|
||
|
},
|
||
|
"additionalProperties": false,
|
||
|
"required": [
|
||
|
"fill",
|
||
|
"text"
|
||
|
]
|
||
|
},
|
||
|
"cards_font": {
|
||
|
"title": "Social card font",
|
||
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#cards-font",
|
||
|
"type": "string",
|
||
|
"default": "Roboto"
|
||
|
},
|
||
|
"cards_directory": {
|
||
|
"title": "Social card directory",
|
||
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#cards-directory",
|
||
|
"type": "string",
|
||
|
"default": "assets/images/social"
|
||
|
}
|
||
|
},
|
||
|
"additionalProperties": false
|
||
|
}
|
||
|
},
|
||
|
"additionalProperties": false
|
||
|
}
|
||
|
]
|
||
|
}
|