[tw5] Re: Is it possible to apply conditional styling to links?

2021-08-08 Thread TW Tones
Great, Thanks for Sharing Brian TiddlyWiki Spinner. Tones On Monday, 9 August 2021 at 10:58:49 UTC+10 Brian Radspinner wrote: > Woah, > > I just realized that I can use this kind of thinking to flag tiddler > titles in the Recent tab with unicode characters to make them stand out > with

Re: [tw5] CSS for tooltips in TiddlyWiki?

2021-08-08 Thread TW Tones
The html title attribute can be used for tooltips WHO was founded in 1948. W3Schools.com Knowing this I found How to change the style of the title attribute inside an anchor tag?

Re: [tw5] Re: Notes from the Coalface: Pasting URL's with pretty title

2021-08-08 Thread TW Tones
Just to follow up - At the moment the permalink to a tiddler copies the encoded url, if you paste this anywhere else you keep the encoded link. - Click and it works however the pretty title is lost or non existent. - This copy only ever captures the encoded URL -

[tw5] Re: Shiraz Plugin: Lets use Tiddlywiki with More Ease

2021-08-08 Thread TW Tones
Yes all of the above, This kind of thing is often time consuming, Looking forward to it. Thanks in advance Tones On Monday, 9 August 2021 at 02:38:00 UTC+10 Mohammad wrote: > >- Do you like to convert your old static/plain table in a tiddler into >a sortable table just by calling a

[tw5] Re: Dreaming of "TidEdit", an in-browser TiddlyWiki WikiText editor

2021-08-08 Thread Charlie Veniot
I put together, for the giggles, a quick and dirty picture of what I'm thinking. A nice little HTML file that, when opened in the browser, shows a tiddler editor. So just a small text editor that allows entering TW wikitext markup, with a preview window. Well, a preview window that only

Re: [tw5] Re: Dreaming of "TidEdit", an in-browser TiddlyWiki WikiText editor

2021-08-08 Thread Charlie Veniot
Although that does look pretty sweet ... I have a Chromebook, which I rather like because of the lightness / minimalism of living in a web browser. Although I could install the Linux version of VSCode, it would be quicker for me to load a TiddlyWiki from Google Drive whenever I want to just

[tw5] Re: Highlighting duplicates in lists

2021-08-08 Thread paulgilbert2000
Thank you tones Will take me a while to understand all that . but it works like a charm , and its even more than what i have asked for thanks again:) On Sunday, August 8, 2021 at 7:31:10 AM UTC+2 TW Tones wrote: > Mohamad, > > I am happy to look at solving the problem presented but my

Re: [tw5] Re: Dreaming of "TidEdit", an in-browser TiddlyWiki WikiText editor

2021-08-08 Thread Joshua Fontany
If you want to skip loading a TW into memory, and just work on TID files, I would actually suggest VSCode and my TW5 Syntax plugin: https://marketplace.visualstudio.com/items?itemName=joshua-fontany.tw5-syntax This has hot-key shortcuts that allow you to create the block of metadata

[tw5] Re: Table-of-Contents Macros

2021-08-08 Thread springer
Stefan, The toc macro will sort tiddlers according to their current tag-specific order (stored in the list field of the tag's own tiddler). The most straightforward way to sort them differently is to find the tag-pill for the tag, click to show a "drop-down" list from the tag-pill, and drag

[tw5] Re: Shiraz Plugin: Lets use Tiddlywiki with More Ease

2021-08-08 Thread springer
Surely you mean v5.2.0 ;) Can't wait! -Springer On Sunday, August 8, 2021 at 12:38:00 PM UTC-4 Mohammad wrote: > >- Do you like to convert your old static/plain table in a tiddler into >a sortable table just by calling a macro (no edit, no hassles, ...) >- Do you like to drop a

[tw5] Re: cannot transclude a tiddler name built from inside a macro

2021-08-08 Thread Soren Bjornstad
The links I gave you were to my TiddlyWiki textbook, not the TW documentation. It might not be "self-contained" since it's intended to be in the context of the whole course, but I think you'll find it more useful than the TW documentation at your skill level. On Sunday, August 8, 2021 at

Re: [tw5] Re: cannot transclude a tiddler name built from inside a macro

