[tw5] Re: Dynamic Svg Calendar

2020-11-25 Thread TW Tones
Example; [image: Snag_2a5cdfe7.png] Tones On Thursday, 26 November 2020 at 17:59:42 UTC+11 TW Tones wrote: > Mohammad, > > Thanks for sharing back again. I did something similar. Including > providing buttons and a tooltip with the date displayed. > > One idea is to determine the days from

[tw5] Re: Dynamic Svg Calendar

2020-11-25 Thread TW Tones
Mohammad, Thanks for sharing back again. I did something similar. Including providing buttons and a tooltip with the date displayed. One idea is to determine the days from now and have a simple line in the image that hints at how old the date is, forward or back. In thought if a Journal

[tw5] Re: Dynamic Svg Calendar

2020-11-25 Thread Atronoush
Hi Tones, great idea! Based on your suggestion I changed your code as below: 1. color of top part is sent as macro parameter: e.g: red, #f00, or rgb(128,160,256) 2. the date value is sent as a macro parameter, so a field value can be sent too See attached a JSON containing the revised code

[tw5] Re: Code Tiddler and Transclude few lines

2020-11-25 Thread TW Tones
Eric, Very impressive Thanks. I am playing with further extension's. Love it. Tones On Thursday, 26 November 2020 at 11:21:02 UTC+11 Eric Shulman wrote: > On Wednesday, November 25, 2020 at 3:19:13 PM UTC-8 TW Tones wrote: > >> >>- It would be nice to extend this also to a wikified

[tw5] Re: Saving a story-river

2020-11-25 Thread ad...@menswellbeing.org
I enjoy very much! Thank you  On Thursday, 26 November 2020 at 11:57:14 am UTC+10 Eric Shulman wrote: > On Wednesday, November 25, 2020 at 5:01:52 PM UTC-8 > ad...@menswellbeing.org wrote: > >> Is it possible to save the story-river into a tiddler and then use that >> tiddler to open that

[tw5] Re: Saving a story-river

2020-11-25 Thread Eric Shulman
On Wednesday, November 25, 2020 at 5:01:52 PM UTC-8 ad...@menswellbeing.org wrote: > Is it possible to save the story-river into a tiddler and then use that > tiddler to open that story-river at a later time? > The current StoryRiver contents are stored in $:/StoryList!!list. Here's a tiddler

Re: [tw5] Re: Image generated from the value of a field in a different tiddler

2020-11-25 Thread Javier Eduardo Rojas Romero
On Wed, Nov 25, 2020 at 01:09:02PM -0800, Anthony wrote: > Thanks all for the comments. I wondered what tooltip was all about but > couldn't see anything to describe what it is or how to use it... but I > probably didn't look in the correct place. I have to admit I wasn't aware > of the

[tw5] Re: Saving a story-river

2020-11-25 Thread Joshua Fontany
Yes, but there is no pre-built UI for doing so. Setup a $button to copy the $:/StoryList tiddler to another name, driven by a text-input field (that points to a `$:/temp/StoryListTitle` title). Transclude that title for the button actions. Also in the actions, add a tag like `StoryList` to

[tw5] Re: Dynamic Svg Calendar

2020-11-25 Thread TW Tones
Mohammad, Inspirational. Especially the idea of dynamic svg's that respond to content that can become buttons Inspired by your effort, I built a version that shows the year, and uses now, unless a fieldname is provided. The fieldname needs to contain a date according to the date serial

[tw5] Saving a story-river

2020-11-25 Thread ad...@menswellbeing.org
Hi there, Thanks to those posters who pointed out it is possible to drag-and-drop tiddlers in the "Open" side-bar to re-order tiddlers in the story-river. Is it possible to save the story-river into a tiddler and then use that tiddler to open that story-river at a later time? As you might

[tw5] Re: Super Tiny Web Icons

