aboutsummaryrefslogtreecommitdiff
path: root/converter.py
diff options
context:
space:
mode:
Diffstat (limited to 'converter.py')
-rw-r--r--converter.py1
1 files changed, 1 insertions, 0 deletions
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"<strong>\g<1></strong>", line)
line = sub(r"\*(.*)\*", r"<i>\g<1></i>", line)
+ line = sub(r"^-(.*)", r"<li>\g<1></li>", line)
if not started_paragraphing:
started_paragraphing = True
line = "<p>\n" + line