2021-08-08 Thread CarloGgi
Thanks a lot Eric, valuable hints to better understand how TW works. Anyway, "whateveFilterHere" is just pseudo-code written here for the sake of simplicity. In my actual code there is a true filter, and it works fine, feeding the correct filtered list of tiddlers to the <$list> widget. Thanks

Re: [tw5] Re: cannot transclude a tiddler name built from inside a macro

2021-08-08 Thread Eric Shulman
\define getMeTiddlerName(a_suffix) $(currentTiddler)$$a_suffix$ In the macro definition above, $(currentTiddler)$ *substitutes the value from the currentTiddler variable* and then adds the specified $a_suffix$ parameter value. When you wrote this: <$list filter="whateveFilterHere">

[tw5] Re: cannot transclude a tiddler name built from inside a macro

2021-08-08 Thread CarloGgi
Yes Soren, you are right: I have little understanding of the inner gears of text substitution and wikification in TW, nor did I find a thorough, comprehensive and self-contained guide to the matter so far: all the TW documentation I went through is a mess of scantly-explained (if ever),

Re: [tw5] Re: Notes from the Coalface: Pasting URL's with pretty title

2021-08-08 Thread CJ Veniot
Yeah, I know what you mean especially with the %20's all over the place. That can be fairly easily resolved by sticking with camel case for tiddler names. I very much dislike camel case *(cognitive annoyances)* in my TiddlyWikis, so much so that I prefer live with those ugly %20's in links, to

Re: [tw5] Re: cannot transclude a tiddler name built from inside a macro

2021-08-08 Thread Carlo Giomini
Charlie, your solution worked fine! <$transclude tiddler={{{ [addsuffix[_EN]]}}} /> Still I wonder why the macro way doesn't yield the expected result, but anyway thanksalot for the hint. I will duly commit myself to studying its syntax, quite obscure to me. Regards, CG On Sun, Aug 8, 2021 at

Re: [tw5] Re: cannot transclude a tiddler name built from inside a macro

2021-08-08 Thread Carlo Giomini
Thanks for the prompt reply. I changed <> to $(currentTiddler)$ in the macro body, as \define getMeTiddlerName(a_suffix) $(currentTiddler)$$a_suffix$ still, transclude widget doesn't transclude: <$list filter="whateveFilterHere"> <$transclude tiddler=<> /> If I try to print to screen

[tw5] Re: Does anyone import Tailwind CSS into tiddlywiki?

