mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2026-04-25 09:16:02 +03:00
[GH-ISSUE #284] MD007: Check for four spaces for nested lists #244
Labels
No labels
bug
enhancement
enhancement
enhancement
fixed in next
fixed in next
fixed in next
new rule
new rule
new rule
pull-request
question
refactoring
refactoring
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/markdownlint#244
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @koppor on GitHub (May 4, 2020).
Original GitHub issue: https://github.com/DavidAnson/markdownlint/issues/284
When mixing lists and enumarations, the sub list should have an indent of 3 spaces:
In case one indents with four spaces, there is no error reported:
There should be a warning, that three spaces are enough.
Howver, two spaces are too less since that does not work, "because the nesting of two spaces is insufficient to push it into the ordered list item"). This is catched by MD007 and thus shouldn't be an issue.
(This is a follow-up to https://github.com/DavidAnson/markdownlint/issues/20#issuecomment-621427480)