2020-11-25 Thread TW Tones
Thanks for sharing. The other method is to use characters already defined in unicode and turn them into svg's., possibly much smaller again Ż ⸙ Tones On Thursday, 26 November 2020 at 09:03:50 UTC+11 Mohammad wrote: > https://github.com/edent/SuperTinyIcons > > Under 1KB each! Super

[tw5] Re: Code Tiddler and Transclude few lines

2020-11-25 Thread Eric Shulman
On Wednesday, November 25, 2020 at 3:19:13 PM UTC-8 TW Tones wrote: > >- It would be nice to extend this also to a wikified version as well. > > Wikified output should be as simple as changing this line: <$list filter="[enlist:raw]" variable="line"><$text text=<>/> to: <$list

[tw5] Re: Tiddlername as tag

2020-11-25 Thread 'Mark S.' via TiddlyWiki
The angle braces REPLACE the square brackets in filter expressions. So your code should look like: \define testme(parameter) <$list filter="[tag<__parameter__>]"> <$link to=<>/> \end On Wednesday, November 25, 2020 at 11:48:56 AM UTC-8 soren.b...@gmail.com wrote: > On Wednesday,

[tw5] Re: Code Tiddler and Transclude few lines

2020-11-25 Thread Eric Shulman
On Wednesday, November 25, 2020 at 3:19:13 PM UTC-8 TW Tones wrote: > >- And perhaps a code view with line numbers from the source. > > Here's an updated version that add line numbers AND also fixes a bug whereby only one blank line was included in the output \define

[tw5] Re: Code Tiddler and Transclude few lines

2020-11-25 Thread TW Tones
Eric/ Atronoush Eric, I really like that. Just some thoughts as a result. - It would be nice to extend this also to a wikified version as well. - And perhaps a code view with line numbers from the source. - Perhaps a tool for selecting the start and end lines in the source tiddler

[tw5] Re: Dynamic Svg Calendar

2020-11-25 Thread TW Tones
Mohammad, I love it. Especially in the sidebar! Tones On Thursday, 26 November 2020 at 10:00:36 UTC+11 Mohammad wrote: > The tiddler of above post is attached here! > > It seems Google group does not allow to attached this kind of svg! So I > zipped the tiddler. > Unzip and then drag into

[tw5] Re: Tiddlername as tag

2020-11-25 Thread TW Tones
I am not sure why you are using <__parameter__>? it is more for cases like paramname=<__parameter__> The following works; \define testme(parameter) <$list filter="[tag[$parameter$]]" emptyMessage="nothing tagged $parameter$"> <$link to=<>/> \end <> Tones On Thursday, 26 November 2020

[tw5] Re: Dynamic Svg Calendar

2020-11-25 Thread Mohammad
The tiddler of above post is attached here! It seems Google group does not allow to attached this kind of svg! So I zipped the tiddler. Unzip and then drag into your wiki or into https://tiddlywiki.com/ -- You received this message because you are subscribed to the Google Groups

[tw5] Dynamic Svg Calendar

2020-11-25 Thread Mohammad
Using Tiddlywiki endless feature create a macro to make a svg calendar for you. Use the ready to use now macro to insert the today date into your svg! To find the details look at the attached tiddler. --Mohammad Give a try: 1.Open https://tiddlywiki.com/ 2. Drag and drop attached tiddler into

[tw5] Re: Code Tiddler and Transclude few lines

2020-11-25 Thread Atronoush
Thank you Eric! Works like a charm! -Atro On Thursday, November 26, 2020 at 1:56:14 AM UTC+3:30 Eric Shulman wrote: > Place the following in a tiddler (e.g., "ShowLinesMacro"), tagged with > $:/tags/Macro" > \define showLines(tid,from,to) > <$vars length={{{ [[$to$]subtract[$from$]add[1]]

[tw5] Re: Code Tiddler and Transclude few lines

