This plugin only works for HTML documentation.
A plugin for TypeDoc that enables to add a extras to the generated documentation.
It finds the <head>
and appends the favicon to it. It can also add date and/or time of generation after "Generated using TypeDoc".
No date/time will be added if --hideGenerator
is set.

Installation
npm install --save-dev typedoc typedoc-plugin-extras
Usage
$ npx typedoc --plugin typedoc-plugin-extras [args]
Arguments
The following arguments can be used in addition to the default TypeDoc arguments.
The favicon, date and time are automatically added by default. The favicon is copied into the output documentation directory.
--favicon
Specify the name of the favicon file. Defaults to 'public/favicon.ico'
.
--noFavicon
Disable the favicon.
--hideDate
Hides the date of generation at the end of documentation pages.
--hideTime
Hides the time of generation at the end of documentation pages.
License
MIT