Re: [tw5] Re: Curious behavior

2021-05-10 Thread Damon Pritchett
No harm, no foul. I appreciate the tips as always. Any thoughts on the code? On Mon, May 10, 2021 at 8:48 PM TW Tones wrote: > Concatenate (at the end) is "adding a suffix almost by definition". I call > it a suffix in this case because it clearly only comes at the end. and > using the suffix

[tw5] Re: Some coding fun: dump a tiddler line-by-line into a data tiddler

2021-05-10 Thread TW Tones
Cj Remember its possible to do this [[some tiddler]get[text]splitregexp[\n]] to separate the lines. Rather than split Tones On Tuesday, 11 May 2021 at 13:31:59 UTC+10 cj.v...@gmail.com wrote: > Just scratching a coding itch. > > Modify the code in the button, changing the "Some Tiddler"

Re: [tw5] Re: Demystify drag-N-drop in Tiddlywiki

2021-05-10 Thread Mohammad Rahmani
On Tue, May 11, 2021 at 1:00 AM TiddlyTweeter wrote: > Mohammad wrote: > >> Hi TT, >> > > >> In my own testing so far this more minimal regex seems to work ... !! >>> >>>- pattern="^\ *(https?|ftp|file|news|data|mailto):.+$ >>> >>> Lovely! one minor comment: >> >> 1. I like to check the

Re: [tw5] Re: A basket on the sidebar

