From dabf9ce47236bdd8ec7f1fa49b922006e2bef508 Mon Sep 17 00:00:00 2001 From: Jaro-c <75870284+Jaro-c@users.noreply.github.com> Date: Thu, 25 Jun 2026 09:00:18 -0500 Subject: [PATCH] chore: keep Markdown on spaces in .editorconfig A leading tab in CommonMark counts as a 4-column indent, so tab-indented content inside a list renders as an accidental code block. Pin Markdown to spaces (width 2), matching the YAML/JSON exception. Closes #122 Signed-off-by: Jose <75870284+Jaro-c@users.noreply.github.com> --- .editorconfig | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 83db792..082123a 100644 --- a/.editorconfig +++ b/.editorconfig @@ -14,4 +14,6 @@ indent_style = space indent_size = 2 [*.md] -trim_trailing_whitespace = false +indent_style = space +indent_size = 2 +trim_trailing_whitespace = false \ No newline at end of file