2021-08-08 Thread Soren Bjornstad
Somewhat off-topic, but: > BTW, the "period" in front of class names always confuses me, sometimes I > need it, and other times no - ? > Class names don't include a period, but you need a period when you're using it in a CSS selector (the start of a CSS rule in a stylesheet that comes

[tw5] Re: Notes from the Coalface: Pasting URL's with pretty title

2021-08-08 Thread Soren Bjornstad
> > Um, there was no disagreement in this thread with Tones. > > Tones' initial post was about getting pretty links when the URL encoding > are ugly. I think that's great. *(Already a usual habit of mine, just > grabbing them links from the "Open" sidebar tab instead.)* > It sounded to me

[tw5] Re: cannot transclude a tiddler name built from inside a macro

2021-08-08 Thread Soren Bjornstad
I second CJ in saying that the {{{ [addsuffix[whatever]] }}} route is usually a better way to concatenate text, especially when you don't know much TiddlyWiki. You're getting bitten by not understanding text substitution and wikification

[tw5] Re: cannot transclude a tiddler name built from inside a macro

2021-08-08 Thread Charlie Veniot
I'm thinking most folk prefer the macro route, and that makes sense to me. The way I'm wired, I usually go with transclusions unless I really don't have a choice. Can't explain it. *For the "variety is the spice of life" giggles*: <$list filter="whateveFilterHere"> <$transclude

[tw5] Re: Shiraz Plugin: Lets use Tiddlywiki with More Ease

2021-08-08 Thread Charlie Veniot
That is a pretty fantastic teaser ! On Sunday, August 8, 2021 at 1:38:00 PM UTC-3 Mohammad wrote: > >- Do you like to convert your old static/plain table in a tiddler into >a sortable table just by calling a macro (no edit, no hassles, ...) >- Do you like to drop a CSV text file

[tw5] Shiraz Plugin: Lets use Tiddlywiki with More Ease

2021-08-08 Thread Mohammad Rahmani
- Do you like to convert your old static/plain table in a tiddler into a sortable table just by calling a macro (no edit, no hassles, ...) - Do you like to drop a CSV text file into tiddlywiki and in a second generate a dynamic table? - Do you like to copy paste part of a

[tw5] Re: cannot transclude a tiddler name built from inside a macro

2021-08-08 Thread 'Mark S.' via TiddlyWiki
When you use <>, it's actually creating a *link* to that tiddler. What you want in your macro is the plain substitutable (new word!) text. So try: \define getMeTiddlerName(a_suffix) $(currentTiddler)$$a_suffix$ On Sunday, August 8, 2021 at 9:08:29 AM UTC-7 CarloGgi wrote: > > Hallo, > quite

[tw5] Re: Notes from the Coalface: Pasting URL's with pretty title

2021-08-08 Thread Charlie Veniot
Um, there was no disagreement in this thread with Tones. Tones' initial post was about getting pretty links when the URL encoding are ugly. I think that's great. *(Already a usual habit of mine, just grabbing them links from the "Open" sidebar tab instead.)* I'm just trying to understand

[tw5] cannot transclude a tiddler name built from inside a macro

2021-08-08 Thread CarloGgi
Hallo, quite new to TW and I love it, though it is dramatically underdocumented and the whole docs are an almost unusable mess. To my biggest astonishment, when I try to dynamically build the name of a tiddler from inisde a macro, that macro output cannot be used from within a transclude

Re: [tw5] CSS for tooltips in TiddlyWiki?

2021-08-08 Thread David Gifford
Thanks Jeremy and flanc... 1. This is for me, so in this case I am not worried about other users with touchscreens, or compatibility. 2. Let me go about this another way, then. First, here is the styling I did to create the custom tooltip: a[title]:hover::after { content: attr(title);

Re: [tw5] CSS for tooltips in TiddlyWiki?

2021-08-08 Thread Finn Lancaster
Dave: On the lines of what Jeremy was saying, the Hint CSS Library is a great resource for customizable tool tips. (https://kushagra.dev/lab/hint/). Looking at the website, it seems relatively easy to use, and definitely applicable to TW, although I have never had need to use the library before.

Re: [tw5] CSS for tooltips in TiddlyWiki?

2021-08-08 Thread Jeremy Ruston
Hi Dave, Sadly, browsers do not allow web pages to apply styles to tooltips. It is possible to create fake tooltips in CSS and JavaScript that can be styled, but these approaches compromise accessibility and compatibility. Another point to bear in mind is that there's no guarantee that all

[tw5] CSS for tooltips in TiddlyWiki?

2021-08-08 Thread David Gifford
Hi everyone I would like to style the tooltip that comes up when hovering over a link. I tried a snippet I found online for regular tooltips, but that created a second tooltip, so both appear near each other. I would just like to style the one for TiddlyWiki links created with the link

[tw5] Re: Does anyone import Tailwind CSS into tiddlywiki?

2021-08-08 Thread 'JWHoneycutt' via TiddlyWiki
What I know so far: In the tiddler $:/plugins/kookma/shiraz/styles/semantic/bglowtone-colors Mohammad added the ability to change the background color of tiddlers - The tiddler above is tagged with $:/tags/Stylesheet - so it loads onto the entire TW5.html file - To use, create

[tw5] Re: Notes from the Coalface: Pasting URL's with pretty title

2021-08-08 Thread Soren Bjornstad
I agree with Tones, URLs should be human-readable when possible...if they're not, they're ugly. That means they consist of actual words, not internal IDs and random strings of characters, when possible, and you can tell what each component in the path represents. A bunch of URL-encoded

[tw5] Re: Retrieving the number of link paths to a tiddler

2021-08-08 Thread Soren Bjornstad
Thanks Tones! Looks like I may have been overthinking this – just :filter, working backwards from the match found and seeing when you hit the current tiddler, is sufficient: \define xcor-sort() [backlinks[]tag[Use]] :filter[links[]field:title] +[count[]] \define xcor-count()

Re: [tw5] Re: A Crazy Idea I had for a Plugin!

2021-08-08 Thread Finn Lancaster
Awesome, BurningTreeC and Joshua! I can add both of you as collaborators to the repo. First things first, I think we need to decide on a method of conversion from the JS I’ll upload to the specific method of usage in TW5. If anyone else has better ideas, let me know! I’m not really set on one

[tw5] Re: Notes from the Coalface: Pasting URL's with pretty title

2021-08-08 Thread strikke...@gmail.com
Charlie, I do not understand either. I find pretty links nice, but I also find it handy to be able to hover them and see where the link in fact are going to. Not all pretty things turns out to be gold. Luckily that is how it works ;-). Not Yuch, handy. Birthe On Sunday, August 8, 2021 at

Re: [tw5] Re: NoteTaking in Streams - hierarchy-preserving flattening in wikitext

2021-08-08 Thread strikke...@gmail.com
fred, Thank you so much for your streams-fusion plugin. Just what I wished for - do not know why it took me so long ;-) to find it. With lots of notes using streams it will be needed at times. it worked well in my wiki. Birthe On Friday, July 30, 2021 at 5:57:27 PM UTC+2 fred@gmail.com

[tw5] Feel free to ask me for help

2021-08-08 Thread bimlas
Dear all, I have to practice English, especially voice conversation. I would like to help to anyone who would like to implement his/her ideas, but don't know how to do. If you would like to talk about your problem, please write to me on TiddlyWiki Discord channel (https://discord.gg/wncV2z5)

Re: [tw5] Re: Shiraz 2.3.1 new update supports Node Explorer (bidirectional links)

2021-08-08 Thread ludwa6
Of course you are right, @Mohammad : it works on a clean install of current version from tiddlywiki.com... Even when loaded in TiddlyDesktop browser, which is my default. I had thought TD might have been the culprit, but no... So i am left w/o any theory of cause, and having to rebuild my wiki

Re: [tw5] Re: NoteTaking in Streams - hierarchy-preserving flattening in wikitext

2021-08-08 Thread ludwa6
Sounds like an interesting solution, @Maki, to a problem i also have, i.e. : How to get around the limitations of this mobile platform -Quine2 on iOS- to leverage the full power of TW+Streams application. Specifically: context menus requiring right-click (or control-click on Mac w/ 1 button

Re: [tw5] Re: A Crazy Idea I had for a Plugin!

2021-08-08 Thread BurningTreeC
Hi, I have some experience in WikiText and plugin authoring and I'd be glad to help where I can I'm BurningTreeC at GitHub joshua@gmail.com schrieb am Sonntag, 8. August 2021 um 06:32:05 UTC+2: > This is a really neat idea. I am terribly busy at work, and also with my > TW5 "multiplayer"

Re: [tw5] Re: NoteTaking in Streams - hierarchy-preserving flattening in wikitext

2021-08-08 Thread maki aea
just jumping in to share my experience with streams on mobile. i'm on an old iphone and i basically have tiddlywiki open all day using quine2. been using saq's streams lately with a tweaked shortcut to save tiddler+stream, shift+z. works really well for quick notetaking on ios. have customised

Re: [tw5] Re: Dreaming of "TidEdit", an in-browser TiddlyWiki WikiText editor

2021-08-08 Thread CJ Veniot
Nah, Chromebook. Half-a-dozen TiddlyWikis. All on Google Drive and accessed with TiddlyDrive. I don't really want to have all of them open all day for whenever I might have a thought. I much prefer throw notes in quickly loaded small/distraction-free apps, so it is just a quick trip to the

Re: [tw5] Re: Dreaming of "TidEdit", an in-browser TiddlyWiki WikiText editor

2021-08-08 Thread maki aea
hi i'm guessing you're on android? i'm on an old iphone and i basically have tiddlywiki open all day using quine2. been using saq's streams lately with a tweaked shortcut to save tiddler+stream, shift+z. works really well for quick notetaking on ios. have customised the layout quite a bit (

[tw5] Re: Notes from the Coalface: Pasting URL's with pretty title

2021-08-08 Thread Charlie Veniot
*"Although the link text looks nice, hover over it and look at the URL. Yuck!"* Thanks, but I still don't understand where The Islander was going with that. A URL is a URL. Not quite sure how it could be made prettier, or why it would matter when the link is pretty. On Sunday, August 8,