Compare commits

...

2 Commits

Author SHA1 Message Date
Gianluigi fc124b26de Aggiornamento readme 2023-10-19 17:32:18 +02:00
Gianluigi cb93264473 Aggiornamento tiddlywiki e info di presentazione 2023-10-19 17:32:10 +02:00
3 changed files with 211 additions and 147 deletions

View File

@ -1,4 +1,5 @@
[Pagina personale](https://ulaulaman.github.io/) realizzata con [TiddlyWiki](https://tiddlywiki.com/) con il [whitespace theme](http://j.d.whitespace.tiddlyspot.com/).
* 2020.07.16: Aggiunta una tabella come *plugin*: [*javascript*](js/TagTable.js) e [*css*](css/blue-table.css)
* 2021.10.23: Aggiornato il *tiddlywiki* alla versione 5.2.0 usando il [*TiddlyWiki Upgrade Wizard*](https://tiddlywiki.com/upgrade.html)
* 2021.10.23: Aggiornato il *tiddlywiki* alla versione 5.2.0 usando il [*TiddlyWiki Upgrade Wizard*](https://tiddlywiki.com/upgrade.html)
* 2023.10.19: Aggiornato il *tiddlywiki* alla versione 5.3.1 usando il [*TiddlyWiki Upgrade Wizard*](https://tiddlywiki.com/upgrade.html)

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