mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-23 01:10:13 +01:00
29 lines
No EOL
674 B
Markdown
29 lines
No EOL
674 B
Markdown
# MD022 - Headers should be surrounded by blank lines
|
|
|
|
Tags: headers, blank_lines
|
|
|
|
Aliases: blanks-around-headers
|
|
|
|
This rule is triggered when headers (any style) are either not preceded or not
|
|
followed by a blank line:
|
|
|
|
# Header 1
|
|
Some text
|
|
|
|
Some more text
|
|
## Header 2
|
|
|
|
To fix this, ensure that all headers have a blank line both before and after
|
|
(except where the header is at the beginning or end of the document):
|
|
|
|
# Header 1
|
|
|
|
Some text
|
|
|
|
Some more text
|
|
|
|
## Header 2
|
|
|
|
Rationale: Aside from aesthetic reasons, some parsers, including kramdown, will
|
|
not parse headers that don't have a blank line before, and will parse them as
|
|
regular text. |