Skip to content

Latest commit

 

History

History
71 lines (63 loc) · 2.36 KB

README.md

File metadata and controls

71 lines (63 loc) · 2.36 KB

Jaguar.js template for JSDoc 3

forked from davidshimjs/jaguarjs-jsdoc

Improvements:

Usage

  1. If you want to create documentation with sample files, you can use commands below.
$ npm install
$ grunt demo
  1. You can see any output related jsdoc process with a --debug flag.
$ grunt demo --debug
  1. If you already have jsdoc system, you can use this project as jsdoc template.
$ jsdoc -t `project folder` -c `configuration file` `source files` `README.md file`

conf.json

You can set options for customizing your documentation.

"templates": {
    "applicationName": "Demo",
    "disqus": "",
    "googleAnalytics": "",
    "openGraph": {
        "title": "",
        "type": "website",
        "image": "",
        "site_name": "",
        "url": ""
    },
    "meta": {
        "title": "",
        "description": "",
        "keyword": ""
    },
    "linenums": true,
    "sourceLinks": false
},
"plugins": [
    "./node_modules/jaguarjs-jsdoc/plugins/inherit-properties"
]

License

This project under the MIT License. Based on the default template of JSDoc 3.