You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: deployment/schema.json
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -84,6 +84,18 @@
84
84
"description": "Uses an underline of = or - beneath the heading text (setext headings). Only applies to level 1 and 2 headings."
85
85
}]
86
86
},
87
+
"listIndentKind": {
88
+
"description": "The style of indentation to use for list items. CommonMark aligns to the content column after the marker. PythonMarkdown uses a fixed 4-space indent, required by tools like mkdocs-material.",
89
+
"type": "string",
90
+
"default": "commonMark",
91
+
"oneOf": [{
92
+
"const": "commonMark",
93
+
"description": "Indents continuation lines to align with the content after the list marker (e.g. 3 spaces for '1. ', 4 for '10. ')."
94
+
}, {
95
+
"const": "pythonMarkdown",
96
+
"description": "Always indents by 4 spaces, regardless of marker width."
97
+
}]
98
+
},
87
99
"deno": {
88
100
"description": "Top level configuration that sets the configuration to what is used in Deno.",
0 commit comments