1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-10-03 01:10:45 +00:00

Added comment macro

Being <<!blah blah>> means that it is easy to comment out a macro call
This commit is contained in:
Jeremy Ruston 2012-05-05 11:22:43 +01:00
parent 847108de37
commit 2e01add7f3

View File

@ -0,0 +1,25 @@
/*\
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 [];
};
})();