[twdev] Re: [TheDiveO/TW5FontAwesome] Updated to FontAwesome 5.13.0

2020-04-02 Thread Mohammad
Thank you for all your efforts Joshua! I love your update! --Mohammad On Friday, April 3, 2020 at 5:03:33 AM UTC+4:30, Joshua Fontany wrote: > > Mohammad, > > Thank you! I have updated the $:/.../history tiddler and sent TheDive0 > pull-requests for both the master and gp-pages branches. > >

[twdev] Re: [TheDiveO/TW5FontAwesome] Updated to FontAwesome 5.13.0

2020-04-02 Thread Joshua Fontany
Mohammad, Thank you! I have updated the $:/.../history tiddler and sent TheDive0 pull-requests for both the master and gp-pages branches. Until those are updated, you can find a copy of the plugin for use here (the only update from the last post is the History Tiddler).

Re: [twdev] Why does the Transclude widget not have a template parameter?

2020-04-02 Thread Jeremy Ruston
Hi Tony The <$tiddler> and <$transclude> widgets are different because they do different things. The goal of widgets is to be small, reusable, generic primitives; the utility comes from combination. The goal of wikitext syntax such as double curly braces syntax is to make common idioms easier

Re: [twdev] Why does the Transclude widget not have a template parameter?

2020-04-02 Thread PMario
On Thursday, April 2, 2020 at 1:39:09 PM UTC+2, TonyM wrote: > > Jeremy > > That explains it well thanks. I still see value in being able to say > > <$transclude currentTiddler=tiddlername tiddler=templatetiddler/> > I would name it: <$transclude tiddler=tiddlername template=templatetiddler/>

Re: [twdev] Why does the Transclude widget not have a template parameter?

2020-04-02 Thread TonyM
Jeremy That explains it well thanks. I still see value in being able to say <$transclude currentTiddler=tiddlername tiddler=templatetiddler/> Which is a direct equivalent of '{{curentTiddler||tiddlername}}' because its such a fundamental action which would be helpful in a number of cases.

Re: [twdev] Why does the Transclude widget not have a template parameter?

2020-04-02 Thread Jeremy Ruston
Hi Tony The construction {{title}} generates the following widget structure: <$tiddler tiddler="title"> <$transclude tiddler="title"/> The construction {{title||template}} generates the following widget structure: <$tiddler tiddler="title"> <$transclude tiddler="template"/> See: