[YAML export] only increase headings by one level

This commit is contained in:
MinchinWeb 2015-05-03 19:56:16 -06:00
parent 3408440705
commit 327fde5c0f

View file

@ -26,7 +26,7 @@ class MarkdownExporter(TextExporter):
'''Increase heading levels in body text''' '''Increase heading levels in body text'''
newbody = '' newbody = ''
heading = '###' heading = '#'
previous_line = '' previous_line = ''
warn_on_heading_level = False warn_on_heading_level = False
for line in entry.body.splitlines(True): for line in entry.body.splitlines(True):