Added comment macro

Being <<!blah blah>> means that it is easy to comment out a macro call
print-window-tiddler
Jeremy Ruston 2012-05-05 11:22:43 +01:00
rodzic 847108de37
commit 2e01add7f3
1 zmienionych plików z 25 dodań i 0 usunięć

Wyświetl plik

@ -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 [];
};
})();