2021-05-10 Thread Mohammad Rahmani
On Tue, May 11, 2021 at 4:18 AM TW Tones wrote: > Mohammad, Hi Tony, > > I would like to know more about this subcategory issue for plugins. > > However id this in the direction of which you speak?, my own solution is > to give a plugin a new plugin-type field value, such as data (not

Re: [tw5] Re: Curious behavior

2021-05-10 Thread TW Tones
Concatenate (at the end) is "adding a suffix almost by definition". I call it a suffix in this case because it clearly only comes at the end. and using the suffix operators is a way to concatenate. Please not I did not review the code you presented, just thought these tips may help. Regards

Re: [tw5] A tour through my Zettelkasten

2021-05-10 Thread Mohammad Rahmani
Hi Soren, On Tue, May 11, 2021 at 2:45 AM Soren Bjornstad wrote: > On Monday, May 10, 2021 at 2:43:34 PM UTC-5 Mohammad wrote: > >> One question: How do you select the categories in the Write tab? I mean >> for Ztellkasten point of view? >> I watch the viedo but not quite understand your

[tw5] Some coding fun: dump a tiddler line-by-line into a data tiddler

2021-05-10 Thread Charlie Veniot
Just scratching a coding itch. Modify the code in the button, changing the "Some Tiddler" instances to an existing tiddler in your TiddlyWiki. (I've been playing with TiddlyWiki.com for the giggles.) Put this code in some tiddler and save the tiddler. Then, press the button, and take a look

Re: [tw5] Re: Curious behavior

2021-05-10 Thread Damon Pritchett
Thanks Tones, I’ve used limit in the past so am familiar with it. However, I’m not understanding how it applies here. I’m not adding the filename as a suffix in a filter (unless I’m really missing something which may be the case). I’m using a small macro to concatenate the path with the filename.

[tw5] Re: Curious behavior

2021-05-10 Thread TW Tones
That result is common when your list is generating more instances that you expected. It suggest an error in your code. A Quick fix may be to introduce +[limit[1]] in the filter generating it. In this case we can see the problem is before adding the suffix image.jpg Tones On Tuesday, 11 May

[tw5] Re: A Prototype of UID's for stable permalinks

2021-05-10 Thread Charlie Veniot
The beauty of your link is that it is obvious what the link is for. That really is a great thing. Which I know I would eventually break because I am always slightly tweaking everything towards titles/names/descriptions that better fit changing scope/circumstances/you-name-it. With a wee

[tw5] Re: A Prototype of UID's for stable permalinks

2021-05-10 Thread TW Tones
Try this; https://tiddlywiki.com/#:[description[Browser extension for Firefox]] If you could rename and save this tiddler, it will still work until you modify the description or clone the tiddler. Eureka! I think I have finally come up with a simple, total, robust solution to permalinks,

[tw5] Re: Curious behavior

2021-05-10 Thread History Buff
Sorry, I attempted to describe it in words which wasn't sufficient. What I want to result is the following (assume the filename is image.jpg): ./Archival_image/image.jpg What I actually get is this:

Re: [tw5] Re: Missing transcluded tiddlers question

2021-05-10 Thread Charlie Veniot
Good stuff. I'll keep that in mind should I find I need to make the move. Thanks, Tones. On Monday, May 10, 2021 at 9:55:43 PM UTC-3 TW Tones wrote: > Charlie, > > This was one motivation for me to go to my own hosting decades ago because > my sites disappeared because of others bad

Re: [tw5] Re: Missing transcluded tiddlers question

2021-05-10 Thread TW Tones
Charlie, This was one motivation for me to go to my own hosting decades ago because my sites disappeared because of others bad behaviour a few times. Owning a domain also reduces this likelihood. However recently a clients site was blacklisted because of a hack in the microsoft email/outlook

[tw5] Re: Curious behavior

2021-05-10 Thread TW Tones
Do share an example of the "corrupt values", if could point to the problem without jumping into the code, or will this code work on tiddlywiki.com, if not can you make it? Tones On Tuesday, 11 May 2021 at 06:58:28 UTC+10 History Buff wrote: > All, > > I have a macro that has several edit text

Re: [tw5] How to show N symbols based on numeric tiddler field value

2021-05-10 Thread TW Tones
jack, In my view the *list widget is the core of tiddlywiki 5 *as the For Each Tiddler plugin for for tiddlywiki classic. The world and tiddlywiki can be handled using lists or sets so do trust in the fact that filters and the list widget are the most essential tiddlywiki constructs. But

Re: [tw5] Is blockchain still not for TW?

2021-05-10 Thread TW Tones
If I may remind all, block chain is simply an algorithm, it can be used in many ways including in ways counter to its well known applications, such as cryptocurrencies. A Distributed Ledger can serve many functions and you can have open transactions that a fully traceable, in fact that is a

[tw5] Re: String manipulations on textarea input

2021-05-10 Thread TW Tones
Quick tips - Text areas have lines delimited by \n - if you have the text in a filter you can use splitregexp[\n]] to split it into each line, then split again on split[:]] to get the first[] item or the fieldname:value - text must be handled differently as its multiline.

[tw5] Re: Using formulas plugin result in <$reveal widget

2021-05-10 Thread TW Tones
Quick tip If you get your number into a variable you can then use the sign operator you could then have two or three css classes defined and have a filter determine which of these three css classes to apply to the display of the number, or use the

[tw5] Re: Options for keeping revision history?

2021-05-10 Thread TW Tones
Si, Another approach or source on inspiration may be the core plugin *Save Trail*: Automatically download modified tiddlers which says; *This plugin causes TiddlyWiki to continuously download (as a JSON file) the contents of any tiddler that is manually

Re: [tw5] Re: A basket on the sidebar

2021-05-10 Thread TW Tones
Mohammad, I would like to know more about this subcategory issue for plugins. However id this in the direction of which you speak?, my own solution is to give a plugin a new plugin-type field value, such as data (not plugin). Then Its simple to duplicate one of the existing plugin tabs to

Re: [tw5] Re: A basket on the sidebar

2021-05-10 Thread TW Tones
Mario, Yes, I remember the open story though not the details, I need to look it up again. I recall this because I had ideas to make lists and stories easier to implement, less as a UI feature and more as a functionality issue. I think while I now see all Aspects of the technical feasibility

