1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-07 20:44:23 +00:00
TiddlyWiki5/core/modules/macros/include.js

40 lines
807 B
JavaScript
Raw Normal View History

/*\
2012-05-05 10:57:08 +00:00
title: $:/core/modules/macros/include.js
type: application/javascript
module-type: macro
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
exports.info = {
name: "include",
2012-05-05 10:57:08 +00:00
params: {
filter: {byPos: 0, type: "filter"},
as: {byPos: 1, as: "text"},
shadow: {byPos: 2, as: "text"}
2012-05-05 10:57:08 +00:00
}
};
exports.executeMacro = function() {
var as = this.params.as || "text/plain",
wiki = this.hasParameter("shadow") ? this.wiki.shadows : this.wiki;
if(this.hasParameter("filter")) {
var titles = wiki.filterTiddlers(this.params.filter),
result = [];
for(var t=0; t<titles.length; t++) {
2012-05-05 13:16:34 +00:00
result.push(this.wiki.serializeTiddler(titles[t],as));
2012-05-05 10:57:08 +00:00
}
return [$tw.Tree.Element("pre",{},[
$tw.Tree.Text(result.join("\n"))
])];
2012-05-05 10:57:08 +00:00
}
return [];
};
})();