Place the arrow correctly in-between [hr]
This commit is contained in:
parent
d072d4a381
commit
912b8e07ae
|
@ -72,12 +72,15 @@ export class StandardBBCodeParser extends CoreBBCodeParser {
|
||||||
const icon = parser.createElement('i');
|
const icon = parser.createElement('i');
|
||||||
icon.className = 'fas fa-chevron-down';
|
icon.className = 'fas fa-chevron-down';
|
||||||
icon.style.marginRight = '10px';
|
icon.style.marginRight = '10px';
|
||||||
headerText.appendChild(icon);
|
|
||||||
// HACK: to allow [hr] in header part
|
// HACK: to allow [hr] in header part
|
||||||
param = Utils.replaceAll(param, "[hr]", "<hr>");
|
if (param.startsWith('[hr]')) { headerText.appendChild(parser.createElement('hr')); param = param.slice(4) }
|
||||||
const headerText2 = parser.createElement("div");
|
headerText.appendChild(icon);
|
||||||
headerText2.innerHTML = param;
|
const splitParam = param.split('[hr]')
|
||||||
headerText.appendChild(headerText2);
|
for (let iii = 0; iii < splitParam.length; iii++) {
|
||||||
|
const element = splitParam[iii];
|
||||||
|
headerText.appendChild(document.createTextNode(element));
|
||||||
|
if (iii < splitParam.length-1) headerText.appendChild(parser.createElement('hr'))
|
||||||
|
}
|
||||||
outer.appendChild(headerText);
|
outer.appendChild(headerText);
|
||||||
const body = parser.createElement('div');
|
const body = parser.createElement('div');
|
||||||
body.className = 'bbcode-collapse-body';
|
body.className = 'bbcode-collapse-body';
|
||||||
|
|
Loading…
Reference in New Issue