mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 14:00:13 +01:00
16 lines
373 B
Markdown
16 lines
373 B
Markdown
This rule is triggered when blockquotes have more than one space after the
|
|
blockquote (`>`) symbol:
|
|
|
|
```markdown
|
|
> This is a blockquote with bad indentation
|
|
> there should only be one.
|
|
```
|
|
|
|
To fix, remove any extraneous space:
|
|
|
|
```markdown
|
|
> This is a blockquote with correct
|
|
> indentation.
|
|
```
|
|
|
|
Rationale: Consistent formatting makes it easier to understand a document.
|