MarkdownParser.Parse

Parse(TextReader)

Parse an TextReader.

public MarkdownSyntaxTree Parse(TextReader reader)
ParameterTypeDescription
readerTextReaderThe TextReader.

Return Value

The Markdown syntax tree.

See Also


Parse(Stream)

Parse from Stream.

public MarkdownSyntaxTree Parse(Stream stream)
ParameterTypeDescription
streamStreamThe Stream.

Return Value

The Markdown syntax tree.

See Also


Parse(string)

Prase from the string context.

public MarkdownSyntaxTree Parse(string content)
ParameterTypeDescription
contentStringThe string content.

Return Value

The Markdown syntax tree.

See Also