FIX: render custom tag extensions even when tags disabled
This commit is contained in:
parent
89bd538742
commit
ca951f2cf2
|
@ -45,10 +45,12 @@ export default function(topic, params){
|
|||
for(var i=0; i<tags.length; i++){
|
||||
buffer += renderTag(tags[i]);
|
||||
}
|
||||
if (customHtml) {
|
||||
buffer += customHtml;
|
||||
}
|
||||
}
|
||||
|
||||
if (customHtml) {
|
||||
buffer += customHtml;
|
||||
}
|
||||
|
||||
buffer += "</div>";
|
||||
}
|
||||
return buffer;
|
||||
|
|
Loading…
Reference in New Issue