mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-06 18:16:18 +00:00
04e91245cb
Now there is now longer a dummy DOM element corresponding to the macro itself. Instead, macros must create a single element child. This allows us to more easily fit Bootstrap's requirements for HTML layout (eg, that problem with links in navbars not being recognised). The refactoring isn't complete, there are still a few bugs to chase down
26 lines
355 B
JavaScript
26 lines
355 B
JavaScript
/*\
|
|
title: $:/core/modules/macros/version.js
|
|
type: application/javascript
|
|
module-type: macro
|
|
|
|
Version macro
|
|
|
|
\*/
|
|
(function(){
|
|
|
|
/*jslint node: true, browser: true */
|
|
/*global $tw: false */
|
|
"use strict";
|
|
|
|
exports.info = {
|
|
name: "version",
|
|
params: {
|
|
}
|
|
};
|
|
|
|
exports.executeMacro = function() {
|
|
return $tw.Tree.Text($tw.utils.getVersionString());
|
|
};
|
|
|
|
})();
|