Manifest

manifestProcessor is a processor writing out a manifest listing all generated documents that will be present in the outputFolder. The manifest can be written in:

  • Markdown format
  • JSON format

This page describes the processor for writing the manifest as a file on disk, for programmatical usage use:

const config = {
    sourceFiles: [
        /* ... */
    ],
};
const docs = new Generator({
    /* ... */
});
const manifest = await docs.manifest(config.sourceFiles);

Usage

const docs = new Generator({
    processors: [
        manifestProcessor({
            markdown: "etc/docs-manifest.md",
            json: "etc/docs-manifest.json",
        }),
    ],
});

Esc för att stänga Pil upp/ner för att navigera Enter för att välja