@hrefcl/apidoc - v4.0.5
    Preparing search index...

    Interface MarkdownConfigurationObjectCLI

    interface MarkdownConfigurationObjectCLI {
        apiDocProjectData: Record<string, any>;
        apiDocApiData: Record<string, any>[];
        template?: string;
        header?: string;
        footer?: string;
        prepend?: string;
        input: string;
        output?: string;
        headerFile?: string;
        footerFile?: string;
        prependFile?: string;
        multi?: boolean;
        createPath?: boolean;
        warnError?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    apiDocProjectData: Record<string, any>

    apiDoc project JSON data object (apidoc.json) file content)

    apiDocApiData: Record<string, any>[]

    apiDoc documentation JSON data object (api_data.json file content)

    template?: string

    Name of template to be used (default, bitbucket) or path to EJS template file or raw EJS plain text template (will use default template if omitted).

    header?: string

    Content to add at the top of the documentation

    footer?: string

    Content to add at the bottom of the documentation

    prepend?: string

    Content to add before route groups documentation

    input: string

    Input source files path

    output?: string

    Output file or directory to write output to

    headerFile?: string

    Path to file content to add at the top of the documentation

    footerFile?: string

    Path to file content to add at the bottom of the documentation

    prependFile?: string

    Path to file content to add before route groups documentation

    multi?: boolean

    Output one file per group to the output directory

    createPath?: boolean

    Recursively create directory arborescence to the output directory

    warnError?: boolean

    Treat warnings as error and exit with error code.