FIX: render custom tag extensions even when tags disabled

This commit is contained in:
Sam 2017-03-01 13:38:44 -05:00
parent 89bd538742
commit ca951f2cf2
1 changed files with 5 additions and 3 deletions

View File

@ -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;