mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-09 19:39:57 +00:00
d93bbbbe7b
See the readme for details
23 lines
274 B
JavaScript
23 lines
274 B
JavaScript
/*\
|
|
title: $:/core/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("5.0.0")];
|
|
};
|
|
|
|
})();
|