1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-05 19:53:17 +00:00

Fix to include macro

This commit is contained in:
Jeremy Ruston 2012-05-05 14:16:34 +01:00
parent a41d3753e7
commit 3c4efa64e1

View File

@ -24,7 +24,7 @@ exports.executeMacro = function() {
var titles = this.wiki.filterTiddlers(this.params.filter),
result = [];
for(var t=0; t<titles.length; t++) {
result.push(this.wiki.serializeTiddler(this.params.filter,as));
result.push(this.wiki.serializeTiddler(titles[t],as));
}
return [$tw.Tree.Element("pre",{},[
$tw.Tree.Text(result.join("\n"))