2020-11-25 Thread Eric Shulman
Place the following in a tiddler (e.g., "ShowLinesMacro"), tagged with $:/tags/Macro" \define showLines(tid,from,to) <$vars length={{{ [[$to$]subtract[$from$]add[1]] }}}> <$set name="lines" filter="[[$tid$]get[text]splitregexp[\n]first[$to$]last]"> <$list filter="[enlist:raw]"

Re: [tw5] How to work with square bracket in operators

2020-11-25 Thread W Yan
Very nice resources Mohammad, much appreciated. They seem to be much more thorough than what's explained in official docs, and I learned a lot reading them. Eric, Thank you for the workaround! I've been trying to figure it out myself for couple of days, now tried your solution and it works

[tw5] Re: Passing macro output to another macro?

2020-11-25 Thread TW Tones
Petri, I am only starting to make use of the drag and drop features myself. In this case you are using the macro list-tagged-draggable but you can build your own. Its is defined in $:/core/macros/list I suspect the inability to use a tiddler title with spaces may be a design weakness of the

[tw5] Super Tiny Web Icons

2020-11-25 Thread Mohammad
https://github.com/edent/SuperTinyIcons Under 1KB each! Super Tiny Web Icons are minuscule SVG versions of your favourite logos. The average size is under 465 bytes! The logos have a 512x512 viewbox, they will fit in a circle with radius 256. They will scale up and down to suit your needs.

[tw5] Re: Code Tiddler and Transclude few lines

2020-11-25 Thread Atronoush
See also this discussion for possible solution https://groups.google.com/forum/#!topic/tiddlywiki/6eL-yh2qdB8 On Thursday, November 26, 2020 at 1:07:43 AM UTC+3:30 Atronoush wrote: > Correction: > > Then in another tiddler I explain how code works and I need to include few > *lines* of code and

[tw5] Re: Code Tiddler and Transclude few lines

2020-11-25 Thread Atronoush
Correction: Then in another tiddler I explain how code works and I need to include few *lines* of code and explain them. So for example in Tiddler B, I need to transclude *lines 3-5* and in another part transclude *lines 8-19 * On Thursday, November 26, 2020 at 1:05:46 AM UTC+3:30 Atronoush

[tw5] Code Tiddler and Transclude few lines

2020-11-25 Thread Atronoush
I use a Tiddlywiki for my Python codes. So I have a tiddler like below Title: Slab Catalyst Body: # Problem data and parameters L= 1e-3# pellet thickness, m Cao=0.2# concen at the surface, kg-mol/m3 k=1e-3 # reaction rate constant, 1/s Dab=1.2e-9 #

Re: [tw5] Competition for v5.1.23 artwork

2020-11-25 Thread Atronoush
Springer, Wow, you did a great job and thank you for including my banner in the logo play wiki! I love all of your candidates! I have downloaded few of them for my private wikis! -Atro On Wednesday, November 25, 2020 at 6:07:31 PM UTC+3:30 springer wrote: > Mohammad, > > Seeing the logo

[tw5] Re: How to work with square bracket in operators

2020-11-25 Thread Eric Shulman
On Wednesday, November 25, 2020 at 11:58:13 AM UTC-8 W Yan wrote: > For example, {{{ [{!!field}split[[]join[ ]] }}} seems to work find but {{{ > [{!!field}split[]]join[ ]] }}} is giving me syntax errors. So [ works but ] > doesn't - how should I handle this? > The problem is that the first

Re: [tw5] Re: Image generated from the value of a field in a different tiddler

2020-11-25 Thread Eric Shulman
On Wednesday, November 25, 2020 at 11:42:17 AM UTC-8 soren.b...@gmail.com wrote: > It's worth noting this isn't a TiddlyWiki thing, it's a general web thing. It's also worth noting that $image *is* a TiddlyWiki widget and does NOT support use of the title="..." attribute. Thus, to achieve

Re: [tw5] Re: Image generated from the value of a field in a different tiddler

