crossnote
    Preparing search index...

    Interface ParserConfig

    interface ParserConfig {
        onDidParseMarkdown: (html: string) => Promise<string>;
        onWillParseMarkdown: (markdown: string) => Promise<string>;
    }
    Index

    Properties

    onDidParseMarkdown: (html: string) => Promise<string>
    onWillParseMarkdown: (markdown: string) => Promise<string>