whs.js/docs/template/custom.js
Alexander Buzin c05ae2b222 Add category
Former-commit-id: 851e90391049f8e460d38b2dccfc9a01b914afcd
2017-06-20 23:20:19 +03:00

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;
}
});
};