A basic template for JSDoc.
npm install jsdoc-baseline

An extensible template for [JSDoc][jsdoc].
This is a preview version of the Baseline template. Baseline is still under active development.
Everything in the template is subject to change.
Baseline is a new HTML template for [JSDoc][jsdoc]. It offers several benefits:
+ Extensible from the ground up. You can use extensions to customize your documentation's
content and appearance without changing Baseline itself. In addition, you can localize the headings
and other text that are added by the template. Note: Customization options are limited in this
preview version. More options will be available soon.
+ Easy to navigate. An expandable table of contents helps users find what they're looking for.
Also, a summary at the top of each page shows users what's documented on that page.
+ Modern template syntax. Baseline uses [Handlebars][handlebars], a powerful JavaScript template
engine, to define the template layout. Handlebars makes it possible to define new tags and helpers
that you can use in your customizations to Baseline.
1. Add [JSDoc][jsdoc] to your Node.js project as a development dependency:
``sh`
npm install --save-dev jsdoc
2. Add the Baseline template to your Node.js project as a development dependency:
`sh`
npm install --save-dev jsdoc-baseline
To use the Baseline template with its default settings, run JSDoc with the --template (or -t)
command-line option:
`sh`
jsdoc --template
To use the Baseline template with customized settings:
1. Copy baseline-config.json.EXAMPLE to a new file (for example, baseline-config.json).baseline-config.json.EXAMPLE
2. Modify the configuration file as needed. See for information aboutconf.json
the supported options. You can use comments in the configuration file.
3. Update your JSDoc file to include a templates.baseline property. This property--configure
must contain the path to your Baseline configuration file.
4. Run JSDoc as shown above, using the (or -c) option to tell JSDoc where to findconf.json
your file:
`sh``
jsdoc --configure
Copyright 2014-2019 Google LLC. Licensed under the Apache License, Version 2.0.
See [LICENSE.md][license] for more information.
[handlebars]: https://handlebarsjs.com/
[jsdoc]: https://github.com/jsdoc/jsdoc
[license]: https://github.com/hegemonic/jsdoc-baseline/blob/master/LICENSE.md