From 327fde5c0fd74aab0aeb5a04570789134a1ccdde Mon Sep 17 00:00:00 2001 From: MinchinWeb Date: Sun, 3 May 2015 19:56:16 -0600 Subject: [PATCH] [YAML export] only increase headings by one level --- jrnl/plugins/yaml_exporter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jrnl/plugins/yaml_exporter.py b/jrnl/plugins/yaml_exporter.py index 1e00cf2f..697001ba 100644 --- a/jrnl/plugins/yaml_exporter.py +++ b/jrnl/plugins/yaml_exporter.py @@ -26,7 +26,7 @@ class MarkdownExporter(TextExporter): '''Increase heading levels in body text''' newbody = '' - heading = '###' + heading = '#' previous_line = '' warn_on_heading_level = False for line in entry.body.splitlines(True):