Add @signal tag to hifi plugin

This commit is contained in:
ingerjm0 2019-02-23 21:28:00 -08:00
parent 36c66f019d
commit 75000d9a79

View file

@ -169,4 +169,14 @@ exports.defineTags = function (dictionary) {
doclet.hifiServerEntity = true;
}
});
// @signal
dictionary.defineTag("signal", {
mustHaveValue: true,
onTagged: function(doclet, tag) {
setDocletKindToTitle(doclet, tag);
setDocletNameToValue(doclet, tag);
}
});
};