A custom tag plugin and template for jsdoc designed for suitescript users
npm install @suitegeezus/docdash-suitescriptjson
"plugins": ["@suitegeezus/docdash-suitescript/ssTags"]
`
2. inform jsdoc you are using this template. Here is a js example:
`js
const template = path.dirname(require.resolve('@suitegeezus/docdash-suitescript'));
// other code and config here
Object.assign( jsdocConfig.opts, {template });
`
$3
!SuiteScript Doc'd
!SuiteScript example
Custom Tags
Displaying custom tags in docs is usually the easy part but getting it into the template is difficult. So this will do
basic support of custom tags.Method 1: No coding
1. In your jsdoc conf.json file add a new key/section suitescript.
2. Add a key for basicTags and give it an array of strings (must be valid key strings)
e.g.
`json
"suitescript": {
"basicTags": ["kwyjibo", "boom"]
}
`Method 2: Some coding
All you have to do is create a script with a few lines and put it somewhere jsdoc can find. 1. Write a script (e.g.
customTags.js) that contains something like this:
`js
// customTags.js
exports.defineTags = function (dictionary) {
dictionary.defineTag('kwyjibo', {
'mustHaveValue': true,
canHaveType : false,
canHaveName : false,
'onTagged' : function (doclet, tag) { doclet.kwijibo = tag.value;
if (!doclet.meta) {
doclet.meta = {};
}
if (!doclet.meta.customTagName){
doclet.meta.customTagName = [];
}
// the customTagName must match the doclet key and tag above
doclet.meta.customTagName.push('kwyjibo')
}
})
// optional synonym
.synonym('mycustom');
};
`
2. put this script somewhere jsdoc can see it. (probably easiest thing would be to
copy it to the jsdoc/plugins folder)
3. Refer to this script via plugins (in your jsdoc.conf)
`json
"plugins": ["@suitegeezus/docdash-suitescript/ssTags", "from/a/root/jsdoc/can/resolve/customTags"]
`Docdash
  A clean, responsive documentation template theme for JSDoc 3.
Example
See http://clenemt.github.io/docdash/ for a sample demo. :rocket:Install
`bash
$ npm install docdash
`Usage
Clone repository to your designated jsdoc template directory, then:`bash
$ jsdoc entry-file.js -t path/to/docdash
`Usage (npm)
In your projects package.json file add a new script:`json
"script": {
"generate-docs": "node_modules/.bin/jsdoc -c jsdoc.json"
}
`In your
jsdoc.json file, add a template option.`json
"opts": {
"template": "node_modules/docdash"
}
`Sample
jsdoc.json
See the config file for the fixtures or the sample below.`json
{
"tags": {
"allowUnknownTags": false
},
"source": {
"include": "../js",
"includePattern": "\\.js$",
"excludePattern": "(node_modules/|docs)"
},
"plugins": [
"plugins/markdown"
],
"opts": {
"template": "assets/template/docdash/",
"encoding": "utf8",
"destination": "docs/",
"recurse": true,
"verbose": true
},
"templates": {
"cleverLinks": false,
"monospaceLinks": false
}
}
`Options
Docdash supports the following options:`json5
{
"docdash": {
"static": [false|true], // Display the static members inside the navbar
"sort": [false|true], // Sort the methods in the navbar
"sectionOrder": [ // Order the main section in the navbar (default order shown here)
"Classes",
"Modules",
"Externals",
"Events",
"Namespaces",
"Mixins",
"Tutorials",
"Interfaces"
],
"disqus": "", // Shortname for your disqus (subdomain during site creation)
"openGraph": { // Open Graph options (mostly for Facebook and other sites to easily extract meta information)
"title": "", // Title of the website
"type": "website", // Type of the website
"image": "", // Main image/logo
"site_name": "", // Site name
"url": "" // Main canonical URL for the main page of the site
},
"meta": { // Meta information options (mostly for search engines that have not indexed your site yet)
"title": "", // Also will be used as postfix to actualy page title, prefixed with object/document name
"description": "", // Description of overal contents of your website
"keyword": "" // Keywords for search engines
},
"search": [false|true], // Display seach box above navigation which allows to search/filter navigation items
"commonNav": [false|true], // Group all html code for `Place them anywhere inside your
jsdoc.json` file.






