When authoring Markdown in Visual Studio Code with the markdownlint extension installed, I am seeing lint message MD033/no-inline-html: Inline HTML.

How can I configure the linter not to warn me about a few specific HTML elements?
Create a .markdownlint.json file in the same folder as your markdown file:
{
"MD033": {
"allowed_elements": [
"nobr",
"sup"
]
}
}
To configure other rules, see the Parameters: listed under each rule here.
Adding to Wallace Kelly's answer, you can create a .vscode/settings.json file and paste this to make this config project level:
{
"markdownlint.config": {
"MD033": {
"allowed_elements": ["nobr", "sup", "a"]
}
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With