mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-21 21:30:47 +02:00
Generate Rules.md and md###.md files from metadata, improve Parameters documentation by referencing schema.
This commit is contained in:
parent
32c75ebfd9
commit
37baddcf27
110 changed files with 3875 additions and 179 deletions
24
doc/md027.md
Normal file
24
doc/md027.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# MD027 - Multiple spaces after blockquote symbol
|
||||
|
||||
Tags: blockquote, indentation, whitespace
|
||||
|
||||
Aliases: no-multiple-space-blockquote
|
||||
|
||||
Fixable: Most violations can be fixed by tooling
|
||||
|
||||
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.
|
Loading…
Add table
Add a link
Reference in a new issue