[tw5] Re: Rendering Multiple Tags

2020-09-07 Thread Taylor Jensen
This is perfect, I knew I needed to iterate I just didn't know how to do it. Thank you! On Monday, September 7, 2020 at 10:30:34 PM UTC-4 Eric Shulman wrote: > On Monday, September 7, 2020 at 7:00:06 PM UTC-7, Taylor Jensen wrote: >> >> What I'd like to do is create a list formatted *"Title *-

[tw5] Re: Rendering Multiple Tags

2020-09-07 Thread TW Tones
Also, Remember there is the tag macro <> But inside a list you may use <$macrocall $name=tag tag=<> /> Eric's solution is especially good if you want to add additional content along with the listed tag pills. For example add this in before the `` tag <$text text={{{ [tagcount[]] }}}/> Which

[tw5] Re: Rendering Multiple Tags

2020-09-07 Thread Eric Shulman
On Monday, September 7, 2020 at 7:00:06 PM UTC-7, Taylor Jensen wrote: > > What I'd like to do is create a list formatted *"Title *- tags of that > tiddler" > So we have the tag template `{{Transclusion||$:/core/ui/TagTemplate}}` > that lets me get "Transclusion" in nice tag pill form. > But

[tw5] Rendering Multiple Tags

2020-09-07 Thread Taylor Jensen
What I'd like to do is create a list formatted *"Title *- tags of that tiddler" So we have the tag template `{{Transclusion||$:/core/ui/TagTemplate}}` that lets me get "Transclusion" in nice tag pill form. But when I do: `<$list filter="[tag[mytag]]"> <$link

[tw5] Re: Number Format

2020-09-07 Thread TW Tones
Post script Actualy i think using simple templates to display a number in a desired format would be smart and the template can be changed to suit localisation if not automaticaly respond to localisation. Macro access to templates is also easy to provide. Tones On Tuesday, 8 September 2020 at

[tw5] Re: Number Format

2020-09-07 Thread TW Tones
Werner Perhaps some examples? Evans formulae plugin has features to support this from memory. There are other maths plugins that may. I can imagin a gap that exists between basic maths and the more advanced maths especialy in relation to display. However i can see these gaps would be easy to

[tw5] Re: Substories not working as expected

2020-09-07 Thread Eric Shulman
On Monday, September 7, 2020 at 12:14:36 PM UTC-7, Jorge wrote: > > I have created a tiddler that contains two substories. The code I used, I > just copied it from Tiddlywiki.com > The problem I encounter is that when I click on the first link to expand > [[Flowchart]], *both substories

[tw5] Re: Advice for new TW5 user regarding line breaks

2020-09-07 Thread JWHoneycutt
@BhKh I had the same problem. Here is my solution - not perfect, so suggested improvements welcomed: I have a tiddler with the tag: $:/tags/Stylesheet, and contents: [data-tags*="Linebreaks"] .tc-tiddler-body { word-break: normal; word-wrap: break-word; white-space: pre-wrap; } When I

[tw5] Substories not working as expected

2020-09-07 Thread Jorge
I have created a tiddler that contains two substories. The code I used, I just copied it from Tiddlywiki.com The problem I encounter is that when I click on the first link to expand [[Flowchart]], *both substories expand*, at the same time and with the same [[Flowchart]] substory. The same

[tw5] Number Format

2020-09-07 Thread 'Werner' via TiddlyWiki
Guys, am I right that there is no TW-inherent way to display a number format or, better, locale-specific number format? Wouldn't it be great if it was integral part of the <$view> widget, much like date format is? Is there an easy fix? I mean, without having to install another plugin just

[tw5] Re: How do I remove a suffix from a variable?

2020-09-07 Thread leeand00
Yes, that's much less verbose thank you! On Sunday, 6 September 2020 at 19:47:47 UTC-4 Eric Shulman wrote: > On Saturday, September 5, 2020 at 12:05:24 PM UTC-7, leeand00 wrote: > >> So I'm using a filter, and it's working great to remove the suffix and >> add another one...see below: >>

[tw5] Re: How do I remove a suffix from a variable?

