mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-04-28 03:04:47 +00:00
Fixed problem with tiddler context within macros
This commit is contained in:
@@ -101,7 +101,7 @@ WikiTextParser.prototype.renderAsHtml = function(store,title) {
|
||||
}
|
||||
}
|
||||
};
|
||||
wikiTextMacros.executeMacros(this.tree,store);
|
||||
wikiTextMacros.executeMacros(this.tree,store,title);
|
||||
renderSubTree(this.tree);
|
||||
return output.join("");
|
||||
};
|
||||
@@ -131,7 +131,7 @@ WikiTextParser.prototype.renderAsText = function(store,title) {
|
||||
}
|
||||
}
|
||||
};
|
||||
wikiTextMacros.executeMacros(this.tree,store);
|
||||
wikiTextMacros.executeMacros(this.tree,store,title);
|
||||
renderSubTree(this.tree);
|
||||
return output.join("");
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user