mirror of
https://github.com/ArduPilot/ardupilot.git
synced 2026-02-05 23:33:26 +08:00
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:
committed by
Peter Barker
parent
39590917d1
commit
bb5b5897f2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user