editorconfig: allow trailing whitespace in markdown Markdown uses trailing whitespace to indicate context; eg, a blank line with four spaces indicates that there is a hard break between the (indented) lines surrounding that line. Ensure that editors do not remove this blank.
diff --git a/.editorconfig b/.editorconfig
index be59274..d4b4190 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -12,3 +12,4 @@ insert_final_newline = true
[*.md]
indent_style = space
indent_size = 4
+trim_trailing_whitespace = false