mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-21 21:30:47 +02:00
691 B
691 B
This rule is triggered when unwanted or different code block styles are used in the same document.
In the default configuration this rule reports a violation for the following document:
Some text.
# Indented code
More text.
```ruby
# Fenced code
```
More text.
To fix violations of this rule, use a consistent style (either indenting or code fences).
The configured code block style can be specific (fenced
, indented
) or can
require all code blocks match the first code block (consistent
).
Rationale: Consistent formatting makes it easier to understand a document.