Fix an issue with markdown export

This commit is contained in:
Veronica Berglyd Olsen
2021-05-23 16:31:06 +02:00
parent 0826a2f8a3
commit 142d659b70
2 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -94,7 +94,7 @@ class ToMarkdown(Tokenizer):
# Process Text Type
if tType == self.T_EMPTY:
if len(thisPar) > 0:
tTemp = "\n".join(thisPar)
tTemp = " \n".join(thisPar)
tmpResult.append("%s\n\n" % tTemp.rstrip(" "))
thisPar = []