CI: limit the allowed inline html to specific elements

... so we can make sure <table> doesn't creep back in
This commit is contained in:
Peter Barker
2026-02-04 12:30:06 +11:00
committed by Peter Barker
parent 39590917d1
commit bb5b5897f2

View File

@@ -22,7 +22,9 @@
"MD026": false, // Trailing punctuation in heading
"MD029": false, // Ordered list item prefix
"MD032": false, // Lists should be surrounded by blank lines
"MD033": false, // Inline HTML
"MD033": { // Inline HTML - allow non-table elements, only fix HTML tables
"allowed_elements": ["img", "div", "span", "br", "ins", "center", "sup", "a"]
},
"MD034": false, // Bare URL used
"MD036": false, // Emphasis used instead of a heading
"MD037": false, // Spaces inside emphasis markers