2022-02-21 14:03:36 +03:00
|
|
|
{
|
|
|
|
"$schema": "https://json-schema.org/draft-07/schema",
|
|
|
|
"title": "Built-in privacy plugin",
|
|
|
|
"oneOf": [
|
|
|
|
{
|
2022-07-17 17:36:42 +03:00
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#built-in-privacy-plugin",
|
2022-02-21 14:03:36 +03:00
|
|
|
"enum": [
|
|
|
|
"privacy"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"privacy": {
|
2022-07-17 17:36:42 +03:00
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#built-in-privacy-plugin",
|
2022-02-21 14:03:36 +03:00
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
2022-02-27 15:12:42 +03:00
|
|
|
"enabled": {
|
|
|
|
"title": "Enable plugin",
|
2022-09-11 20:25:40 +03:00
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#+privacy.enabled",
|
2022-02-21 14:03:36 +03:00
|
|
|
"type": "boolean",
|
|
|
|
"default": true
|
|
|
|
},
|
2023-02-06 19:00:02 +03:00
|
|
|
"concurrency": {
|
|
|
|
"title": "Concurrency (number of CPUs)",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#+privacy.concurrency",
|
2023-07-29 18:58:01 +03:00
|
|
|
"type": "number"
|
2022-10-03 21:07:28 +03:00
|
|
|
},
|
2023-05-08 19:58:32 +03:00
|
|
|
"assets": {
|
|
|
|
"title": "Process external assets",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#+privacy.assets",
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true
|
|
|
|
},
|
|
|
|
"assets_fetch": {
|
|
|
|
"title": "Download external assets",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#+privacy.assets_fetch",
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true
|
2022-02-27 15:12:42 +03:00
|
|
|
},
|
2023-05-08 19:58:32 +03:00
|
|
|
"assets_fetch_dir": {
|
|
|
|
"title": "Download external assets to this directory",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#+privacy.assets_fetch_dir",
|
2022-02-21 14:03:36 +03:00
|
|
|
"type": "string",
|
2022-10-18 10:23:32 +03:00
|
|
|
"default": "assets/external"
|
2022-03-05 15:52:56 +03:00
|
|
|
},
|
2023-05-08 19:58:32 +03:00
|
|
|
"assets_include": {
|
2023-02-06 19:00:02 +03:00
|
|
|
"title": "External assets to include",
|
2023-05-08 19:58:32 +03:00
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#+privacy.assets_include",
|
2023-02-06 19:00:02 +03:00
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"title": "External assets matching this pattern will be downloaded",
|
2023-05-08 19:58:32 +03:00
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#+privacy.assets_include",
|
2023-02-06 19:00:02 +03:00
|
|
|
"pattern": ".*"
|
|
|
|
},
|
|
|
|
"uniqueItems": true,
|
|
|
|
"minItems": 1
|
|
|
|
},
|
2023-05-08 19:58:32 +03:00
|
|
|
"assets_exclude": {
|
2023-02-06 19:00:02 +03:00
|
|
|
"title": "External assets to exclude",
|
2023-05-08 19:58:32 +03:00
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#+privacy.assets_exclude",
|
2022-03-05 15:52:56 +03:00
|
|
|
"type": "array",
|
|
|
|
"items": {
|
2023-02-06 19:00:02 +03:00
|
|
|
"title": "External assets matching this pattern will not be downloaded",
|
2023-05-08 19:58:32 +03:00
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#+privacy.assets_exclude",
|
2022-03-05 15:52:56 +03:00
|
|
|
"pattern": ".*"
|
|
|
|
},
|
|
|
|
"uniqueItems": true,
|
|
|
|
"minItems": 1
|
2022-10-18 10:23:32 +03:00
|
|
|
},
|
2023-05-08 19:58:32 +03:00
|
|
|
"links": {
|
|
|
|
"title": "Process external links",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#+privacy.links",
|
2022-10-18 10:23:32 +03:00
|
|
|
"type": "boolean",
|
|
|
|
"default": true
|
|
|
|
},
|
2023-05-08 19:58:32 +03:00
|
|
|
"links_attr_map": {
|
2022-10-18 10:23:32 +03:00
|
|
|
"title": "Custom attributes to add to external links",
|
2023-05-08 19:58:32 +03:00
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#+privacy.links_attr_map",
|
2022-10-18 10:23:32 +03:00
|
|
|
"type": "object",
|
|
|
|
"patternProperties": {
|
|
|
|
"^[\\w_]+$": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2023-05-08 19:58:32 +03:00
|
|
|
"links_noopener": {
|
2022-10-18 10:23:32 +03:00
|
|
|
"title": "Behavior for external links that open in new windows",
|
2023-05-08 19:58:32 +03:00
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#+privacy.links_noopener",
|
2022-10-18 10:23:32 +03:00
|
|
|
"type": "boolean",
|
|
|
|
"default": true
|
2022-02-21 14:03:36 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"additionalProperties": false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"additionalProperties": false
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|