mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2026-04-25 09:16:02 +03:00
[GH-ISSUE #233] MD029/ol-prefix: Ordered list item prefix [Expected: 1; Actual: 3; Style: 1/1/1]markdownlint(MD029) #201
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#201
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 @a-wip0 on GitHub (Oct 30, 2019).
Original GitHub issue: https://github.com/DavidAnson/markdownlint/issues/233
I know this issue exist before it shows me 4 people already made this while writing this issue, but i already try solution from #49 and #38 but still failed.
So, I have a list like this
It gives me a warning message
MD029/ol-prefix: Ordered list item prefix [Expected: 1; Actual: 3; Style: 1/2/3]markdownlint(MD029)on the3.How to solve it?
@DavidAnson commented on GitHub (Oct 30, 2019):
In order for the block quote to be part of the list item, it needs to be indented three spaces to match the rest of the content. Here is an example based on your scenario above: https://dlaa.me/markdownlint/#%25m%23%20233%0A%0A1.%20Number%201%0A2.%20Number%202%0A%20%20%20%3E%20Lorem%20Ipsum%20something%20something%2C%0A%20%20%20%3E%20another%20line%20but%20in%20the%20same%20blockquote.%0A3.%20Number%203%0A
@a-wip0 commented on GitHub (Oct 31, 2019):
Thanks, give three space before the
blockquotesolve it..