Commit 634154ec41b416f20df585b2ec7babef9fcb0b31

Edward Thomson 2018-06-09T18:27:18

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.

1
2
3
4
5
6
7
8
9
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