Fix whitespace in all plugins for v5.3.6 (#8285)

* Fix whitespace in all plugins for v5.3.5

* remove const to var chanes
This commit is contained in:
Mario Pietsch
2024-08-20 17:33:07 +02:00
committed by GitHub
parent 014f302af3
commit 231a39e743
14 changed files with 58 additions and 58 deletions

View File

@@ -70,7 +70,7 @@ var WikiTextParser = function(type,text,options) {
var root = JSON.parse(JSON.stringify(parser.tree));
// macros are defined in a linear tree; walk down the tree and append the source's parsed content
var baseroot = root;
while (root[0] && root[0].children && root[0].children.length !== 0 ){
while(root[0] && root[0].children && root[0].children.length !== 0 ){
root = root[0].children;
}
root[0].children[0] = this.tree[0];