Files
mkdocs/.markdownlintrc
Oleh Prypin 9880767940 Remove line length limit from Markdown documents (#2626)
Also try it out on some part of one document.
2021-10-26 20:40:25 +02:00

20 lines
401 B
Plaintext

{
// Enable all markdownlint rules
"default": true,
// Disable line length check
"MD013": false,
// Set Ordered list item prefix to "ordered" (use 1. 2. 3. not 1. 1. 1.)
"MD029": { "style": "ordered" },
// Set list indent level to 4 which Python-Markdown requires
"MD007": { "indent": 4 },
// Exclude code block style
"MD046": false,
// Allow inline HTML
"MD033": false
}