roundabout,
created on Friday, 29 March 2024, 14:21:43 (1711722103),
received on Wednesday, 31 July 2024, 06:54:43 (1722408883)
Author identity: vlad <vlad.muntoiu@gmail.com>
ea9ab34f65ba7740f898ef9f769d6a02a3dfe47b
markdown.py
@@ -309,6 +309,13 @@ def tokenise(source):
tokens.append(current_block)
current_block = Element()
i += 1
elif only_chars(line.strip(), "-_* ") and len(line.strip()) >= 3:
# Horizontal rule
tokens.append(current_block)
current_block = Rule()
i += 1
elif (lines[i].startswith("*") or lines[i].startswith("+") or lines[i].startswith("-")) and lines[i][1:].startswith(" "):
if not isinstance(current_block, UnorderedList):
@@ -325,13 +332,6 @@ def tokenise(source):
content.append(ListItem(inner_content))
current_block = UnorderedList(content)
elif only_chars(line.strip(), "-_* ") and len(line.strip()) >= 3:
# Horizontal rule
tokens.append(current_block)
current_block = Rule()
i += 1
elif line.startswith("#") and leading(line.lstrip("#"), " "):
tokens.append(current_block)
@@ -437,6 +437,12 @@ if __name__ == '__main__':
>
Does it also support that bullet?
Or continuation lines?
> What about a code block?
> ```python
> print("Hello, world!")
> ```
* * *
* Alternatively, this is a list
* That uses asterisks