kopia lustrzana https://github.com/miklobit/TiddlyWiki5
26 wiersze
316 B
JavaScript
26 wiersze
316 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 [];
|
||
|
};
|
||
|
|
||
|
|
||
|
})();
|