mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 22:10:13 +01:00
Add br_spaces parameter to MD009.
This commit is contained in:
parent
0e24df7cf7
commit
9acbb2750e
4 changed files with 25 additions and 1 deletions
11
doc/Rules.md
11
doc/Rules.md
|
|
@ -182,9 +182,20 @@ for a description of the problem.
|
|||
|
||||
Tags: whitespace
|
||||
|
||||
Parameters: br_spaces (number; default: 0)
|
||||
|
||||
This rule is triggered on any lines that end with whitespace. To fix this,
|
||||
find the line that is triggered and remove any trailing spaces from the end.
|
||||
|
||||
The br_spaces parameter allows an exception to this rule for a specific amount
|
||||
of trailing spaces used to insert an explicit line break/br element. For
|
||||
example, set br_spaces to 2 to allow exactly 2 spaces at the end of a line.
|
||||
|
||||
Note: you have to set br_spaces to 2 or higher for this exception to take
|
||||
effect - you can't insert a br element with just a single trailing space, so
|
||||
if you set br_spaces to 1, the exception will be disabled, just as if it was
|
||||
set to the default of 0.
|
||||
|
||||
## MD010 - Hard tabs
|
||||
|
||||
Tags: whitespace, hard_tab
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue