2022-01-29 19:14:23 +01:00
|
|
|
{
|
|
|
|
"$schema": "https://json-schema.org/draft-07/schema",
|
|
|
|
"title": "Extra configuration",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"homepage": {
|
|
|
|
"title": "Homepage link (when clicking on logo)",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-logo-and-icons/#logo",
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"analytics": {
|
|
|
|
"title": "Analytics provider",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-analytics/#google-analytics",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"provider": {
|
|
|
|
"title": "Analytics provider",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-analytics/#google-analytics",
|
|
|
|
"oneOf": [
|
|
|
|
{
|
|
|
|
"enum": [
|
|
|
|
"google"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"property": {
|
|
|
|
"oneOf": [
|
|
|
|
{
|
|
|
|
"title": "Google Analytics 4",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-analytics/#google-analytics",
|
|
|
|
"pattern": "^G-\\w{10}$"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"title": "Universal Analytics",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-analytics/#google-analytics",
|
2022-01-30 18:00:23 +01:00
|
|
|
"pattern": "^UA-\\w{9}-\\w$"
|
2022-01-29 19:14:23 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"title": "Unknown property",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-analytics/#google-analytics",
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"feedback": {
|
|
|
|
"title": "Was this page helpful?",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-analytics/#was-this-page-helpful",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"title": {
|
|
|
|
"title": "Feedback widget title",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-analytics/#was-this-page-helpful",
|
|
|
|
"type": "string",
|
|
|
|
"default": "Was this page helpful?"
|
|
|
|
},
|
|
|
|
"ratings": {
|
2022-01-29 20:50:47 +01:00
|
|
|
"title": "Feedback ratings",
|
2022-01-29 19:14:23 +01:00
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-analytics/#was-this-page-helpful",
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
2022-01-29 20:50:47 +01:00
|
|
|
"title": "Feedback rating",
|
2022-01-29 19:14:23 +01:00
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"icon": {
|
2022-01-30 14:19:35 +01:00
|
|
|
"$ref": "#/definitions/icon"
|
2022-01-29 19:14:23 +01:00
|
|
|
},
|
|
|
|
"name": {
|
|
|
|
"title": "Feedback rating name",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-analytics/#feedback-rating-name",
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"data": {
|
|
|
|
"title": "Feedback rating data",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-analytics/#feedback-rating-data",
|
|
|
|
"type": "number"
|
|
|
|
},
|
|
|
|
"note": {
|
|
|
|
"title": "Feedback rating data",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-analytics/#feedback-rating-note",
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"additionalProperties": false,
|
|
|
|
"required": [
|
|
|
|
"icon",
|
|
|
|
"name",
|
|
|
|
"data",
|
|
|
|
"note"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"additionalProperties": false,
|
|
|
|
"required": [
|
|
|
|
"title"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"additionalProperties": false,
|
|
|
|
"required": [
|
|
|
|
"provider",
|
|
|
|
"property"
|
2022-01-30 14:19:35 +01:00
|
|
|
],
|
|
|
|
"defaultSnippets": [
|
|
|
|
{
|
|
|
|
"label": "feedback",
|
|
|
|
"body": {
|
|
|
|
"feedback": {
|
|
|
|
"title": "${1:Was this page helpful}",
|
|
|
|
"ratings": [
|
|
|
|
{
|
|
|
|
"icon": "${2:material/emoticon-happy-outline}",
|
|
|
|
"name": "${3:This page was helpful}",
|
|
|
|
"data": 1,
|
|
|
|
"note": "${4:Thanks for your feedback!}"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"icon": "${5:material/emoticon-sad-outline}",
|
|
|
|
"name": "${6:This page could be improved}",
|
|
|
|
"data": 0,
|
|
|
|
"note": "${7:Thanks for your feedback!}"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-01-29 19:14:23 +01:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"consent": {
|
|
|
|
"title": "Cookie consent",
|
2022-03-23 11:08:22 +01:00
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#cookie-consent",
|
2022-01-29 19:14:23 +01:00
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"title": {
|
|
|
|
"title": "Cookie consent title",
|
2022-03-23 11:08:22 +01:00
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#cookie-consent",
|
2022-01-29 19:14:23 +01:00
|
|
|
"type": "string",
|
|
|
|
"default": "Cookie consent"
|
|
|
|
},
|
|
|
|
"description": {
|
|
|
|
"title": "Cookie consent description",
|
2022-03-23 11:08:22 +01:00
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#cookie-consent",
|
2022-01-29 19:14:23 +01:00
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"cookies": {
|
|
|
|
"title": "Cookies",
|
2022-03-23 11:08:22 +01:00
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#cookie-consent",
|
2022-01-29 19:14:23 +01:00
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"analytics": {
|
|
|
|
"title": "Cookie",
|
2022-03-23 11:08:22 +01:00
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#cookie-consent",
|
2022-01-29 19:14:23 +01:00
|
|
|
"oneOf": [
|
|
|
|
{
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"name": {
|
|
|
|
"title": "Cookie name",
|
2022-03-23 11:08:22 +01:00
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#cookie-consent",
|
2022-01-29 19:14:23 +01:00
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"checked": {
|
|
|
|
"title": "Initial state",
|
2022-03-23 11:08:22 +01:00
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#cookie-consent",
|
2022-01-29 19:14:23 +01:00
|
|
|
"type": "boolean",
|
|
|
|
"default": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"additionalProperties": false,
|
|
|
|
"required": [
|
|
|
|
"name"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2022-01-30 14:19:35 +01:00
|
|
|
"additionalProperties": false,
|
|
|
|
"defaultSnippets": [
|
|
|
|
{
|
|
|
|
"label": "analytics",
|
|
|
|
"body": {
|
|
|
|
"analytics": {
|
|
|
|
"name": "Google Analytics",
|
|
|
|
"checked": true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2022-01-29 19:14:23 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"additionalProperties": false,
|
|
|
|
"required": [
|
|
|
|
"title",
|
|
|
|
"description"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"social": {
|
|
|
|
"title": "Social links",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-the-footer/#social-links",
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
2022-01-29 20:50:47 +01:00
|
|
|
"title": "Social link",
|
2022-01-29 19:14:23 +01:00
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"icon": {
|
2022-01-30 14:19:35 +01:00
|
|
|
"$ref": "#/definitions/icon"
|
2022-01-29 19:14:23 +01:00
|
|
|
},
|
|
|
|
"link": {
|
|
|
|
"title": "Social link",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-the-footer/#social-link",
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"name": {
|
|
|
|
"title": "Social link name",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-the-footer/#social-name",
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"additionalProperties": false,
|
|
|
|
"required": [
|
|
|
|
"icon",
|
|
|
|
"link"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"alternate": {
|
|
|
|
"title": "Site language selector",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-language/#site-language-selector",
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"title": "Alternate language",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-language/#site-language-selector",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"name": {
|
|
|
|
"title": "Alternate language name",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-language/#language-name",
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"link": {
|
|
|
|
"title": "Alternate language link",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-language/#language-link",
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"lang": {
|
|
|
|
"title": "Alternate language code (ISO 639-1)",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-language/#language-lang",
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"additionalProperties": false,
|
|
|
|
"required": [
|
|
|
|
"name",
|
|
|
|
"link",
|
|
|
|
"lang"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"version": {
|
|
|
|
"title": "Versioning",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-versioning/#versioning",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"provider": {
|
|
|
|
"title": "Versioning provider",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-versioning/#versioning",
|
|
|
|
"enum": [
|
|
|
|
"mike"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"default": {
|
|
|
|
"title": "Default version",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-versioning/#version-warning",
|
|
|
|
"default": "stable"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"generator": {
|
|
|
|
"title": "Generator notice",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-the-footer/#generator-notice",
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true
|
|
|
|
}
|
|
|
|
},
|
2022-01-30 18:00:23 +01:00
|
|
|
"additionalProperties": true,
|
2022-01-30 14:19:35 +01:00
|
|
|
"definitions": {
|
|
|
|
"icon": {
|
|
|
|
"oneOf": [
|
|
|
|
{
|
|
|
|
"$ref": "assets/icons.json"
|
|
|
|
},
|
|
|
|
{
|
2022-01-30 18:00:23 +01:00
|
|
|
"title": "Unknown icon",
|
2022-01-30 14:19:35 +01:00
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"defaultSnippets": [
|
|
|
|
{
|
|
|
|
"label": "analytics",
|
|
|
|
"body": {
|
|
|
|
"analytics": {
|
|
|
|
"provider": "${1:google}",
|
|
|
|
"property": "${2:UA-XXXXXXXX-X}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2022-01-29 19:14:23 +01:00
|
|
|
}
|