parseToHtml

Parses markdown to html.

string
parseToHtml
(
string markdown
,
string delegate customParser = null
)

Parameters

markdown string

The markdown to parse.

customParser string delegate

A custom parser that can be ued to customize certain markdown parts. (If it returns null, then it will skip to the default parser.)

Return Value

Type: string

A string equivalent to the parsed html from the markdwon.

Meta