From f4da5b9a95d9fd1424df04ca55c7f8c003656a4d Mon Sep 17 00:00:00 2001 From: guillaume Date: Fri, 11 Feb 2022 17:08:25 +0100 Subject: [PATCH] Fix .md H1 to H3 error Change the `.markdownlint.yaml` to avoid forcing headers to chronologically follow Signed-off-by: guillaume --- .markdownlint.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.markdownlint.yaml b/.markdownlint.yaml index a5f19106..52218f1b 100644 --- a/.markdownlint.yaml +++ b/.markdownlint.yaml @@ -1,8 +1,13 @@ # Default state for all rules default: true +# MD001/heading-increment - Do not require h1 -> h2 transitions, +# allow headings with better proportions. +# h2 is too large, h3 is just right so we use h1 -> h3 in places. +MD001: false + # MD013/line-length - Allow long lines MD013: false # MD033 - Inline HTML. Needed for tabs in docusaurus -MD033: false +MD033: false \ No newline at end of file