Re: [tw5] [Announcement] Sydney TWIG - TiddlyWiki Interest Group

2021-05-10 Thread TW Tones
Thanks Jeremy, All. Let us see if I can encourage more people in the Group to join and contribute. If there are other TWIG's or otherwise named meetups. perhaps the hosts could let me know of their knowledge and experience running these and publicising them. Tegared Tones/Tony On

Re: [tw5] A tour through my Zettelkasten

2021-05-10 Thread Soren Bjornstad
On Monday, May 10, 2021 at 2:43:34 PM UTC-5 Mohammad wrote: > One question: How do you select the categories in the Write tab? I mean > for Ztellkasten point of view? > I watch the viedo but not quite understand your philosophy here! > I'm not sure I understand the question – are you asking

[tw5] Re: Options for keeping revision history?

2021-05-10 Thread Soren Bjornstad
Ah, fair enough. On Monday, May 10, 2021 at 3:42:48 PM UTC-5 Anjar wrote: > @Soren you're right, I was only thinking on the single file edition where > it would be difficult to follow a tiddler across time if the title is > changed > > mandag 10. mai 2021 kl. 21:07:19 UTC+2 skrev Soren

[tw5] Using formulas plugin result in <$reveal widget

2021-05-10 Thread tru...@gmail.com
Hi! First time posting. I've been trying to figure this out all day, but I have to concede I won't figure it out. My first big TW project is this personal budget calculator: https://trumad.github.io/budgetlywiki/ I'd really love to make the "Budget delta" result green when it's a positive

[tw5] Re: [Announcement] Sydney TWIG - TiddlyWiki Interest Group

2021-05-10 Thread David Gifford
oooh 4am Mexico City time. Have a great meeting without me! On Sunday, May 9, 2021 at 9:22:44 PM UTC-5 TW Tones wrote: > Folks, > > I just want to let you know I have just invested in Meetup > and Zoom > accounts to start a Sydney

Re: [tw5] Re: A basket on the sidebar

2021-05-10 Thread PMario
Hi Tony, Reading this reminds me about may "open-story" plugin. Not 100% the same, but imo it's close. The disadvantage atm is that the UI isn't understood very well. -mario -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe

[tw5] Curious behavior

2021-05-10 Thread History Buff
All, I have a macro that has several edit text widgets and a button to save these inputs to the fields of a newly created tiddler (see code below). I'm having some issues with one particular field, namely the archive field. The input is the filename of the image and what should be placed in

[tw5] Re: $tw.wiki.renderTiddler("text/html", tiddler); & templates

2021-05-10 Thread James Anderson
thanks again. For future google searchers: ``` var target = _this.document.createElement("div"); var tiddler = "the name of the tiddler you want to transclude"; .. var t = $tw.wiki.makeTranscludeWidget(tiddler, {document:document}); target.innerHTML = ""; t.render( target, null); ``` On Monday,

[tw5] Re: Options for keeping revision history?

2021-05-10 Thread Anjar
@Soren you're right, I was only thinking on the single file edition where it would be difficult to follow a tiddler across time if the title is changed mandag 10. mai 2021 kl. 21:07:19 UTC+2 skrev Soren Bjornstad: > On Monday, May 10, 2021 at 9:10:40 AM UTC-5 Anjar wrote: > >> Git isn't able

[tw5] Re: $tw.wiki.renderTiddler("text/html", tiddler); & templates

2021-05-10 Thread Saq Imtiaz
I recommend looking at the source code for that method, as well as how it is used other places in the core. Either use grep on the command line, or the github search is actually pretty good: https://github.com/Jermolene/TiddlyWiki5/search?q=makeTranscludeWidget If you get stuck and still

Re: [tw5] Re: Demystify drag-N-drop in Tiddlywiki

2021-05-10 Thread TiddlyTweeter
Mohammad wrote: > Hi TT, > > In my own testing so far this more minimal regex seems to work ... !! >> >>- pattern="^\ *(https?|ftp|file|news|data|mailto):.+$ >> >> Lovely! one minor comment: > > 1. I like to check the validity of links! So if one drops something > like this

