2022-01-29 19:14:23 +01:00
|
|
|
{
|
|
|
|
"$schema": "https://json-schema.org/draft-07/schema",
|
|
|
|
"title": "Built-in social plugin",
|
|
|
|
"oneOf": [
|
|
|
|
{
|
2022-07-17 16:36:42 +02:00
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#built-in-social-plugin",
|
2022-01-29 19:14:23 +01:00
|
|
|
"enum": [
|
|
|
|
"social"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"social": {
|
2022-07-17 16:36:42 +02:00
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#built-in-social-plugin",
|
2022-01-29 19:14:23 +01:00
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
2023-05-08 18:58:32 +02:00
|
|
|
"enabled": {
|
|
|
|
"title": "Enable plugin",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#+social.enabled",
|
2022-02-21 12:03:36 +01:00
|
|
|
"type": "boolean",
|
|
|
|
"default": true
|
2022-01-29 19:14:23 +01:00
|
|
|
},
|
2023-05-08 18:58:32 +02:00
|
|
|
"concurrency": {
|
|
|
|
"title": "Concurrency (number of CPUs)",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#+social.concurrency",
|
|
|
|
"type": "number",
|
|
|
|
"default": 1
|
2022-01-29 19:14:23 +01:00
|
|
|
},
|
2023-05-08 18:58:32 +02:00
|
|
|
"cards": {
|
|
|
|
"title": "Social cards",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#+social.cards",
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true
|
2022-01-29 19:14:23 +01:00
|
|
|
},
|
2022-06-19 08:17:14 +02:00
|
|
|
"cards_dir": {
|
2023-05-08 18:58:32 +02:00
|
|
|
"title": "Social cards directory",
|
2022-09-11 19:25:40 +02:00
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#+social.cards_dir",
|
2022-01-29 19:14:23 +01:00
|
|
|
"type": "string",
|
|
|
|
"default": "assets/images/social"
|
2023-05-08 18:58:32 +02:00
|
|
|
},
|
|
|
|
"cards_layout_dir": {
|
|
|
|
"title": "Social cards layout directory",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#+social.cards_layout_dir",
|
|
|
|
"type": "string",
|
|
|
|
"default": "layouts"
|
|
|
|
},
|
|
|
|
"cards_layout": {
|
|
|
|
"title": "Social cards layout",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#+social.cards_layout",
|
|
|
|
"default": "default",
|
|
|
|
"enum": [
|
|
|
|
"default",
|
|
|
|
"default/accent",
|
|
|
|
"default/invert",
|
|
|
|
"default/variant"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"cards_layout_options": {
|
|
|
|
"title": "Social cards layout options",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#+social.cards_layout_options",
|
|
|
|
"type": "object"
|
|
|
|
},
|
2023-05-20 17:23:53 +02:00
|
|
|
"cards_include": {
|
|
|
|
"title": "Pages or folders to include",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#+social.cards_include",
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"title": "Pages or folders matching this pattern will be included",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#+social.cards_include",
|
|
|
|
"pattern": ".*"
|
|
|
|
},
|
|
|
|
"uniqueItems": true,
|
|
|
|
"minItems": 1
|
|
|
|
},
|
|
|
|
"cards_exclude": {
|
|
|
|
"title": "Pages or folders to exclude",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#+social.cards_exclude",
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"title": "Pages or folders matching this pattern will be excluded",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#+social.cards_exclude",
|
|
|
|
"pattern": ".*"
|
|
|
|
},
|
|
|
|
"uniqueItems": true,
|
|
|
|
"minItems": 1
|
|
|
|
},
|
2023-05-08 18:58:32 +02:00
|
|
|
"debug": {
|
|
|
|
"title": "Debug mode",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#+social.debug",
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true
|
|
|
|
},
|
2023-05-20 11:01:27 +02:00
|
|
|
"debug_on_build": {
|
|
|
|
"title": "Always disable debug mode on build",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#+social.debug_on_build",
|
|
|
|
"type": "boolean",
|
|
|
|
"default": false
|
|
|
|
},
|
2023-05-08 18:58:32 +02:00
|
|
|
"debug_grid": {
|
|
|
|
"title": "Debug grid",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#+social.debug_grid",
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true
|
|
|
|
},
|
|
|
|
"debug_grid_step": {
|
|
|
|
"title": "Debug grid step size",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#+social.debug_grid_step",
|
|
|
|
"type": "number",
|
|
|
|
"default": 32
|
|
|
|
},
|
|
|
|
"debug_color": {
|
|
|
|
"title": "Debug color",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#+social.debug_color",
|
|
|
|
"type": "string",
|
|
|
|
"default": "yellow"
|
|
|
|
},
|
|
|
|
"cache": {
|
|
|
|
"title": "Enable caching",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#+social.cache",
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true
|
|
|
|
},
|
|
|
|
"cache_dir": {
|
|
|
|
"title": "Cache directory",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#+social.cache_dir",
|
|
|
|
"type": "string",
|
|
|
|
"default": ".cache/plugins/social"
|
2022-01-29 19:14:23 +01:00
|
|
|
}
|
|
|
|
},
|
2023-05-08 18:58:32 +02:00
|
|
|
"additionalProperties": false
|
2022-01-29 19:14:23 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"additionalProperties": false
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|