mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2026-04-25 01:05:55 +03:00
[GH-ISSUE #967] MD030: Support variable indent in ordered lists for visual alignment #572
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#572
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 @skwde on GitHub (Sep 12, 2023).
Original GitHub issue: https://github.com/DavidAnson/markdownlint/issues/967
I have following
MD030setting in my.markdownlint.yamlFollowing "long" ordered list
gives the warning
MD030/list-marker-space: Spaces after list markers [Expected: 2; Actual: 1]markdownlint[MD030](https://github.com/DavidAnson/markdownlint/blob/v0.29.0/doc/md030.md)for the line10. j.The make the linter happy I have to change above list to
i.e. add an additional space after
10..Is it possible to make the
ol_singleandol_multisettings dynamic in the sense ofStart item text at character 5?Maybe with an alternative setting like
first_item_text_char: 5which overwrites the ones not explicitly set?