Rename group -> tags

This commit is contained in:
Václav Volhejn 2025-10-11 14:11:50 +02:00
parent a4d7803d43
commit 5032b4e966
7 changed files with 368 additions and 368 deletions

View file

@ -13,10 +13,10 @@ function defineTags(dictionary) {
},
});
dictionary.defineTag('group', {
dictionary.defineTag('tags', {
mustHaveValue: true,
onTagged: function (doclet, tag) {
doclet.group = tag.value;
doclet.tags = tag.value.split(/[ ,]+/);
},
});
}