From c90b2e4d6f26604528ce2b14a2781abfdb9dd91f Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Sun, 14 Nov 2021 13:40:00 -0500 Subject: [PATCH] Fix bad indentation in support data --- src/js/support.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/support.js b/src/js/support.js index 62c5be83a..040bb71db 100644 --- a/src/js/support.js +++ b/src/js/support.js @@ -115,7 +115,7 @@ function patchEmptiness(data, prop) { } function configToMarkdown(collapse = false) { - const text = cmEditor.getValue().replace(/^ /gm, ''); + const text = cmEditor.getValue(); return collapse ? '
\n\n```yaml\n' + text + '\n```\n
' : '```yaml\n' + text + '\n```\n';