[tw5] Re: $tw.wiki.renderTiddler("text/html", tiddler); & templates

2021-05-10 Thread James Anderson
Thanks, what does $tw.wiki.makeTranscludeWidget("fig"); actually return? what should i be setting the contents of my DOM node to with the object returned from this? Thanks, James On Monday, 10 May 2021 at 13:56:31 UTC+1 saq.i...@gmail.com wrote: > Make a parse tree including a transclude

Re: [tw5] Is blockchain still not for TW?

2021-05-10 Thread Jon
Just in case this is of interest - seems to be quite cutting edge https://qortal.org/ On Monday, 10 May 2021 at 21:08:25 UTC+1 hww...@gmail.com wrote: > Thanks for the reply. It will ceratinly help me to think of these as > distinct technologies, at least until I get a bit more "han(d)s-on"

Re: [tw5] Is blockchain still not for TW?

2021-05-10 Thread Hans Wobbe
Thanks for the reply. It will ceratinly help me to think of these as distinct technologies, at least until I get a bit more "han(d)s-on" experience :-) On Monday, May 10, 2021 at 12:35:24 PM UTC-4 inmy...@gmail.com wrote: > A distributed ledger and a blockchain are distinct technologies.

Re: [tw5] A tour through my Zettelkasten

2021-05-10 Thread Mohammad Rahmani
Hi Soren, One question: How do you select the categories in the Write tab? I mean for Ztellkasten point of view? I watch the viedo but not quite understand your philosophy here! Also the Explorer while we have the More Tab! [image: image.png] I like to adopt the tiddler reference explorer in

Re: [tw5] How to show N symbols based on numeric tiddler field value

2021-05-10 Thread Jack Baty
Mohammad, This also solves the thing I was just working on, and that is hiding stars when there is no rating. Nice! Thanks to both of you for helping with this. I've got so much to learn. Jack On Monday, May 10, 2021 at 3:15:02 PM UTC-4 Mohammad wrote: > Hi Jack, > If you want to keep

Re: [tw5] Re: Demystify drag-N-drop in Tiddlywiki

2021-05-10 Thread Mohammad Rahmani
On Mon, May 10, 2021 at 11:42 PM TiddlyTweeter wrote: > Ciao Mohammad > > To clarify, I worked a bit to get the tool to first post to a temporary > you can edit ... > > This is JUST a visual demo of the *general idea to edit before save??* > WOW, very nice! The possibility to edit the title in

Re: [tw5] Re: Demystify drag-N-drop in Tiddlywiki

2021-05-10 Thread Mohammad Rahmani
On Mon, May 10, 2021 at 4:04 PM TiddlyTweeter wrote: > Ciao Mohammad Hi TT, > > In my own testing so far this more minimal regex seems to work ... !! > >- pattern="^\ *(https?|ftp|file|news|data|mailto):.+$ > > Lovely! one minor comment: 1. I like to check the validity of links! So if

Re: [tw5] Re: Demystify drag-N-drop in Tiddlywiki

2021-05-10 Thread Mohammad Rahmani
Thank you Jeremy and TT for the hints! I will give a try! Best wishes Mohammad On Mon, May 10, 2021 at 3:29 PM TiddlyTweeter wrote: > jeremy...@gmail.com wrote: > >> Sadly, browsers do not allow JavaScript code running in TiddlyWiki to >> obtain the window title corresponding to a particular

Re: [tw5] How to show N symbols based on numeric tiddler field value

2021-05-10 Thread Jack Baty
Well look at that, it works! I'm not sure I would have ever gotten there on my own, so thank you. It's just single-bracket macro calls in a filter inside a "super" transclusion as a macro parameter. Simple! . I'll understand all this, eventually, I hope. Thanks for the video link. I've been

