The interface for a Markdown parser.

interface IMarkdownParser {
    render(source): Promise<string>;
}

Methods

Methods