Including a README File
There are two ways to incorporate a README
file into your documentation:
- In the source paths to your JavaScript files, include the path to a Markdown file named
README.md
. JSDoc will use the firstREADME.md
file that it finds in your source paths. - Run JSDoc with the
-R/--readme
command-line option, specifying the path to yourREADME
file. This option is available in JSDoc 3.3.0 and later. TheREADME
file may have any name and extension, but it must be in Markdown format.
The -R/--readme
command-line option takes precedence over your source paths. If you use the
-R/--readme
command-line option, JSDoc will ignore any README.md
files in your source paths.
If you are using JSDoc's default template, the README
file's contents will be rendered in HTML
in the generated documentation's index.html
file.