roundabout,
created on Monday, 22 April 2024, 18:09:21 (1713809361),
received on Wednesday, 31 July 2024, 06:54:45 (1722408885)
Author identity: vlad <vlad.muntoiu@gmail.com>
0376ec4e2813a0a27f4d00b626a9458ac21b38ab
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))