mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2026-04-25 09:16:02 +03:00
[GH-ISSUE #110] MD035 - Horizontal rule style: Allow multiple styles #92
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#92
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 @osk on GitHub (Mar 7, 2018).
Original GitHub issue: https://github.com/DavidAnson/markdownlint/issues/110
I use markdown for creating slides with reveal.js that has the concept of vertical and horizontal slides. In my markdown I use
***to switch between vertical ones and---to switch between horizontal.When configuring my
.markdownlint.jsonI expected to be able to do something like"MD035": { "style": ["---", "***"] }to allow for both styles but that does not work and I am forced to disable the rule.@DavidAnson commented on GitHub (Apr 19, 2018):
Because there are only three types of thematic breaks, all the proposed configuration would do is prevent the use of “___”. I’m not thinking the extra complexity in configuration is worth it for what seems like a pretty unusual scenario.