parse method

parse

Parse from Stream.

Returns

The Markdown syntax tree.

def parse(self, stream):
    ...
ParameterTypeDescription
streamio.RawIOBaseThe Stream.

parse

Prase from the string context.

Returns

The Markdown syntax tree.

def parse(self, content):
    ...
ParameterTypeDescription
contentstrThe string content.

See Also