1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-28 15:08:46 +00:00

Added explanatory comment to the view macro

This commit is contained in:
Jeremy Ruston 2012-02-04 15:56:20 +00:00
parent 2ff56c193c
commit e579630249

View File

@ -28,7 +28,7 @@ exports.macro = {
case "link":
return store.renderMacro("link",type,tiddler,{target: v},encoder(v));
case "wikified":
return store.renderTiddler(type,tiddler.title);
return store.renderTiddler(type,tiddler.title); // Should be return store.renderText("text/x-tiddlywiki",v,type);
case "date":
var template = params.template || "DD MMM YYYY";
return encoder(utils.formatDateString(v,template));