roundabout,
created on Monday, 22 April 2024, 18:09:57 (1713809397),
received on Wednesday, 31 July 2024, 06:54:45 (1722408885)
Author identity: vlad <vlad.muntoiu@gmail.com>
6d57d329e6f6b5e782fefc2889094f5628f1433b
markdown.py
@@ -345,7 +345,6 @@ def tokenise(source):
while i < len(lines) and re.match(r"^ ?\d+\.", lines[i]) and len(lines[i].split(".", 1)) > 1: inner_content = lines[i].split(".", 1)[1] + "\n" # discard number and period i += 1 print(lines[i])marker_length = len(lines[i].split(".", 1)[0]) + 1 while i < len(lines) and lines[i].strip() and not re.match(r"^ ?\d+\.", lines[i]): if re.match(r"^ \d+\.", lines[i]):
@@ -458,6 +457,5 @@ def make_html(ast):
def markdown2html(markdown): print(tokenise(markdown))return make_html(tokenise(markdown))