Re: [tw5] Re: Demystify drag-N-drop in Tiddlywiki

2021-05-10 Thread TiddlyTweeter
Ciao Mohammad To clarify, I worked a bit to get the tool to first post to a temporary you can edit ... This is JUST a visual demo of the *general idea to edit before save??* JUST thoughts, TT [image: Screenshot 2021-05-10 210424.jpg] On Monday, 10 May 2021 at 13:34:09 UTC+2 TiddlyTweeter

[tw5] Re: Options for keeping revision history?

2021-05-10 Thread Soren Bjornstad
On Monday, May 10, 2021 at 9:10:40 AM UTC-5 Anjar wrote: > Git isn't able to take care of title changes Really? Git normally detects renames just fine unless you massively change the contents at the same time you change the filename. I found some examples in my own folder wiki controlled by

Re: [tw5] How to show N symbols based on numeric tiddler field value

2021-05-10 Thread Soren Bjornstad
I think you want: ``` <$macrocall $name="getStars" numstars={{{ [get[rating]] }}} /> ``` Worked for me in the wiki you linked. Also, it looks like you've got this figured out, but I have an example of an implementation of a star rating in one of my YouTube videos if you're curious:

Re: [tw5] How to show N symbols based on numeric tiddler field value

2021-05-10 Thread Jack Baty
Mohammad, Thank you! Your sample helps me understand how to do this kind of rendering, though, which is great. (I still seem to overlook using $list for seemingly everything). I'm using Tobias' rate plugin for setting and displaying the ratings on individual tiddlers and it works well. I'm

Re: [tw5] Is blockchain still not for TW?

