1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-06 04:03:16 +00:00
TiddlyWiki5/core/modules/macros/version.js

26 lines
338 B
JavaScript
Raw Normal View History

/*\
title: $:/core/modules/macros/version.js
type: application/javascript
module-type: macro
Version macro
\*/
(function(){
2012-05-04 17:49:04 +00:00
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
exports.info = {
name: "version",
params: {
}
2012-05-04 17:49:04 +00:00
};
exports.executeMacro = function() {
return $tw.Tree.Text($tw.version);
};
})();