2020-09-07 Thread leeand00
Okay I just used the Javascipt because I'm more familiar with it than the macros (which I don't know how to comment either), but I also because didn't know how to create the new tiddlers in Javascript from the template tiddlers. On Sunday, 6 September 2020 at 18:22:20 UTC-4 saq.i...@gmail.com

[tw5] Re: [Tiddly Research] Public release

2020-09-07 Thread kebi
*New update v1.1! https://github.com/kebifurai/TiddlyResearch/releases/tag/v1.1* *For everyone using Tiddly Research, it is recommended that you update to this new version.* How to update from v1.0: - Open your current wiki - Click on the "Export all" button situated on the topbar and

[tw5] Re: Installing plugins via drag and drop in nodejs

2020-09-07 Thread TW Tones
Thanks werner. I will build my own notes after trying this thanks Regards Tony On Monday, 7 September 2020 at 20:36:23 UTC+10 Werner wrote: > Tony, > > here's how I did it: > > - D installed the plugin in question. In my case, it was A. Aldrich's > Tables plugin. > - The result was two files

[tw5] Re: How to Record Data in Data Tiddler and Retrive It?

2020-09-07 Thread PMario
Hi James, I did create a project some years ago, which is completely documented, step by step on youtube. The intro thread has links to all the videos. You should start at the beginning with video1, but video 12

[tw5] Re: Installing plugins via drag and drop in nodejs

2020-09-07 Thread 'Werner' via TiddlyWiki
Tony, here's how I did it: - D installed the plugin in question. In my case, it was A. Aldrich's Tables plugin. - The result was two files in my tiddlers directory: $__plugins_aaldrich_tables.json and $__plugins_aaldrich_tables.json.meta. - Under my

[tw5] How to Record Data in Data Tiddler and Retrive It?

2020-09-07 Thread James
Hi all, I am looking for ways to capture entry of logs through a simple form, with only two fields date and log, and store the data in the data tiddler (e.g. JSON). After that, retrieve it using a list function and display it in a bullet point. I have read the document on Tiddlywiki.com,

[tw5] Re: Variables in title when clicking "New Tiddler" button?

2020-09-07 Thread TW Tones
Logan If you use actioncreate tIddler you can set a base title. If the tiddller already exists it increments a number in the title. You can even retrive the title that was created. Regards Tony On Monday, 7 September 2020 at 02:02:15 UTC+10 logan...@tufts.edu wrote: > Hi all, > > I've spent

[tw5] Re: How to show a list of tiddlers linked or transcluded or used inside via macro in the tiddler?

2020-09-07 Thread TW Tones
Talha Nothing is imposible and we know the relink plugin can rename transclusions. the key is to extract all the titles betwen the double curly braces found in the text field. Perhaps i will do this if no one presents and existing solution. Regards Tony On Monday, 7 September 2020 at 09:13:35

[tw5] Create a global keyboard shortcut for "More actions" dropdown

2020-09-07 Thread Tejasvi S Tomar
I looked into How to create keyboard shortcuts . I don't know how to create a macro to trigger $:/core/ui/Buttons/more-tiddler-actions. If it matters, I am using Drift's Zoomin story view. -- You received

[tw5] Re: What is the purpose of source field in a tiddler?

2020-09-07 Thread TiddlyTweeter
talha131 and PMario "source" is fine to use as you need in most tiddlers. It has special meaning, I believe, in plugins only (PMario?) The TW ADVICE is ... *source = The source URL associated with a tiddler* You can interpret this liberally. For instance, I have use it not for URLs, but

[tw5] Re: What is the purpose of source field in a tiddler?

2020-09-07 Thread PMario
Hi, There is only 1 field that you have to use to create a valid tiddler. The "title". That's it. Every other field name is just a convention. https://tiddlywiki.com/#TiddlerFields shows all fields that are used by core tiddlers. As far as I know, It's OK to use source. Especially as you

[tw5] Re: Few question about using @@ construction to style the tiddlers

2020-09-07 Thread Brian Radspinner
Just to give another option, you can nest @@..@@ by adding some HTML around the nested @@...@@: @@list-style-type:decimal; # line # line ** @@list-style-type:lower-alpha; # line # line @@ ** @@ Proper CSS work is probably better, but this could work for quick one-off nested styling. On