markdown-gfm-pack
Github & Gitlab Flavoured Markdown Essential Pack
Extension pack
GFM Preview
Misc. utils
Configuration
.vscode/settings.json
{
"markdown-toc.depthFrom": 2,
"markdown-toc.depthTo": 3,
"mdmath.delimiters": "gitlab"
}
.editorconfig
[*.{md,txt}]
max_line_length = 80
indent_style = space
indent_size = 2
trim_trailing_whitespace = false
.prettierrc
{
"singleQuote": true,
"semi": false,
"proseWrap": "always"
}
Markdownlint
Inline config |
Syntax |
Disable all rules |
<!-- markdownlint-disable --> |
Enable all rules |
<!-- markdownlint-enable --> |
Disable one or more rules by name |
<!-- markdownlint-disable MD001 MD005 --> |
Enable one or more rules by name |
<!-- markdownlint-enable MD001 MD005 --> |
Capture the current rule configuration |
<!-- markdownlint-capture --> |
Restore the captured rule configuration |
<!-- markdownlint-restore --> |
see the
configuration section
and the
rules for
more
| |