2020-11-25 Thread Anthony
Thanks all for the comments. I wondered what tooltip was all about but couldn't see anything to describe what it is or how to use it... but I probably didn't look in the correct place. I have to admit I wasn't aware of the difference between alt and title but glad to know that. Take care,

Re: [tw5] Competition for v5.1.23 artwork

2020-11-25 Thread Mohammad
Springer, I just noted to palette switch in the page controls lets to see banners with different dark and light palettes. Thank you! On Wednesday, November 25, 2020 at 8:17:44 PM UTC+3:30 springer wrote: > I've added Atronoush's elegant logo options to the page I set up, plus > others from

[tw5] Re: How to work with square bracket in operators

2020-11-25 Thread Mohammad
There are some greats resources to learn the syntax, have a look 1. TW-Scripts: https://kookma.github.io/TW-Scripts/#Shorthand%20Syntax%20Summary 2. Tones GitWiki: https://anthonymuscio.github.io/#Standard%20Nomenclature Good luck On Wednesday, November 25, 2020 at 11:28:13 PM UTC+3:30 W

Re: [tw5] Competition for v5.1.23 artwork

2020-11-25 Thread Mohammad
Thanks Jeremy, Just to have all in one place to compare! I used Springer wiki https://springerspandrel.github.io/tw/logo-play.html to have all in one place and compare! Nice competition for 5.1.23 with great candidates! --Mohammad On Wednesday, November 25, 2020 at 5:50:38 PM UTC+3:30

[tw5] How to work with square bracket in operators

2020-11-25 Thread W Yan
For example, {{{ [{!!field}split[[]join[ ]] }}} seems to work find but {{{ [{!!field}split[]]join[ ]] }}} is giving me syntax errors. So [ works but ] doesn't - how should I handle this? -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To

[tw5] Re: Tiddlername as tag

2020-11-25 Thread soren.b...@gmail.com
On Wednesday, November 25, 2020 at 1:09:22 PM UTC-6 Mark S. wrote: > Inside a filter, a variable could be referenced as tag[$art$] or as > tag<__art__> . > Really? Did that work for you? I thought parameters-as-variables only work in a strict transclusion context with double angle brackets. In

[tw5] Re: removeprefix within tabs / tabslist

2020-11-25 Thread david.j.winfi...@gmail.com
That's great, thanks! Then all I have to do is <> On Wednesday, November 25, 2020 at 2:22:33 PM UTC-5 David Gifford wrote: > You can use a caption field for each tiddler to control what will be > displayed in the tab for that tiddler. So in $:/Chapter1/Section3 add a > caption field and type

Re: [tw5] Re: Image generated from the value of a field in a different tiddler

2020-11-25 Thread soren.b...@gmail.com
It's worth noting this isn't a TiddlyWiki thing, it's a general web thing. The alt text is a replacement for the image when it's not available (thus the word *alt*ernate), while the title text is a supplement to it providing more information. People often get confused and use the wrong one,

[tw5] Re: Image generated from the value of a field in a different tiddler

