whs.js/docs/template/custom.js
Alexander Buzin 851e903910 Add category
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;
}
});
};