├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── README.md ├── lib ├── docletRecord.js └── templateRenderer.js ├── package.json ├── publish.js ├── static ├── fonts │ ├── OpenSans-Bold-webfont.eot │ ├── OpenSans-Bold-webfont.svg │ ├── OpenSans-Bold-webfont.woff │ ├── OpenSans-BoldItalic-webfont.eot │ ├── OpenSans-BoldItalic-webfont.svg │ ├── OpenSans-BoldItalic-webfont.woff │ ├── OpenSans-Italic-webfont.eot │ ├── OpenSans-Italic-webfont.svg │ ├── OpenSans-Italic-webfont.woff │ ├── OpenSans-Light-webfont.eot │ ├── OpenSans-Light-webfont.svg │ ├── OpenSans-Light-webfont.woff │ ├── OpenSans-LightItalic-webfont.eot │ ├── OpenSans-LightItalic-webfont.svg │ ├── OpenSans-LightItalic-webfont.woff │ ├── OpenSans-Regular-webfont.eot │ ├── OpenSans-Regular-webfont.svg │ └── OpenSans-Regular-webfont.woff ├── scripts │ ├── linenumber.js │ └── prettify │ │ ├── Apache-License-2.0.txt │ │ ├── lang-css.js │ │ └── prettify.js └── styles │ ├── jsdoc-default.css │ ├── prettify-jsdoc.css │ └── prettify-tomorrow.css └── tmpl ├── augments.tmpl ├── container.tmpl ├── details.tmpl ├── example.tmpl ├── examples.tmpl ├── exceptions.tmpl ├── layout.tmpl ├── mainpage.tmpl ├── members.tmpl ├── method.tmpl ├── navigation.tmpl ├── params.tmpl ├── properties.tmpl ├── returns.tmpl ├── source.tmpl ├── tutorial.tmpl └── type.tmpl /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/README.md -------------------------------------------------------------------------------- /lib/docletRecord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/lib/docletRecord.js -------------------------------------------------------------------------------- /lib/templateRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/lib/templateRenderer.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/package.json -------------------------------------------------------------------------------- /publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/publish.js -------------------------------------------------------------------------------- /static/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/static/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /static/fonts/OpenSans-Bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/static/fonts/OpenSans-Bold-webfont.svg -------------------------------------------------------------------------------- /static/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/static/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /static/fonts/OpenSans-BoldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/static/fonts/OpenSans-BoldItalic-webfont.eot -------------------------------------------------------------------------------- /static/fonts/OpenSans-BoldItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/static/fonts/OpenSans-BoldItalic-webfont.svg -------------------------------------------------------------------------------- /static/fonts/OpenSans-BoldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/static/fonts/OpenSans-BoldItalic-webfont.woff -------------------------------------------------------------------------------- /static/fonts/OpenSans-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/static/fonts/OpenSans-Italic-webfont.eot -------------------------------------------------------------------------------- /static/fonts/OpenSans-Italic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/static/fonts/OpenSans-Italic-webfont.svg -------------------------------------------------------------------------------- /static/fonts/OpenSans-Italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/static/fonts/OpenSans-Italic-webfont.woff -------------------------------------------------------------------------------- /static/fonts/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/static/fonts/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /static/fonts/OpenSans-Light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/static/fonts/OpenSans-Light-webfont.svg -------------------------------------------------------------------------------- /static/fonts/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/static/fonts/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /static/fonts/OpenSans-LightItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/static/fonts/OpenSans-LightItalic-webfont.eot -------------------------------------------------------------------------------- /static/fonts/OpenSans-LightItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/static/fonts/OpenSans-LightItalic-webfont.svg -------------------------------------------------------------------------------- /static/fonts/OpenSans-LightItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/static/fonts/OpenSans-LightItalic-webfont.woff -------------------------------------------------------------------------------- /static/fonts/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/static/fonts/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /static/fonts/OpenSans-Regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/static/fonts/OpenSans-Regular-webfont.svg -------------------------------------------------------------------------------- /static/fonts/OpenSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/static/fonts/OpenSans-Regular-webfont.woff -------------------------------------------------------------------------------- /static/scripts/linenumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/static/scripts/linenumber.js -------------------------------------------------------------------------------- /static/scripts/prettify/Apache-License-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/static/scripts/prettify/Apache-License-2.0.txt -------------------------------------------------------------------------------- /static/scripts/prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/static/scripts/prettify/lang-css.js -------------------------------------------------------------------------------- /static/scripts/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/static/scripts/prettify/prettify.js -------------------------------------------------------------------------------- /static/styles/jsdoc-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/static/styles/jsdoc-default.css -------------------------------------------------------------------------------- /static/styles/prettify-jsdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/static/styles/prettify-jsdoc.css -------------------------------------------------------------------------------- /static/styles/prettify-tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/static/styles/prettify-tomorrow.css -------------------------------------------------------------------------------- /tmpl/augments.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/tmpl/augments.tmpl -------------------------------------------------------------------------------- /tmpl/container.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/tmpl/container.tmpl -------------------------------------------------------------------------------- /tmpl/details.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/tmpl/details.tmpl -------------------------------------------------------------------------------- /tmpl/example.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/tmpl/example.tmpl -------------------------------------------------------------------------------- /tmpl/examples.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/tmpl/examples.tmpl -------------------------------------------------------------------------------- /tmpl/exceptions.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/tmpl/exceptions.tmpl -------------------------------------------------------------------------------- /tmpl/layout.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/tmpl/layout.tmpl -------------------------------------------------------------------------------- /tmpl/mainpage.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/tmpl/mainpage.tmpl -------------------------------------------------------------------------------- /tmpl/members.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/tmpl/members.tmpl -------------------------------------------------------------------------------- /tmpl/method.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/tmpl/method.tmpl -------------------------------------------------------------------------------- /tmpl/navigation.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/tmpl/navigation.tmpl -------------------------------------------------------------------------------- /tmpl/params.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/tmpl/params.tmpl -------------------------------------------------------------------------------- /tmpl/properties.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/tmpl/properties.tmpl -------------------------------------------------------------------------------- /tmpl/returns.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/tmpl/returns.tmpl -------------------------------------------------------------------------------- /tmpl/source.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/tmpl/source.tmpl -------------------------------------------------------------------------------- /tmpl/tutorial.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/tmpl/tutorial.tmpl -------------------------------------------------------------------------------- /tmpl/type.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theasta/jsdoc-dash-template/HEAD/tmpl/type.tmpl --------------------------------------------------------------------------------