typedoc-plugin-redirect

1.0.0 • Public • Published

typedoc-plugin-redirect

Add redirect pages to your generated documentation.

Usage

npm install --save-dev typedoc-plugin-redirect
// typedoc.config.mjs

/** @type {Partial<import("typedoc").TypeDocOptions>} */
const config = {
    plugin: ["typedoc-plugin-redirect"],
    redirects: {
        // If the value starts with http[s]://, it will redirect to an external site.
        "example.html": "https://example.com",
        // If the value starts with a slash, the link will be included verbatim.
        "contact.html": "/cgi-bin/contact.php",
        // Otherwise, the link will be interpreted relative to the output directory.
        "DocsClass.html": "api/classes/DocsClass.html",
        // If the key ends with a trailing slash, "/index.html" will be appended to form
        // the output file name. The following two entries are equivalent.
        "options/": "documents/Options.html",
        "options/index.html": "documents/Options.html",
    },
};

Example

See an example of this plugin in action.

Readme

Keywords

Package Sidebar

Install

npm i typedoc-plugin-redirect

Weekly Downloads

2

Version

1.0.0

License

MIT

Unpacked Size

5.71 kB

Total Files

4

Last publish

Collaborators

  • gerrit0