mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 22:10:13 +01:00
MD007 shouldn't apply to sublists of ordered lists, test and document MD006 behavior (fixes #20).
This commit is contained in:
parent
83639b8ef8
commit
efe9c9e73c
3 changed files with 97 additions and 8 deletions
14
doc/Rules.md
14
doc/Rules.md
|
|
@ -167,6 +167,16 @@ or the tab key is used to indent. Starting a list 1 space in means that the
|
|||
indent of the first nested list is less than the indent of the second level (3
|
||||
characters if you use 4 space tabs, or 1 character if you use 2 space tabs).
|
||||
|
||||
Note: This rule is triggered for the following scenario because the unordered
|
||||
sublist is not recognized as such by the parser. Not being nested 3 characters
|
||||
as required by the outer ordered list, it creates a top-level unordered list
|
||||
instead.
|
||||
|
||||
1. List item
|
||||
- List item
|
||||
- List item
|
||||
1. List item
|
||||
|
||||
## MD007 - Unordered list indentation
|
||||
|
||||
Tags: bullet, ul, indentation
|
||||
|
|
@ -202,6 +212,10 @@ require a 4 space indents. See
|
|||
<http://support.markedapp.com/discussions/problems/21-sub-lists-not-indenting>
|
||||
for a description of the problem.
|
||||
|
||||
Note: This rule applies to a sublist only if its parent lists are all also
|
||||
unordered (otherwise, extra indentation of ordered lists interferes with the
|
||||
rule).
|
||||
|
||||
## MD009 - Trailing spaces
|
||||
|
||||
Tags: whitespace
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue