13 lines
362 B
JavaScript
13 lines
362 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
function defineTags(dictionary) {
|
|
dictionary.defineTag("template", {
|
|
onTagged: function (doclet, tag) {
|
|
doclet.tags = doclet.tags || [];
|
|
doclet.tags.push(tag);
|
|
}
|
|
});
|
|
}
|
|
exports.defineTags = defineTags;
|
|
;
|
|
//# sourceMappingURL=plugin.js.map
|