Aggiornamento tiddlywiki e info di presentazione

This commit is contained in:
Gianluigi 2023-10-19 17:32:10 +02:00
parent 65141d85da
commit cb93264473
2 changed files with 209 additions and 146 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,39 +1,39 @@
/*\
title: $:/macros/ulaulaman/TagTable.js
type: application/javascript
module-type: macro
<<TagTable tag>>
Example:
<<TagTable>>
<<TagTable "tag">>
\*/
(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;
};
/*\
title: $:/macros/ulaulaman/TagTable.js
type: application/javascript
module-type: macro
<<TagTable tag>>
Example:
<<TagTable>>
<<TagTable "tag">>
\*/
(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;
};
})();