From f7a487e6fcded31492c87ba342b57afd16692e9e Mon Sep 17 00:00:00 2001 From: Jon Date: Mon, 22 May 2023 12:28:37 +0930 Subject: [PATCH] feat(markdown_lint): remove html 's' from allowed !6 --- .markdownlint.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.markdownlint.json b/.markdownlint.json index e095433..9d7c740 100644 --- a/.markdownlint.json +++ b/.markdownlint.json @@ -4,7 +4,7 @@ "indent": 4 }, "MD033": { - "allowed_elements": [ "div", "s", "span", "u", "p" ] + "allowed_elements": [ "div", "span", "u", "p" ] }, "blanks-around-headings":{ "lines_above": 2, @@ -14,6 +14,7 @@ "maximum": 2 }, "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 as this can be done in markdown" } }