2020-11-25 Thread Eric Shulman
On Wednesday, November 25, 2020 at 9:35:25 AM UTC-8 Anthony wrote: > <$image source={{A!!structure_file}} alt={{A!!title}} /> > which I expected to would give the title of Tiddler A when the mouse > hovered over the image > As per the documentation (https://tiddlywiki.com/#ImageWidget), the

[tw5] Re: removeprefix within tabs / tabslist

2020-11-25 Thread David Gifford
You can use a caption field for each tiddler to control what will be displayed in the tab for that tiddler. So in $:/Chapter1/Section3 add a caption field and type Section3 in that field. It will display in the tab as Section3 On Wednesday, November 25, 2020 at 1:14:35 PM UTC-6

[tw5] removeprefix within tabs / tabslist

2020-11-25 Thread david.j.winfi...@gmail.com
Say if I have some tiddlers arranged something like $:/Chapter1 $:/Chapter1/Section1 $:/Chapter1/Section2 $:/Chapter1/Section3 And I would like to display them in tabs within the $:/Chapter1 tiddler to show all of the sections, but also trim off the first part of the path (so only show tab

Re: [tw5] Re: Image generated from the value of a field in a different tiddler

2020-11-25 Thread Javier Eduardo Rojas Romero
On Wed, Nov 25, 2020 at 09:35:25AM -0800, Anthony wrote: > So, I now have > > <$image source={{A!!structure_file}} alt={{A!!title}} /> > > which I expected to would give the title of Tiddler A when the mouse > hovered over the image (much as would occur with [img[description of >

[tw5] Re: Tiddlername as tag

2020-11-25 Thread 'Mark S.' via TiddlyWiki
There was a lot of things going on in your code that I didn't understand. I assume that the current tiddler is the same as "person" ? You use "type" in the definition, but not in the code. And "art" in the code but not in the definition. So I'm guessing you want something like the following.

[tw5] Re: TW-Shiraz plugin 2.1.2: Stable release

2020-11-25 Thread david.j.winfi...@gmail.com
Works great, I was able to update the color. Thanks! On Wednesday, November 25, 2020 at 9:34:12 AM UTC-5 odin...@gmail.com wrote: > Regarding your last question: > > You can edit the CSS of the footer in this tiddler: > $:/plugins/kookma/shiraz/styles/sticky-footer > Edit the line

[tw5] Re: TW-Shiraz plugin 2.1.2: Stable release

2020-11-25 Thread david.j.winfi...@gmail.com
Mohammad, I was able to install the Kookma library but didn't see Shiraz in the list. I see 11 plugins in the Kookma library (such as $:/plugins/kookma/commander) but I don't see $:/plugins/kookma/shiraz Within my TW I have shiraz installed by manually copying it in and it shows as

[tw5] Re: Web Clipper equivalent

2020-11-25 Thread arun babu
I would like to request for Tiddlyclip to support the outliner plug in streams. Title of the webpage or pdf being clipped should become the parent streams tiddler. Whatever is being clipped at a first instance should be added as the first child of parent streams tiddler. Next clipped items

[tw5] Re: Image generated from the value of a field in a different tiddler

2020-11-25 Thread Anthony
So, I now have <$image source={{A!!structure_file}} alt={{A!!title}} /> which I expected to would give the title of Tiddler A when the mouse hovered over the image (much as would occur with [img[description of file|folder/file.png]]). However, I note that the alt text only appears if the file

Re: [tw5] Competition for v5.1.23 artwork

2020-11-25 Thread springer
I've added Atronoush's elegant logo options to the page I set up, plus others from the thread above, so it would be easier to compare than here on the google page: https://springerspandrel.github.io/tw/logo-play.html On Wednesday, November 25, 2020 at 10:03:40 AM UTC-5 springer wrote: > If

Re: [tw5] Competition for v5.1.23 artwork

2020-11-25 Thread springer
If the 560x315 goes there, where the bottom gets cut off, then I'd submit this variant: [image: TiddlyWiki 5.1.23 keycaps-minimal.jpg] On Wednesday, November 25, 2020 at 9:17:34 AM UTC-5 Mohammad wrote: > I just dropped two of banners to compare and see how they look like! But > having in one

[tw5] Re: Color text based on a field

2020-11-25 Thread Eric Shulman
On Wednesday, November 25, 2020 at 5:33:22 AM UTC-8 sin...@gmail.com wrote: > I am trying to do something I thought would be easy, but it turned out not > to be: I want to color text on a tiddler with a color stored in a field. > The naive solution would look like: (color_field has the value

[tw5] Re: Emphasized theme and Tinka plugin style

2020-11-25 Thread Ton Gerner
Hi Wu Wei, The Emphasized theme overrides default button styles. After playing with palettes I can conclude the problem you mentioned with the Emphasized theme in combination with the Tinka plugin occurs with certain palettes. When you use the Emphasized theme with 'working' palettes like

Re: [tw5] Competition for v5.1.23 artwork

2020-11-25 Thread springer
Mohammad, Seeing the logo in the context of that use, where the bottom is effectively cropped off, seems to require that nothing vital be along the bottom there... At least in that mockup you made, Atro's modular orange banner certainly looks better. -Springer On Wednesday, November 25,

[tw5] Re: TW-Shiraz plugin 2.1.2: Stable release

2020-11-25 Thread odin...@gmail.com
Regarding your last question: You can edit the CSS of the footer in this tiddler: $:/plugins/kookma/shiraz/styles/sticky-footer Edit the line `background-color: #efefef; ` for a different color background. Add a line: color: <>; to change the text colors. Op dinsdag 24 november 2020 om

[tw5] Re: Passing macro output to another macro?

2020-11-25 Thread Petri M.
Oh and apparently using <$macrocall $name="list-tagged-draggable" itemTemplate="TODO task list template children" tag=<>/> will break the tags if the currentTiddler has spaces in its name. Putting quotes around the macro <> will just tag it with "<>" and not with "this is my current tag". BR,

Re: [tw5] Competition for v5.1.23 artwork

2020-11-25 Thread Jeremy Ruston
> Hi Jeremy, > Is it possible to have a tiddler https://tiddlywiki.com/prerelease/ called > Banner competition and containing all proposed artworks to be able to compare > candidate artworks? I’ll set up a Google Form for voting soon. tiddlywiki.com is really for

Re: [tw5] Competition for v5.1.23 artwork

2020-11-25 Thread Mohammad
Hi Jeremy, Is it possible to have a tiddler https://tiddlywiki.com/prerelease/ called Banner competition and containing all proposed artworks to be able to compare candidate artworks? Mohammad On Wednesday, November 25, 2020 at 5:25:45 PM UTC+3:30 jeremy...@gmail.com wrote: > Apologies,

Re: [tw5] Competition for v5.1.23 artwork

2020-11-25 Thread Jeremy Ruston
Apologies, another technicality to note is that the bottom 46 pixels will be obscured by the banner text “What’s new in v5.1.23”, so it’s best to keep important parts of the image higher up. Best wishes Jeremy > On 25 Nov 2020, at 13:43, Saq Imtiaz wrote: > > @springer excllent! Thank you.

[tw5] Re: Passing macro output to another macro?

2020-11-25 Thread Petri M.
Hi Tones, Ohh thank you so much! I looked into the <$macrocall/> and tried to use it directly with the <> macro and it worked perfectly. Well almost perfectly. There is one issue. If I use <$macrocall $name="list-tagged-draggable" tag=<>/> then everything works fine and I am able to make

Re: [tw5] Competition for v5.1.23 artwork

2020-11-25 Thread Saq Imtiaz
@springer excllent! Thank you. That one definitely has my vote. On Wednesday, November 25, 2020 at 2:20:51 PM UTC+1 springer wrote: > Saq, the aspect ratio 560x315 was a bit challenging, but with a bit of > rearranging it can work, and maybe even make the keycap association clearer: > > >

[tw5] Color text based on a field

2020-11-25 Thread sin...@gmail.com
Hello, I am trying to do something I thought would be easy, but it turned out not to be: I want to color text on a tiddler with a color stored in a field. The naive solution would look like: (color_field has the value "blue") @@color:{{!!color_field}}; bla @@ But that does not work. Is it

Re: [tw5] Competition for v5.1.23 artwork

2020-11-25 Thread springer
Saq, the aspect ratio 560x315 was a bit challenging, but with a bit of rearranging it can work, and maybe even make the keycap association clearer: https://springerspandrel.github.io/tw/logo-play.html#keycaps%20in%20560x315%20box On Wednesday, November 25, 2020 at 6:55:36 AM UTC-5

Re: [tw5] Competition for v5.1.23 artwork

2020-11-25 Thread Alex Hough
Hello All, I realise that this suggestion is a bit late in the day. Some ideas Set a release date to coincide with a date which already has some meaning to it. For example each edition could be released on a date where there is a new moon. Each release inherits concepts and metaphors associated

Re: [tw5] Using self-closing tags for widgets

2020-11-25 Thread soren.b...@gmail.com
Thanks Jeremy! On Wednesday, November 25, 2020 at 3:46:05 AM UTC-6 jeremy...@gmail.com wrote: > Hi Soren > > TW5 treats the following tags as void. This means that no terminating > is needed (indeed, if one is provided it will be ignored and treated > as plain text), and the syntax: > > >

Re: [tw5] Competition for v5.1.23 artwork

2020-11-25 Thread Saq Imtiaz
@springer if you have the time and the interest, a variant of " larger keycaps hint " that fits the required dimensions (560x315 ) would be interesting. On Wednesday, November 25, 2020 at 1:56:44 AM UTC+1 springer wrote: > Dave, done. (Visible, along with other variants with subtle keycap >

[tw5] Re: Query: German Alternative Naming Of TW Might Be Germane

2020-11-25 Thread 'Werner' via TiddlyWiki
Just out of curiosity: how would it be spelled in Norwegian? BTW, there's actually a song in Norwegian on heavy rotation at our regional public radio station: Mopedbart by the HubbaBubba Club TiddlyTweeter schrieb am Mittwoch, 25. November 2020 um 10:58:01 UTC+1: > Werner wrote: > >>

[tw5] Tiddlername as tag

2020-11-25 Thread Gerald Weis
I have the following problem. In a tiddler I wrote the title exactly as I did in the tag. Now I would like to insert the title as a tag name in a macro. However, ´´´ <$ list [tag [<>]] + [tag [$ art $]]> ``` does not work. at the moment my input looks like this. ``` << person-device-a

[tw5] Re: Query: German Alternative Naming Of TW Might Be Germane

2020-11-25 Thread TiddlyTweeter
thomas@gmail.com wrote: > TT, as a translator I would have to ask: Are you sure? Does that make > sense in English? – Let me suggest adaptations instead of translations. > Ciao Thomas I think your "phrase words" in German are very good! For me its a "first step" in a possible process.

[tw5] Re: Query: German Alternative Naming Of TW Might Be Germane

2020-11-25 Thread TiddlyTweeter
Werner wrote: > Eierlegende Wollmilchsau? > > > https://as1.ftcdn.net/jpg/00/36/38/70/500_F_36387075_1AdkFSD4FdbLTV8r4JDEeOSo1vjJTVqL.jpg > > Nails it pretty much, IMO, but somewhat hard to write for non-German > speakers... > Lol! It works in Norwegian too. TT -- You received this message

Re: [tw5] Using self-closing tags for widgets

2020-11-25 Thread Jeremy Ruston
Hi Soren TW5 treats the following tags as void. This means that no terminating is needed (indeed, if one is provided it will be ignored and treated as plain text), and the syntax: area,base,br,col,command,embed,hr,img,input,keygen,link,meta,param,source,track,wbr If you don’t close any

Re: [tw5] Competition for v5.1.23 artwork

2020-11-25 Thread Jeremy Ruston
> Dave, done. (Visible, along with other variants with subtle keycap imagery, > at the site, https://springerspandrel.github.io/tw/logo-play.html > ) > Just one stray thought: I wonder whether strings like 5.1.23 might (in some > places) get

[tw5] Re: TW-Shiraz plugin 2.1.2: Stable release

2020-11-25 Thread Mohammad
David, From Shiraz installation tiddler: https://kookma.github.io/TW-Shiraz/#Shiraz%20Plugin drag and drop $:/config/KookmaPluginLibrary into your wiki Then like installing official plugins, go to Control Panel,