mirror of
https://github.com/overte-org/overte.git
synced 2025-06-15 17:59:16 +02:00
Fix custom JSDoc tags
This commit is contained in:
parent
dd32ca33a5
commit
e39aecfb2a
1 changed files with 2 additions and 2 deletions
|
@ -106,7 +106,7 @@ exports.handlers = {
|
||||||
|
|
||||||
// Append an Available In: table at the end of the namespace description.
|
// Append an Available In: table at the end of the namespace description.
|
||||||
if (rows.length > 0) {
|
if (rows.length > 0) {
|
||||||
var table = "<br><br><table><td>Available In:<td>" + rows.join("<td>") + "</table>";
|
var table = "<br><br><table><tr><th>Available in:</th><td>" + rows.join("</td><td>") + "</td></tr></table>";
|
||||||
e.doclet.description = e.doclet.description + table;
|
e.doclet.description = e.doclet.description + table;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -124,7 +124,7 @@ exports.defineTags = function (dictionary) {
|
||||||
});
|
});
|
||||||
|
|
||||||
// @hifi-assignment-client
|
// @hifi-assignment-client
|
||||||
dictionary.defineTag("hifi-assigment-client", {
|
dictionary.defineTag("hifi-assignment-client", {
|
||||||
onTagged: function (doclet, tag) {
|
onTagged: function (doclet, tag) {
|
||||||
doclet.hifiAssignmentClient = true;
|
doclet.hifiAssignmentClient = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue