mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-08 02:49:56 +00:00
23 lines
303 B
JavaScript
23 lines
303 B
JavaScript
/*\
|
|
title: $:/core/modules/macros/version.js
|
|
type: application/javascript
|
|
module-type: macro
|
|
|
|
\*/
|
|
(function(){
|
|
|
|
/*jslint node: true */
|
|
"use strict";
|
|
|
|
exports.info = {
|
|
name: "version",
|
|
params: {
|
|
}
|
|
}
|
|
|
|
exports.executeMacro = function() {
|
|
return [$tw.Tree.Text($tw.utils.getVersionString())];
|
|
};
|
|
|
|
})();
|