Variable markdownPreprocessorConst

markdownPreprocessor: {
    extension: string;
    markdownEngine: (content?: string) => Promise<string>;
    name: string;
    outputExtension: string;
    process(content: any, data: any): Promise<string>;
} = ...

Type declaration

  • extension: string
  • markdownEngine: (content?: string) => Promise<string>

    Markdown engine. Override to use another markdown engine.

  • name: string
  • outputExtension: string
  • process:function