feat(markdown_lint): remove html 's' from allowed

!6
This commit is contained in:
2023-05-22 12:28:37 +09:30
parent d2ac969348
commit f7a487e6fc

View File

@ -4,7 +4,7 @@
"indent": 4 "indent": 4
}, },
"MD033": { "MD033": {
"allowed_elements": [ "div", "s", "span", "u", "p" ] "allowed_elements": [ "div", "span", "u", "p" ]
}, },
"blanks-around-headings":{ "blanks-around-headings":{
"lines_above": 2, "lines_above": 2,
@ -14,6 +14,7 @@
"maximum": 2 "maximum": 2
}, },
"comment": { "comment": {
"MD012": "MD012 max=2 added so that headings can have two lines above for clarity." "MD012": "MD012 max=2 added so that headings can have two lines above for clarity.",
"html_s": "don't allow html <s> as this can be done in markdown"
} }
} }