MD029 is triggered on any multiline ordered list items.
See original GitHub issueI am using the markdownlint v0.6.2 and I am seeing that the MD029 rule is always triggered even when using the sample provided inside the rule. i.e.
1. Do this.
2. Do that.
3. Done.
should pass the issue but it is generating green swiggle with MD029 tooltip.
Issue Analytics
- State:
- Created 7 years ago
- Reactions:2
- Comments:9 (4 by maintainers)
Top Results From Across the Web
Markdownlint Rules - kiki
MD029 - Ordered list item prefix ... This rule is triggered for ordered lists that do not either start with '1.' or do...
Read more >Multi-line bullet list in markdown - Stack Overflow
Two spaces at the end of line are used to insert a line-break. Example (replace the two dots with two spaces!): * Item.....
Read more >Markdown Style Guide - Rocket.Chat Docs
MD005 - No inconsistent indentation for list items at the same level. Lists should have consistent indentation, usually this rule will be triggered...
Read more >Cannot copy multi line list value to other list (e...
Any idea how to copy multiple line fields from one list to another? Labels: ... So for the manual trigger how you getting...
Read more >doc/Rules.md · Gitee 极速下载/markdownlint - Gitee.com
This rule is triggered when the symbols used in the document for unordered list items do not match the configured unordered list style:...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Documentation: https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md029---ordered-list-item-prefix
MD029 has two modes:
one
andordered
. The default mode isone
which looks for the following style:The benefit of this style is that lines can be reordered without having to worry about the numbers going out of sequence. If you wish to change the style to
ordered
per your example above, you can update the rule configuration via one of the supported mechanisms:Landed here as this caught me out as well, updating to
ordered
it is then, thanks.