really substitute the *'s :)

This commit is contained in:
hiro98 2020-05-03 10:32:11 +02:00
parent 8c27bad7ff
commit 2f6ab150cb

View file

@ -15,9 +15,7 @@ def _format_org_date(date):
def sanitize_text(text):
star_re = re.compile(r"^\*+", flags=re.MULTILINE)
star_re.sub("+", text)
return text
return star_re.sub(" +", text)
class OrgWriter: