mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 21:43:03 +02:00
Add @signal tag to hifi plugin
This commit is contained in:
parent
36c66f019d
commit
75000d9a79
1 changed files with 10 additions and 0 deletions
|
@ -169,4 +169,14 @@ exports.defineTags = function (dictionary) {
|
||||||
doclet.hifiServerEntity = true;
|
doclet.hifiServerEntity = true;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// @signal
|
||||||
|
dictionary.defineTag("signal", {
|
||||||
|
mustHaveValue: true,
|
||||||
|
onTagged: function(doclet, tag) {
|
||||||
|
setDocletKindToTitle(doclet, tag);
|
||||||
|
setDocletNameToValue(doclet, tag);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
};
|
};
|
Loading…
Reference in a new issue