1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-18 18:04:28 +00:00
TiddlyWiki5/js/macros/version.js
Jeremy Ruston 9a73b0a6aa Rejigged macro implementation
Now each macro is in a separate file, and is implemented as a function,
rather than being inlined into the compiled tiddler rendering function
2012-01-07 17:33:42 +00:00

23 lines
289 B
JavaScript

/*\
title: js/macros/version.js
\*/
(function(){
/*jslint node: true */
"use strict";
var utils = require("../Utils.js");
exports.macro = {
name: "version",
types: ["text/html","text/plain"],
params: {
},
code: function(type,tiddler,store,params) {
return "5.0.0";
}
};
})();