mirror of
https://github.com/vale981/wunderlist-to-org
synced 2025-03-04 08:41:41 -05:00
really substitute the *'s :)
This commit is contained in:
parent
8c27bad7ff
commit
2f6ab150cb
1 changed files with 1 additions and 3 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue