diff --git a/js/TagTable.js b/js/TagTable.js new file mode 100644 index 0000000..15185ea --- /dev/null +++ b/js/TagTable.js @@ -0,0 +1,39 @@ +/*\ +title: $:/macros/ulaulaman/TagTable.js +type: application/javascript +module-type: macro + +<> + +Example: +<> +<> + +\*/ +(function(){ + + /*jslint node: true, browser: true */ + /*global $tw: false */ + "use strict"; + + /* + Information about this macro + Create a styled table in order to show tiddlers from a specific tag as a menu. + */ + + exports.name = "TagTable"; + + exports.params = [ + { name: "tag" } + ]; + + /* + Run the macro + */ + exports.run = function(tag) { + if( !tag) tag = "menu"; + var output = "{{" + tag + "||$:/core/macros/ulaulaman/TagTable}}"; + return output; + }; + + })(); \ No newline at end of file