mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-08 10:59:57 +00:00
1326b12948
Macros need to tolerate missing parameters
24 lines
367 B
JavaScript
24 lines
367 B
JavaScript
/*\
|
|
title: js/macros/echo.js
|
|
|
|
\*/
|
|
(function(){
|
|
|
|
/*jslint node: true */
|
|
"use strict";
|
|
|
|
var Renderer = require("../Renderer.js").Renderer;
|
|
|
|
exports.macro = {
|
|
name: "echo",
|
|
types: ["text/html","text/plain"],
|
|
params: {
|
|
text: {byPos: 0, type: "text"}
|
|
},
|
|
execute: function(macroNode,tiddler,store) {
|
|
return [Renderer.TextNode(macroNode.params.text)];
|
|
}
|
|
};
|
|
|
|
})();
|