From c9af58da16500925769b2a9ce32111d2c71853db Mon Sep 17 00:00:00 2001 From: dx Date: Wed, 6 May 2020 01:01:18 +0100 Subject: +support for bullet pointed lists --- converter.py | 1 + 1 file changed, 1 insertion(+) (limited to 'converter.py') diff --git a/converter.py b/converter.py index 9c8ee77..3505ae7 100644 --- a/converter.py +++ b/converter.py @@ -56,6 +56,7 @@ for filename in markdown_files: # simple text line = sub(r"\*\*(.*)\*\*", r"\g<1>", line) line = sub(r"\*(.*)\*", r"\g<1>", line) + line = sub(r"^-(.*)", r"
  • \g<1>
  • ", line) if not started_paragraphing: started_paragraphing = True line = "

    \n" + line -- cgit v1.2.3-13-gbd6f