2021-05-10 Thread Jed Carty
A distributed ledger and a blockchain are distinct technologies. You can use a blockchain to build a verifiable distributed ledger (verifiable in the sense of being able to detect tampering after data has been entered, there aren't any checks on the validity of the source data), but it is far

Re: [tw5] How to show N symbols based on numeric tiddler field value

2021-05-10 Thread Mohammad Rahmani
Hi Jack, The Vote plugin from Kooma Library do rating and you can retrieve stars and compare and analyse! But if you want your simplest solution the below is one! Wait for better, I sure you will get alternatives \define getStars() <$list filter="[range[1,$(vl-stars)$]]">* <$list

Re: [tw5] Re: A basket on the sidebar

2021-05-10 Thread Mohammad Rahmani
On Mon, May 10, 2021 at 6:59 PM David Gifford wrote: > Hi Mohammad - FYI, I did the sidebar in edit-text so that I could also > edit a tiddler in the story river and transfer content including formatting > from one to the other. > Dave, Lovely! This makes to be more productive! > > On

[tw5] How to show N symbols based on numeric tiddler field value

2021-05-10 Thread Jack Baty
I have a "rating" field that contains a number from 1-5. When generating a table (or list) of rated tiddlers, I want to display the rating as a number of stars. e.g. ★★ or ★★★ etc corresponding to the value in rating for each tiddler. For the life of me, I can't figure out how to do this. Is

Re: [tw5] Re: A basket on the sidebar

2021-05-10 Thread David Gifford
Hi Mohammad - FYI, I did the sidebar in edit-text so that I could also edit a tiddler in the story river and transfer content including formatting from one to the other. On Monday, May 10, 2021 at 3:37:27 AM UTC-5 Mohammad wrote: > Hi David, > > On Mon, May 10, 2021 at 12:09 AM David Gifford

[tw5] Re: Options for keeping revision history?

2021-05-10 Thread Anjar
Non-plugin alternatives include git and sqlite ; both will keep the wiki size low, but neither will have the history directly available in the wiki. Git isn't able to take care of title changes, whereas the SQLite-history follows the toddler (but it needs

Re: [tw5] Is blockchain still not for TW?

2021-05-10 Thread Hans Wobbe
I remain interested in Distributed Ledger Technology much more than I am interested in BitCoin and its other financial derivatives, that even Central Banks are considering as Cash replacements. ( And I am not at all interested in NFTs since the Name says it all ... "Non Fungible" ... ) One

[tw5] Re: $tw.wiki.renderTiddler("text/html", tiddler); & templates

2021-05-10 Thread Saq Imtiaz
Make a parse tree including a transclude widget or look at the wiki.makeTranscludeWidget method. On Monday, May 10, 2021 at 2:32:03 PM UTC+2 james.w@gmail.com wrote: > in a tiddler {{fig}} works transcluded into another widget, so i guess i'm > asking : what it the widget way of

[tw5] Re: Options for keeping revision history?

2021-05-10 Thread si
Thanks Mario for the comprehensive reply. I have decided to create my own history-saving macro, which I will use only in specific instances, rather than across my whole wiki. For now I'm just saving data, I will worry about other features in the future. This is what I have at the moment:

[tw5] Re: $tw.wiki.renderTiddler("text/html", tiddler); & templates

2021-05-10 Thread James Anderson
in a tiddler {{fig}} works transcluded into another widget, so i guess i'm asking : what it the widget way of performing/rendering a transclusion? On Sunday, 9 May 2021 at 19:24:54 UTC+1 James Anderson wrote: > Hello, > > I'm trying to render a tiddler within another tiddler via a widget. I

Re: [tw5] Re: Missing transcluded tiddlers question

2021-05-10 Thread Charlie Veniot
That makes sense. Who knows what kind of nefarious junk can be sitting in any one subdomain. Yeah, last I checked in with network folk in my old job, so much easier to blacklist an entire site and put all staff in a position of filing an exception for each subdomain. Molasses-like process

Re: [tw5] Re: Demystify drag-N-drop in Tiddlywiki

2021-05-10 Thread TiddlyTweeter
Ciao Mohammad In my own testing so far this more minimal regex seems to work ... !! - pattern="^\ *(https?|ftp|file|news|data|mailto):.+$ With something like this ... - {{{

[tw5] Re: String manipulations on textarea input

2021-05-10 Thread Antonis Lamnatos
Ah yes, thanks for reminding me. Although it was purely for showing how I want to split the date per field. I haven't yet reached the point where I'm trying to reference actual fields. I'm trying to see if some or even most of what I've described can be achieved with <$list filter>-ing through

[tw5] Re: Demystify drag-N-drop in Tiddlywiki

2021-05-10 Thread TiddlyTweeter
si wrote: > @TT I'm also finding that it doesn't work in Firefox (v88, Windows 10). > Right. There is some kind of *Obscure Issue* on Firefox. I think it looks like it is more fussy than Chrome on canonical url syntax? NOT SURE. Testing will eventually bring it out I'm sure. Current

Re: [tw5] Re: Demystify drag-N-drop in Tiddlywiki

2021-05-10 Thread TiddlyTweeter
jeremy...@gmail.com wrote: > Sadly, browsers do not allow JavaScript code running in TiddlyWiki to > obtain the window title corresponding to a particular URL. > > A different approach that could work is to write a bookmarklet that runs > in the context of the page being bookmarked; it would

Re: [tw5] Re: A basket on the sidebar

2021-05-10 Thread Mohammad Rahmani
On Mon, May 10, 2021 at 10:12 AM TW Tones wrote: > Further feature extensions; > >- The ability to build cumulative json tiddlers or plugins. >- A Cumulative plugin would allow you to drop titles on a basket, >click to create a plugin. then add additional tiddlers and update it, and

Re: [tw5] Re: Demystify drag-N-drop in Tiddlywiki

2021-05-10 Thread Jeremy Ruston
Sadly, browsers do not allow JavaScript code running in TiddlyWiki to obtain the window title corresponding to a particular URL. A different approach that could work is to write a bookmarklet that runs in the context of the page being bookmarked; it would have full access to the page content,

[tw5] Re: String manipulations on textarea input

2021-05-10 Thread PMario
Hi, *Field names *have to be *lowercase *only. -m On Monday, May 10, 2021 at 11:25:48 AM UTC+2 lamn...@gmail.com wrote: > I'm moving my personal journal written in markdown files into Tiddlywiki. > I'm looking for a way to perform string/text manipulation on the input of > an <$edit-text>. > >

[tw5] String manipulations on textarea input

2021-05-10 Thread Antonis Lamnatos
I'm moving my personal journal written in markdown files into Tiddlywiki. I'm looking for a way to perform string/text manipulation on the input of an <$edit-text>. Currently, each entry starts with a ##header which was the date the entry was written. A blank line follows and then one or more

Re: [tw5] Is blockchain still not for TW?

2021-05-10 Thread Jed Carty
or perhaps I am being too hard on the idea. Instead if you all want I can add blockchain to tiddlywiki and sell NFTs pointing to wikis that I made, like the original twederation wiki or the interaction fiction wiki. On Monday, May 10, 2021 at 10:54:03 AM UTC+2 Jed Carty wrote: > Yes, the

Re: [tw5] Re: Demystify drag-N-drop in Tiddlywiki

2021-05-10 Thread TiddlyTweeter
Ciao Mohammad & si-matthew si wrote: > >> @Mohammad Really nice! I've stayed away from drag and drop up until now, >> so I look forward to seeing what you come up with. >> >> The bookmarker is a great example. It works particularly well in Vivaldi >> if you have your wiki open in the sidebar

Re: [tw5] Is blockchain still not for TW?

2021-05-10 Thread Jed Carty
Yes, the central question is could blockchain be useful to tiddlywiki. And so far the only answer has been to use it as a proof of existence by storing what is in one blockchain (file hashes in git) in a different from in another block chain. Also, traceability in a blockchain is guaranteed

Re: [tw5] Re: A basket on the sidebar

2021-05-10 Thread Mohammad Rahmani
Tones, Some of these are already implemented in the attached basket solution above! The basket by Morosanuae is also very appealing! Loot at its nice design and try its different features! https://morosanuae.github.io/tw-icons/ You should consider Basket as a shopping basket ;-) with one

Re: [tw5] Re: A basket on the sidebar

2021-05-10 Thread Mohammad Rahmani
Hi David, On Mon, May 10, 2021 at 12:09 AM David Gifford wrote: > Thanks Mohammad, works great! I even figured out how to turn the text > field into a large edit-text area, and I moved the clear box button next to > the tiddler title link, to clear up some vertical space. See attached image.

Re: [tw5] Re: Demystify drag-N-drop in Tiddlywiki

2021-05-10 Thread Mohammad Rahmani
On Mon, May 10, 2021 at 12:58 AM si wrote: > @Mohammad Really nice! I've stayed away from drag and drop up until now, > so I look forward to seeing what you come up with. > > The bookmarker is a great example. It works particularly well in Vivaldi > if you have your wiki open in the sidebar - no

Re: [tw5] Re: Demystify drag-N-drop in Tiddlywiki

2021-05-10 Thread Mohammad Rahmani
Best wishes Mohammad On Mon, May 10, 2021 at 10:52 AM TW Tones wrote: > Mohammad, > > I dropped rev02 on triddlywiki.com and its a not working, the only > symptom I see is the green download bar is displayed. > Tones, I checked the rev02 again! It works! Note only drag and drop a valid link!

Re: [tw5] Re: Demystify drag-N-drop in Tiddlywiki

2021-05-10 Thread TW Tones
Mohammad, I dropped rev02 on triddlywiki.com and its a not working, the only symptom I see is the green download bar is displayed. Tones On Sunday, 9 May 2021 at 15:53:07 UTC+10 Mohammad wrote: > Hi TT, > Good to read your reply! I was writing you and I saw your email > >1. the regex is