mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-08 02:49:56 +00:00
2e01add7f3
Being <<!blah blah>> means that it is easy to comment out a macro call
26 lines
317 B
JavaScript
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 [];
|
|
};
|
|
|
|
|
|
})();
|