roundabout,
created on Monday, 22 April 2024, 18:09:06 (1713809346),
received on Tuesday, 23 April 2024, 11:54:33 (1713873273)
Author identity: vlad <vlad.muntoiu@gmail.com>
dd687decd820fa2b12b1f3dc70c9fe8bf4fa5b71
ampoule_ssg/markdown.py
@@ -342,11 +342,15 @@ def tokenise(source):
content = [] while i < len(lines) and re.match(r"^\d+\.", line) and len(lines[i].split(".", 1)) > 1: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 while i < len(lines) and lines[i].strip() and not re.match(r"^\d+\.", line):inner_content += lines[i][1:] + "\n"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]): marker_length = 2 inner_content += lines[i][marker_length:] + "\n"i += 1 content.append(ListItem(inner_content))