mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-04-30 23:07:01 +00:00
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:
@@ -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];
|
||||
|
||||
Reference in New Issue
Block a user