mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Updated JSON schema
This commit is contained in:
5
docs/schema/plugins/external/gen-files.json
vendored
5
docs/schema/plugins/external/gen-files.json
vendored
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft-07/schema",
|
"$schema": "https://json-schema.org/draft-07/schema",
|
||||||
"title": "MkDocs plugin to programmatically generate documentation pages during the build",
|
"title": "Generate pages during the build",
|
||||||
"oneOf": [
|
"oneOf": [
|
||||||
{
|
{
|
||||||
"markdownDescription": "https://github.com/oprypin/mkdocs-gen-files",
|
"markdownDescription": "https://github.com/oprypin/mkdocs-gen-files",
|
||||||
@@ -24,5 +24,6 @@
|
|||||||
"type": ["object", "null"]
|
"type": ["object", "null"]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}]
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft-07/schema",
|
"$schema": "https://json-schema.org/draft-07/schema",
|
||||||
"title": "Git authors plugin",
|
"title": "Add git authors to pages",
|
||||||
"oneOf": [
|
"oneOf": [
|
||||||
{
|
{
|
||||||
"markdownDescription": "https://timvink.github.io/mkdocs-git-authors-plugin/",
|
"markdownDescription": "https://timvink.github.io/mkdocs-git-authors-plugin/",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft-07/schema",
|
"$schema": "https://json-schema.org/draft-07/schema",
|
||||||
"title": "Git committers plugin",
|
"title": "Add git contributors to pages",
|
||||||
"oneOf": [
|
"oneOf": [
|
||||||
{
|
{
|
||||||
"markdownDescription": "https://github.com/ojacques/mkdocs-git-committers-plugin-2",
|
"markdownDescription": "https://github.com/ojacques/mkdocs-git-committers-plugin-2",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft-07/schema",
|
"$schema": "https://json-schema.org/draft-07/schema",
|
||||||
"title": "Git revision date plugin",
|
"title": "Add git revision date to pages",
|
||||||
"oneOf": [
|
"oneOf": [
|
||||||
{
|
{
|
||||||
"markdownDescription": "https://github.com/zhaoterryy/mkdocs-git-revision-date-plugin",
|
"markdownDescription": "https://github.com/zhaoterryy/mkdocs-git-revision-date-plugin",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "http://json-schema.org/draft-07/schema",
|
"$schema": "http://json-schema.org/draft-07/schema",
|
||||||
"title": "Literate navigation plugin",
|
"title": "Configure navigation in Markdown instead of YAML",
|
||||||
"oneOf": [
|
"oneOf": [
|
||||||
{
|
{
|
||||||
"markdownDescription": "https://github.com/oprypin/mkdocs-literate-nav",
|
"markdownDescription": "https://github.com/oprypin/mkdocs-literate-nav",
|
||||||
|
|||||||
2
docs/schema/plugins/external/macros.json
vendored
2
docs/schema/plugins/external/macros.json
vendored
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "http://json-schema.org/draft-07/schema",
|
"$schema": "http://json-schema.org/draft-07/schema",
|
||||||
"title": "Macros plugin",
|
"title": "Use variables and macros in Markdown",
|
||||||
"oneOf": [
|
"oneOf": [
|
||||||
{
|
{
|
||||||
"markdownDescription": "https://github.com/fralau/mkdocs_macros_plugin",
|
"markdownDescription": "https://github.com/fralau/mkdocs_macros_plugin",
|
||||||
|
|||||||
2
docs/schema/plugins/external/minify.json
vendored
2
docs/schema/plugins/external/minify.json
vendored
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft-07/schema",
|
"$schema": "https://json-schema.org/draft-07/schema",
|
||||||
"title": "Minify plugin",
|
"title": "Minify HTML, JavaScript and CSS during the build",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"minify": {
|
"minify": {
|
||||||
|
|||||||
10
docs/schema/plugins/external/redirects.json
vendored
10
docs/schema/plugins/external/redirects.json
vendored
@@ -1,27 +1,27 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft-07/schema",
|
"$schema": "https://json-schema.org/draft-07/schema",
|
||||||
"title": "Redirects plugin",
|
"title": "Add redirects when moving pages to new locations",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"redirects": {
|
"redirects": {
|
||||||
"markdownDescription": "https://github.com/datarobot/mkdocs-redirects",
|
"markdownDescription": "https://github.com/mkdocs/mkdocs-redirects",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"redirect_maps": {
|
"redirect_maps": {
|
||||||
"title": "Mapping of Markdown files",
|
"title": "Mapping of Markdown files",
|
||||||
"markdownDescription": "https://github.com/datarobot/mkdocs-redirects#using",
|
"markdownDescription": "https://github.com/mkdocs/mkdocs-redirects#using",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"patternProperties": {
|
"patternProperties": {
|
||||||
"\\.md$": {
|
"\\.md$": {
|
||||||
"oneOf": [
|
"oneOf": [
|
||||||
{
|
{
|
||||||
"title": "Internal redirect",
|
"title": "Internal redirect",
|
||||||
"markdownDescription": "https://github.com/datarobot/mkdocs-redirects#using",
|
"markdownDescription": "https://github.com/mkdocs/mkdocs-redirects#using",
|
||||||
"pattern": "\\.md(#\\S+)?$"
|
"pattern": "\\.md(#\\S+)?$"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"title": "External redirect",
|
"title": "External redirect",
|
||||||
"markdownDescription": "https://github.com/datarobot/mkdocs-redirects#using",
|
"markdownDescription": "https://github.com/mkdocs/mkdocs-redirects#using",
|
||||||
"pattern": "^https?:"
|
"pattern": "^https?:"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json-schema.org/draft-07/schema",
|
"$schema": "https://json-schema.org/draft-07/schema",
|
||||||
"title": "MkDocs plugin to allow clickable sections that lead to an index page",
|
"title": "Add index section pages to navigation",
|
||||||
"oneOf": [
|
"oneOf": [
|
||||||
{
|
{
|
||||||
"markdownDescription": "https://github.com/oprypin/mkdocs-section-index",
|
"markdownDescription": "https://github.com/oprypin/mkdocs-section-index",
|
||||||
@@ -12,8 +12,8 @@
|
|||||||
"type": "object",
|
"type": "object",
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
"properties": {
|
"properties": {
|
||||||
"section-index": {
|
"section-index": {}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}]
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user