[Export] remove extra spaces from Markdown, YAML exports

This commit is contained in:
MinchinWeb 2016-01-11 18:25:08 -07:00
parent 14ef6e3dcb
commit b84bc9b856
2 changed files with 4 additions and 4 deletions

View file

@ -57,7 +57,7 @@ class MarkdownExporter(TextExporter):
date=date_str,
title=entry.title,
body=newbody,
space=""
space="\n"
)
@classmethod

View file

@ -93,7 +93,7 @@ class YAMLExporter(TextExporter):
tags=', '.join([tag[1:] for tag in entry.tags]),
dayone=dayone_attributes,
body=newbody,
space=""
space="\n"
)
@classmethod