mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2026-01-10 09:58:50 +01:00
21 lines
No EOL
466 B
Markdown
21 lines
No EOL
466 B
Markdown
# MD020 - No space inside hashes on closed atx style header
|
|
|
|
Tags: headers, atx_closed, spaces
|
|
|
|
Aliases: no-missing-space-closed-atx
|
|
|
|
This rule is triggered when spaces are missing inside the hash characters
|
|
in a closed atx style header:
|
|
|
|
#Header 1#
|
|
|
|
##Header 2##
|
|
|
|
To fix this, separate the header text from the hash character by a single
|
|
space:
|
|
|
|
# Header 1 #
|
|
|
|
## Header 2 ##
|
|
|
|
Note: this rule will fire if either side of the header is missing spaces. |