mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-08 10:59:57 +00:00
23 lines
291 B
JavaScript
23 lines
291 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: {
|
|
},
|
|
render: function(type,tiddler,store,params) {
|
|
return "5.0.0";
|
|
}
|
|
};
|
|
|
|
})();
|