1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-02 14:32:53 +00:00
TiddlyWiki5/js/macros/tiddler.js

26 lines
534 B
JavaScript
Raw Normal View History

/*\
title: js/macros/tiddler.js
\*/
(function(){
/*jslint node: true */
"use strict";
var utils = require("../Utils.js");
exports.macro = {
name: "tiddler",
types: ["text/html","text/plain"],
cascadeParams: true, // Cascade names of named parameters to following anonymous parameters
params: {
target: {byName: "default", type: "tiddler", optional: false},
"with": {byName: true, type: "text", optional: true}
},
code: function(type,tiddler,store,params) {
return store.renderTiddler(type,params.target);
}
};
})();