parse method
parse
Parse from Stream.
Returns
The Markdown syntax tree.
def parse(self, stream):
...
Parameter | Type | Description |
---|---|---|
stream | io.RawIOBase | The Stream. |
parse
Prase from the string context.
Returns
The Markdown syntax tree.
def parse(self, content):
...
Parameter | Type | Description |
---|---|---|
content | str | The string content. |