filterMarkdown - multiple declarations
Function filterMarkdown
Returns a Markdown filtered HTML string.
string filterMarkdown
(
string str,
MarkdownFlags flags
) @trusted;
string filterMarkdown
(
string str,
scope MarkdownSettings settings = null
) @trusted;
Function filterMarkdown
Markdown filters the given string and writes the corresponding HTML to an output range.
void filterMarkdown(R)
(
ref R dst,
string src,
MarkdownFlags flags
);
void filterMarkdown(R)
(
ref R dst,
string src,
scope MarkdownSettings settings = null
);