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.