Interface TransformMarkdownOptions

interface TransformMarkdownOptions {
    fileDirectoryPath: string;
    fileHash?: string;
    filesCache: {
        [key: string]: string;
    };
    forJest?: boolean;
    forMarkdownExport?: boolean;
    forPreview: boolean;
    headingIdGenerator?: HeadingIdGenerator;
    imageDirectoryPath?: string;
    notSourceFile?: boolean;
    notebook: Notebook;
    projectDirectoryPath: string;
    protocolsWhiteListRegExp: null | RegExp;
    timestamp?: number;
    usePandocParser?: boolean;
    useRelativeFilePath: boolean;
}

Properties

fileDirectoryPath: string
fileHash?: string
filesCache: {
    [key: string]: string;
}

Type declaration

  • [key: string]: string
forJest?: boolean
forMarkdownExport?: boolean
forPreview: boolean
headingIdGenerator?: HeadingIdGenerator
imageDirectoryPath?: string
notSourceFile?: boolean
notebook: Notebook
projectDirectoryPath: string
protocolsWhiteListRegExp: null | RegExp
timestamp?: number
usePandocParser?: boolean
useRelativeFilePath: boolean

Generated using TypeDoc