mkdocs-material/docs/schema/plugins/social.json

158 lines
6.3 KiB
JSON
Raw Normal View History

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