mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2026-04-26 01:36:03 +03:00
[GH-ISSUE #467] Feature Request - Suppress MD033 Violations #2234
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#2234
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 @elibroftw on GitHub (Dec 18, 2021).
Original GitHub issue: https://github.com/DavidAnson/markdownlint/issues/467
I use HTML in my project's
README.mdfor things like links with images and images in the header. I would like a way to suppress the warnings the linter gives me.For example
Gives me inline HTML errors but me using an Image inside an a tag should not give any such violations.
So the best thing would be to not spout out violations for HTML where there is an
imgtag nested within another tag.@DavidAnson commented on GitHub (Dec 18, 2021):
This library supports inline suppression as shown here: https://github.com/DavidAnson/markdownlint#configuration
You're probably using this library through a tool; they support additional ways to suppress (for example, with a file): https://github.com/DavidAnson/markdownlint#related
@elibroftw commented on GitHub (Dec 18, 2021):
Works. Thanks