-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
schema.json
63 lines (63 loc) · 2.21 KB
/
schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"$schema": "https://json-schema.org/draft-07/schema",
"title": "Generate meta descriptions from the first paragraphs in your MkDocs pages",
"oneOf": [
{
"markdownDescription": "https://github.com/prcr/mkdocs-meta-descriptions-plugin#readme",
"enum": [
"meta-descriptions"
]
},
{
"type": "object",
"properties": {
"meta-descriptions": {
"markdownDescription": "https://github.com/prcr/mkdocs-meta-descriptions-plugin#configuring-the-plugin",
"type": "object",
"properties": {
"export_csv": {
"title": "Export CSV",
"markdownDescription": "https://github.com/prcr/mkdocs-meta-descriptions-plugin#export_csv",
"type": "boolean",
"default": "false"
},
"quiet": {
"title": "Quiet output",
"markdownDescription": "https://github.com/prcr/mkdocs-meta-descriptions-plugin#quiet",
"type": "boolean",
"default": "false"
},
"enable_checks": {
"title": "Enable checks",
"markdownDescription": "https://github.com/prcr/mkdocs-meta-descriptions-plugin#enable_checks",
"type": "boolean",
"default": "false"
},
"min_length": {
"title": "Minimum length",
"markdownDescription": "https://github.com/prcr/mkdocs-meta-descriptions-plugin#min_length",
"type": "integer",
"default": 50,
"minimum": 0
},
"max_length": {
"title": "Maximum length",
"markdownDescription": "https://github.com/prcr/mkdocs-meta-descriptions-plugin#max_length",
"type": "integer",
"default": 160,
"minimum": 0
},
"trim": {
"title": "Trim meta descriptions",
"markdownDescription": "https://github.com/prcr/mkdocs-meta-descriptions-plugin#trim",
"type": "boolean",
"default": "false"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}
]
}