-
Notifications
You must be signed in to change notification settings - Fork 167
Open
Description
I create an new tag ..
exports.defineTags = function (dictionary) {
dictionary.defineTag("topic", {
mustHaveValue: true,
canHaveType: false,
canHaveName: true,
onTagged: function (doclet, tag) {
doclet.topic = tag.value;
}
});
};
Inclide in my jsdoc.json ..
{
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc"]
},
"source": {
"include": ["package.json", "README.md"],
"includePattern": ".js$",
"excludePattern": "(node_modules/|docs)"
},
"plugins": [
"plugins/markdown",
"./jsdoc/topic.js" // HERE
],
"opts": {
"template": "./node_modules/minami",
"encoding": "utf8",
"destination": "docs/",
"recurse": true,
"verbose": true
},
"templates": {
"cleverLinks": false,
"monospaceLinks": true,
"useLongnameInNav": false,
"showInheritedInNav": true
}
}
Added into my code
- @topic to/robot/{MAC_ADDRESS}
But nothing change in doc
Metadata
Metadata
Assignees
Labels
No labels