1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-08 02:49:56 +00:00
TiddlyWiki5/rabbithole/core/modules/macros/comment.js
Jeremy Ruston 2e01add7f3 Added comment macro
Being <<!blah blah>> means that it is easy to comment out a macro call
2012-05-05 11:22:43 +01:00

26 lines
317 B
JavaScript

/*\
title: $:/core/modules/macros/comment.js
type: application/javascript
module-type: macro
Comment macro, a no-op.
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
exports.info = {
name: "!",
params: {}
};
exports.executeMacro = function() {
return [];
};
})();