mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2026-04-26 01:36:03 +03:00
[GH-ISSUE #188] MD033 being flagged for elemenents with _ #2013
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#2013
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 @nschonni on GitHub (May 21, 2019).
Original GitHub issue: https://github.com/DavidAnson/markdownlint/issues/188
I believe this wasn't the case before 0.14. Elements like <parameter_name> do not need to be escaped because markdown doesn't recognize strings with
_as elmements. Maybe due to the new Email handling since that added an_to a regex in the rule. This also doesn't so in VS Code as an issue, just from the Markdown-CLI 0.16.0@DavidAnson commented on GitHub (May 21, 2019):
Valid, but picky. :)
Reproduction: https://dlaa.me/markdownlint/#%25m%23%20Heading%0A%0A%3Cabc_def%2F%3E%0A
I believe this comes from the new custom detection (for better accuracy) vs. letting the parser handle this.