mirror of
https://github.com/WhitestormJS/whs.js.git
synced 2025-12-08 20:26:23 +00:00
12 lines
244 B
JavaScript
12 lines
244 B
JavaScript
exports.defineTags = function (dictionary) {
|
|
dictionary.defineTag("category", {
|
|
mustHaveValue: true,
|
|
canHaveType: false,
|
|
canHaveName: true,
|
|
|
|
onTagged: function (doclet, tag) {
|
|
doclet.category = tag.value;
|
|
}
|
|
});
|
|
};
|