Re: [tw5] How to use a tag with spaces in tm-new-tiddler message?

2020-10-10 Thread talha131
I just tried setting the value of my tiddler $:/talha131/config/NewHighlight/Tags [[✨ highlight]] and it solved the issue. But I would still like to know how to use spaces in tags=<> syntax? ​ -- You received this message because you are subscribed to the Google Groups "Tiddly

Re: [tw5] How to use a tag with spaces in tm-new-tiddler message?

2020-10-10 Thread talha131
for the action is this <$vars journalTitleTemplate={{$:/talha131/config/NewHighlight/Title}} journalTags={{$:/talha131/config/NewHighlight/Tags}} journalText={{$:/talha131/config/NewHighlight/Text}}> <$wikify name="journalTitle" text="""<$macrocall $name="no

Re: [tw5] How to use a tag with spaces in tm-new-tiddler message?

2020-10-10 Thread talha131
Thank you. This worked. But what syntax should I use if the tag is defined inside a variable journalTags. I have tried tags="[[<>]]"" and tags="[[$journalTags$]]"" Both did not work. ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To

[tw5] How to use a tag with spaces in tm-new-tiddler message?

2020-10-10 Thread talha131
I want to use send message to create a tiddler with a tag. Tag must have two words separate by space, for example "hello world" I tried ```html <$action-sendmessage $message="tm-new-tiddler" title=<> tags="hello world" text={{{ [get[]] }}}/> ``` But the tiddler it makes has two tags, "hello"

[tw5] Re: [Theme] Mono - Bullets not rendering

2020-10-04 Thread talha131
To fix this bug do this Create a new tiddler. Write in it ul, li { list-style-position: inside; } Tag it with $:/tags/Stylesheet. This should fix the issue. You might want to put all these rules in there too, but it is not necessary. ul, li { list-style-position: inside; }

[tw5] Re: Is there any program associated with TiddlyWiki?

2020-10-03 Thread talha131
1. Run TiddlyWiki from NodeJS 2. Access the TiddlyWiki URL from your Android browser 3. Make sure your TW theme works on mobile 4. Create a new tiddler 5. Save B/c you are accessing it from NodeJS server, the changes will automatically be saved on to your server. -- You received this message

[tw5] Re: [Theme] Mono - Bullets not rendering

2020-10-03 Thread talha131
> Anyone have any experience in fixing this? Fixing what? When your enable the checkbox, the bullets and numbers start to work as usual. I cannot speak for JD, who is the author of the theme. But I think she uses Mono them with the Drift plugin, which is why you see this behavior. --

Re: [tw5] Is there a way to recreate tiddlywiki.info file?

2020-10-03 Thread talha131
If you have your old wiki (the one whose tiddlywiki.info got deleted) in HTML format, like from a backup, then I will solve this problem this way 1. Create a new TiddlyWiki using NodeJS 2. Start the new tiddlywiki in the browser 3. drag and drop old backup html file on to the new

[tw5] Re: Newbie - Easy Way to Install Plugins?

2020-09-15 Thread talha131
where one selects the plugins from a list then executes an install. To the best of my knowledge, it is possible, but the solution is not straightforward. 1. Install NodeJS 2. Install TiddlyWiki NPM 3. Add your required plugins to TiddlyWiki NPM installation 4. Enable the

[tw5] Re: Newbie - Easy Way to Install Plugins?

2020-09-15 Thread talha131
If I understand you correctly, then you can download a fresh copy of TW, install your plugins and then save it as your master copy. Then onwards, you can create your new wikis on top of the master copy. Another way is to take a backup of your plugins and settings and export them as JSON. Keep

[tw5] Re: Using "Vertical bar" in Tiddler Title

2020-09-15 Thread talha131
I asked a similar question in the past. Tones and other users shared their worthy suggestions. You can read them here 1. https://groups.google.com/forum/#!topic/tiddlywiki/iu-y7CVx6dg 2. https://groups.google.com/d/msg/TiddlyWiki/WWKlkMR-zfs/7nl_ARXqBwAJ 3.

[tw5] Please critique my solution

2020-09-14 Thread talha131
What’s the objective? Show a list of tiddlers that link to the current tiddler, using either soft or hard links, and show the tiddlers current tiddler links to. My solution Create a template with the following code ! What Links here

[tw5] Re: How to create hard link using macro?

2020-09-14 Thread talha131
Tejasvi, did you find a solution to the issue? I also need a way to get soft links to a tiddler. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[tw5] Re: Resource: Mohammad's Wikis

2020-09-12 Thread talha131
That's a useful list. Thanks for it. The URL for Shiraz needs an update. It's current URL is https://kookma.github.io/TW-Shiraz/ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it,

[tw5] Re: A beautiful post that describes the Joy of Tiddlywiki

2020-09-12 Thread talha131
Thank you Donald for sharing it. It's eloquent. Besides the other links that you and Tones have shared, there is also https://webmention.net/, which can partially replace the established comments system. -- You received this message because you are subscribed to the Google Groups

[tw5] Add new types to TiddlyWiki editor (Short explanation)

2020-09-12 Thread talha131
TiddlyWiki Editors shows content type selector. It lets you set tiddler type to an image like image/png or a text type like text/x-markdown. To add a new type which is not present in the core like video/mp4 or image/webp. 1. Create a new tiddler 2. Name it

[tw5] Re: How to do transclsion in raw HTML?

2020-09-12 Thread talha131
Thank you Saq. Now it’s clear, and I am so sorry for wasting your time. I should have picked the hint from your first answer. This worked. ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop

[tw5] Re: How to do transclsion in raw HTML?

2020-09-12 Thread talha131
Thank you Saq. I read the doc you linked to. I tried {{Test Video}} It embeds the video into the tiddler. But when I tried using {{}} in raw HTML as described in Transcluded Attribute Values, it did not work. The HTML it generates is As you can see the src value is empty. ​

[tw5] How to do transclsion in raw HTML?

2020-09-12 Thread talha131
I added a video to the TW using _canonical_url. Now I want to link to that video in a tiddler body. When it is images, the following syntax works [img[ImageTiddler]] But to embed video, I have to use raw HTML This does not work. So how do I transclude the video tiddler inside src

[tw5] Re: How many of you use core TiddlyWIki?

2020-09-12 Thread talha131
I use the TW core version. I also try to make sure I use as little third party plugins as possible. Right now, I only have the ReLink plugin that is not in the core. Other plugins like Katex and Highlight are in the core. You do not have to worry about a TW edition's lack of upgrades because

[tw5] Re: How to create hard link using macro?

2020-09-10 Thread talha131
I see. I posted a similar question few days ago . The conclusion was to look up the code of ReLink plugin. I ended up using tag hierarchy instead of creating backlinks from macro. ​ -- You received this message because you are

[tw5] How to add fonts to TW running on NodeJS

2020-09-10 Thread talha131
I am running TW from NodeJS. I need to add some fonts that I use in some CSS classes only. Currently, TW picks the fonts from the system, which is fine for now. My concern is that when I export the tiddlers to an HTML file using the save command or using the export tiddler menu item, then the

[tw5] Re: How to create hard link using macro?

2020-09-10 Thread talha131
Another approach > ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+unsubscr...@googlegroups.com. To view this discussion on the web

[tw5] Re: How to create hard link using macro?

2020-09-10 Thread talha131
I think your macro needs following snippet of code to show the backlinks correctly <$list filter="[backlinks[]]"><$view field="title"/> ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving

[tw5] Re: @@ sign from a title is not displayed when transcluding the title field

2020-09-10 Thread talha131
PS: I found another post from you on the same topic https://groups.google.com/d/msg/TiddlyWiki/WWKlkMR-zfs/7nl_ARXqBwAJ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an

[tw5] Re: @@ sign from a title is not displayed when transcluding the title field

2020-09-10 Thread talha131
Thank you Tones. I settled on using a single @. Because all other options require tweaking the templates. Your bit about using @@ in a SVG tiddler is awesome. ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group

[tw5] Re: Check if field is empty (or not exist), then use value from other field

2020-09-10 Thread talha131
AM UTC-7, talha131 wrote: >> >> Eric, why do we need three braces? {{{ What do they do in this example? >> > > Double curly braces {{...}} is used for "transclusion" where you specify a > tiddler title/field and/or a tiddler template. > > Tripled curly brace

[tw5] Re: Check if field is empty (or not exist), then use value from other field

2020-09-10 Thread talha131
Eric, why do we need three braces? {{{ What do they do in this example? This question is related to your answer here . Let me know if I understand correctly. 1. [get[field-1]else{!!field-2}] gets the value. 2. {{ }}

[tw5] Re: How to embed template tiddlers?

2020-09-09 Thread talha131
Thank you, Saq, this fixed the issue. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+unsubscr...@googlegroups.com. To view this discussion on the web

[tw5] How to embed template tiddlers?

2020-09-09 Thread talha131
I have simple template that I use with tabs widget, say, *$:/talha131/Template/VerticalTab* <$tiddler tiddler=<>><$link to={{!!title}}> ! <$view field="title" /> <$transclude mode="block" /> I have defined a separate template tagged with $:/t

[tw5] How to override a theme while making sure future upgrade goes smoothless?

2020-09-09 Thread talha131
I am using JD’s material theme. I want to customize some portion of the theme in the tiddler. $:/themes/jd/Material/Template/Header-Sidebar If I understand correctly, I will have to remove and edit some widgets. How do I make sure that if I edit the tiddler, I can smoothly upgrade to a

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

2020-09-09 Thread talha131
Thank you all. The reason is you could then write wiki text to turn the contents of any field name with -link into a link by the prefixes name Great tip. I decided to use source-url, source-book, source-person, depending on from where I collected the note. ​ -- You received this message

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

2020-09-09 Thread talha131
Just two days ago I was facing this problem # item 1 # item 2 ``` code ``` # item 3 I was wondering how to make it work in TW. In some flavors of Markdown intending the code line does the trick and the numbering continues from the previous number. In AsciiDoc, you can tell the markup to

[tw5] Re: @@ sign from a title is not displayed when transcluding the title field

2020-09-09 Thread talha131
Thank you Eric. I never got the warning. Not sure what the reason is. *I am going to remove @@ from the title and use single @ in the title.* By the way, title of my tiddler was Use @@ to style the tiddlers, which is the tiddler in which I documented my observations on @@. <$view

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

2020-09-09 Thread talha131
Thank you Brian. This is exactly what I was looking for. Much appreciated! Some behavior of the @@ is undocumented. I enabled "tiddlywiki/internals", plugin to see the raw HTML. I noticed, if @@background-color: red; is not immediately followed a by newline after the semicolon, then the

[tw5] @@ sign from a title is not displayed when transcluding the title field

2020-09-09 Thread talha131
Say I created tiddler with the title, Test @@%+&*[] example In the tiddler, body when I use {{!!title}}, every character appears except the @@. If I use @ once, or odd number of times then it works. But if I use @ twice or four time, then it is not displayed. It is probably because @@

[tw5] Re: Will the tiddlywiki become very lag when added so many images into it?

2020-09-09 Thread talha131
Zhe I have asked this question twice in the past and experimented with different options. You can read my conclusion, and responses to my question here https://groups.google.com/d/msg/tiddlywiki/WXr7I6OvTv0/OgyuiAaqBAAJ -- You received this message because you are subscribed to the Google

[tw5] Re: Is it better to host images externally rather than in TW for performance? [2020 update]

2020-09-09 Thread talha131
An update, in case someone else stumbled on this thread. My assumption that the number of images and image size does not matter if you are running TW from NodeJS turned out to be wrong. I removed images from my TW, which reduced the size from 33MB to 6MB, that's about 80% reduction in

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

2020-09-09 Thread talha131
Thank you, Tones. I looked up the source code of the ReLink plugin; it is powerful and useful. After experimenting, I decided to use tags and nested tags to organize my notes, with the Relink plugin to help me rename the tiddlers. I wanted to link tiddlers together, such that I could jump

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

2020-09-06 Thread talha131
>From what I looked up, it does not seem possible. All the solutions are made on top of “Reference” tab. None of them take into account tiddlers transcluded in the tiddler. For example, 1. https://akhater.github.io/drift/ 2. https://hchaase.github.io/HC-Plugins/ 3.

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

2020-09-06 Thread talha131
I have noticed that when you link to tiddlers using [[Tiddler Title] then it updates the “Reference” tab of the tiddler info. But if I only transclude the tiddler {{Tiddler Title}} or use a macro, <> Then the tiddler does not end up in the “Reference” tab. I am looking for a way to show

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

2020-09-06 Thread talha131
Though I could not find official documentation, but it seems source field has special usage in TW. For example, this edition uses source field for creating a hierarchy of tiddlers. http://tw5.scholars.tiddlyspot.com/ It is also used for the source URL of a plugin. (optional) Source URL of

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

2020-09-06 Thread talha131
Yeah, Eric. I meant that's the solution I used.  -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+unsubscr...@googlegroups.com. To view this discussion

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

2020-09-06 Thread talha131
As per the docs : source is field is used by the core for The source URL associated with a tiddler Is there a practical example of it being used? What I am looking for? I want to add a field that can be used for links to the source of the tiddler. Say

[tw5] Re: How to apply a macro or a template to all the tag tiddlers?

2020-09-06 Thread talha131
Genius solution Eric! ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+unsubscr...@googlegroups.com. To view this discussion on the web visit

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

2020-09-06 Thread talha131
Thank you Mat. I ended up using your solution. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+unsubscr...@googlegroups.com. To view this discussion on

[tw5] Re: How to transclude raw contents of a shadow tiddler

2020-09-06 Thread talha131
Thank you Saq. This was helpful. I ran it on a couple of shadow tiddlers and fixed my configuration using compareTiddlerText. ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it,

[tw5] How to apply a macro or a template to all the tag tiddlers?

2020-09-06 Thread talha131
t;__defaultTid__>> state="$:/state/tab1" class="tc-vertical" template="$:/talha131/Template/VerticalTab" retain="no" /> \end How do I automatically apply it to all the tiddler that are a tag? Say I create a new tag example. Then, 1

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

2020-09-06 Thread talha131
Thank you Brian. I was trying to achieve something like this li {list-style-type: decimal; } li li {list-style-type: lower-alpha; } But it seems nesting rules using @@ is not possible. ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To

[tw5] Re: How do I change the order of already opened tiddlers in the story river?

2020-09-06 Thread talha131
OMG. So simple. Thanks a lot, Eric. TW is powerful, but it is made even more robust by active gurus like you. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[tw5] How do I change the order of already opened tiddlers in the story river?

2020-09-06 Thread talha131
Say I have opened four tiddlers. 1. A 2. B 3. C 4. D Is it possible to change the order so that C comes on top? Like so 1. C 2. B 3. A 4. D I am not trying to keep the tiddler C always on top. I want to change the order temporarily in the story river. -- You received this message because

[tw5] Re: How do I show summary or caption field of a tiddler in the story river?

2020-09-04 Thread talha131
Found a hint here https://kookma.github.io/TW-Scripts/#Show%20a%20Summary%20on%20Tiddler Looking more into it. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[tw5] How do I show summary or caption field of a tiddler in the story river?

2020-09-04 Thread talha131
I understand that we can set custom fields of a tiddler. We can filter tiddlers using the fields or access them in macros. Currently a tiddler shows title, author, date and content in view mode. How do I change the TW to show content of summary field too if it is available? Is it possible

[tw5] Re: Is it possible to use unicode emoji as icons?

2020-09-04 Thread talha131
Thank you Eric, this is very useful. ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+unsubscr...@googlegroups.com. To view this discussion on the

[tw5] Is it possible to use unicode emoji as icons?

2020-09-04 Thread talha131
I understand that you can add an image to TW and then use it as icon for tiddlers and tags. Is it possible to use an emoji like  as icon in TW? -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving

[tw5] Re: Is it better to host images externally rather than in TW for performance? [2020 update]

2020-09-04 Thread talha131
Thank you, Mark and Bimlas. I did a little digging into the documentation. What I understand, (which some user might find useful): As long as you use TW with NodeJS and lazy load images, you are fine. If you export the TW to a single HTML (which is how I guess most people use TW), then

[tw5] Re: [Tiddly Research] Public release

2020-09-02 Thread talha131
This is impressive. I have bookmarked and I will explore it in detail later. Does it have the option to show the links between tiddler visually? Something like this, -- You received this message because you are subscribed to the Google Groups

[tw5] Re: How to avoid loosing work by saving an older copy still open in the browser.

2020-09-02 Thread talha131
You can fix this issue if you make sure your copy of TW is available on all your computers. You can either use an online hosted version or host TW locally on your LAN, like using NodeJS or Caddy. ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki"

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

2020-09-02 Thread talha131
TiddlyWiki documentation mentions @@ construction here . It says you can do @@background-color:red; Your text @@ How can I use this construction to apply style to a particular element? Like, li {list-style-type: decimal; } I

[tw5] Re: Regarding list bullets

2020-09-02 Thread talha131
There is a alternative syntax available that some may find useful. Created tiddler .myBullets li {list-style-type: decimal; } .myBullets li li {list-style-type: lower-alpha; } .myBullets li li li {list-style-type: lower-roman; } .myBullets li li li li {list-style-type: circle; } Then in

[tw5] Re: How to transclude raw contents of a shadow tiddler

2020-09-02 Thread talha131
he editor preview has an option to compare the >current overridden shadow with the shadow >- The Info button on any tiddler > advanced tag tells you the status >of shadow tiddlers. > > Regards > Tony > > On Monday, 31 August 2020 21:20:30 UTC+10, talha131

[tw5] Re: How to transclude raw contents of a shadow tiddler

2020-09-02 Thread talha131
Thank you Tones. For anyone else coming to this thread, this is how you can find the “plugin that contains a shadow tiddler”. For example, to find the source plugin of $:/core/ui/ListItemTemplate, use this code ! Show Plugin that contains the Shadow Tiddler <$list

[tw5] Re: [OT] Video comparing other note taking tools

2020-09-02 Thread talha131
Tones, you have hit the nail on the head. TW is insanely powerful, but not everyone has the time and inclination to tinker around. This observation is accurate for all the tools, Linux vs. Windows for the desktop computers, Vim vs. Visual Studio Code, etc. I like to customize my tools, and I

[tw5] Re: [OT] Video comparing other note taking tools

2020-09-02 Thread talha131
Tones, you have hit the nail on the head. TW is insanely powerful, but not everyone has the time and inclination to tinker around. This observation is accurate for all the tools, Linux vs. Windows for the desktop computers, Vim vs. Visual Studio Code, etc. I like to customize my tools, and I

[tw5] Re: I messed up the config and now Page Controls is missing

2020-09-01 Thread talha131
Thank you Tones for sharing your knowledge. These were new to me. Until you showed me I did not know these SideBarSegments visibility tiddlers existed. Right. Surprisingly, docs did not have anything on this special config title. It is mentioned at only one place.

[tw5] Is it better to host images externally rather than in TW for performance? [2020 update]

2020-09-01 Thread talha131
I can host images on any free host online like Imgur and then use its link inside a tiddler. The drawback is that image won’t load if I am offline. On the other hand, I can add an image to TW and reference it inside tiddlers. My notes will be self-contained. But I am not sure how it will

[tw5] Re: Moving Goodreads books to your TW

2020-09-01 Thread talha131
This is a great idea. Are you using any specific theme for maintaining your bookshelves in TW? ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[tw5] Re: TranscludeWidget is very slow to load when used from a template

2020-09-01 Thread talha131
Thank you all of you. You people have fixed a major headache for me. Using tiddlywiki --listen root-tiddler=$:/core/save/lazy-all was the issue. I replaced it with tiddlywiki --listen *root-tiddler=$:/core/save/lazy-images* and this fixed the issue. I never guessed that lazy-all could be

[tw5] Re: How to transclude raw contents of a shadow tiddler

2020-09-01 Thread talha131
Keep in mind that the editor preview has an option to compare the current overridden shadow with the shadow Thank you Tones. This is valuable. I was not aware of this feature. ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe

[tw5] Re: TranscludeWidget is very slow to load when used from a template

2020-08-31 Thread talha131
More information I am running TW from nodeJS, which shows this slow behaviour. But the HTML file built from the tiddlers does not have any performance issue. So my guess is, *TW running on NodeJS has performance issue*. ​ -- You received this message because you are subscribed to the Google

[tw5] Re: TranscludeWidget is very slow to load when used from a template

2020-08-31 Thread talha131
I tried a different widget, toc but the delay is still present, though the delay is much shorter than before. But it is not instantaneous. > ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To

[tw5] Re: TranscludeWidget is very slow to load when used from a template

2020-08-31 Thread talha131
Thank you. I have tried retain="no", *but the result is still the same*. It still takes more than 30 seconds to load the tiddler. ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from

[tw5] Re: Convert node.js version to single-file html

2020-08-31 Thread talha131
Use this command tiddlywiki --verbose --build index More details 1. https://tiddlywiki.com/#How%20to%20build%20a%20TiddlyWiki5%20from%20individual%20tiddlers 2. https://tiddlywiki.com/#BuildCommand ​ -- You received this message because you are subscribed to the Google

[tw5] Re: tiddlywiki separation of from a single file?

2020-08-31 Thread talha131
I do not understand you completely. that works like tiddlywiki as far as the user is concerned but backend doesnt save to the same html file I run TiddlyWiki from NodeJS. All my tiddlers are stored in individual .tid files, which then I convert to html when necessary. ​ -- You received

[tw5] Re: How to transclude raw contents of a shadow tiddler

2020-08-31 Thread talha131
Thanks a lot, Saq. This fixed the issue <$text text={{$:/core/ui/ListItemTemplate}}/> ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[tw5] Re: I messed up the config and now Page Controls is missing

2020-08-31 Thread talha131
I fixed this issue. I was trying different themes. One theme had added a tiddler $:/config/SideBarSegments/Visibility/$:/core/ui/SideBarSegments/page-controls Removing this tiddler fixed the issue. On Monday, August 31, 2020 at 2:43:32 PM UTC+5 talha131 wrote: > (Google groups messed up

[tw5] How to transclude raw contents of a shadow tiddler

2020-08-31 Thread talha131
Is it possible to transclude the contents of a shadow tiddler? I want to display raw contents of $:/core/ui/ListItemTemplate inside a tiddler. I have tried {{$:/core/ui/ListItemTemplate}} <$transclude tiddler="$:/core/ui/ListItemTemplate" mode="block" /> One shows the link and other the

[tw5] Re: Google Groups Forum Changes

2020-08-25 Thread talha131
In the new Google Forum, I cannot find my “starred” conversations. So I reverted back to the classic UI. But if this change, forces TW community to switch to a modern forum software, then it would be a blessing in disguise for people like me. On Sunday, August 23, 2020 at 7:32:42 AM UTC+5 TW

[tw5] Re: What is the TiddlyWiki markup for creating an image link?

2020-08-25 Thread talha131
I think I have solved the issue. I will have to use link widget for links to tiddler and a raw HTML tag for external links. On Tuesday, August 25, 2020 at 8:34:59 PM UTC+5 talha131 wrote: > I want an image, clicking on which will open a link. > > I know I can add an im

[tw5] What is the TiddlyWiki markup for creating an image link?

2020-08-25 Thread talha131
I want an image, clicking on which will open a link. I know I can add an image using ``` [img[$:/talha131/Image/ThinkOutsideTheDatabase]] ``` I can add a link using ``` [[Link Title|https://example.com]] ``` I want to have an image in place of "Link Title". Is it possible in the

[tw5] Re: How do I show tags along with tiddler title in the search result?

2019-06-19 Thread talha131
I don’t know exactly where, but I seen you earlier, maybe somewhere in the Vim era. I too recall you from somewhere but can’t put my finger on it. ☺️It’s probably from Vim, perhaps #vim irc channel. I used to be active on it couple of years ago. :) ​ -- You received this message because

[tw5] Re: How do I show tags along with tiddler title in the search result?

2019-06-17 Thread talha131
What I was looking for See these images I was searching for the word diff and json. These are common words in the programming world and more than one topics have tiddlers on it. I needed a simple way to tell these tiddlers apart with a glance. I didn’t need to narrow down my search via tag

[tw5] Re: How do I show tags along with tiddler title in the search result?

2019-06-17 Thread talha131
Thank you bimlas. Much appreciated. I did give it a try. It's not the solution I was looking for. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[tw5] Re: How do I show tags along with tiddler title in the search result?

2019-06-15 Thread talha131
Thanks a lot Mat. My issue has been solved. <$link to={{!!title}}><$view field="title"/> <$list filter={{!!tags}}> <$macrocall $name=tag-pill tag={{!!title}} /> ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe

[tw5] Re: How do I show tags along with tiddler title in the search result?

2019-06-15 Thread talha131
<> works fine. It’s the <> macro that is not working. you must surround the macrocall with a listwidget so that the macrocall only deals with one tag at a time. Can you point me to any example where listwiget is used in this way? ​ -- You received this message because you are subscribed

[tw5] Re: How do I show tags along with tiddler title in the search result?

2019-06-15 Thread talha131
Thank you Mat for the details. -- I think what I want to do can be achieved by editing $:/core/ui/ListItemTemplate. It reads <$link to={{!!title}}><$view field="title"/> I just need to add <> *What I can’t figure out is* how to pass the current tag to the

[tw5] Re: How do I show tags along with tiddler title in the search result?

2019-06-15 Thread talha131
(BTW, the syntax for this is about to be improved in the very-soon-to-be-released 5.1.20 version.) I am actually using 5.1.20 pre release. Can you please point me to the documentation of the to be release version? ​ -- You received this message because you are subscribed to the Google

[tw5] How do I show tags along with tiddler title in the search result?

2019-06-14 Thread talha131
I use tags to organize my tiddlers. In search result only title of the tiddlers is displayed. I want it to also show the tags of the matching tiddlers. ### Use Case Say I have two tiddlers about `JSON`. One is for JavaScript and the other one has details about JSON in golang. When I search

[tw5] Re: What are $:/rev/20180916.04:09:42.tid files?

2019-05-23 Thread talha131
Thank you Tony and Mario. What type of tiddlywiki install are you using, browser, operating system and plugins? Especialy how do you save your wikis. I am running pre-release version of tiddlywiki from nodejs. These are the plugins I have I think a while ago I tried a version control plugin

[tw5] What are $:/rev/20180916.04:09:42.tid files?

2019-05-23 Thread talha131
I notice that my tiddlers have lots of files that start with $:/rev/. It seems they are autogenerated. What are these for? ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it,

[tw5] Re: GitHub Saver and Possible Collaboration

2019-04-14 Thread talha131
we can figure out a way to serve the repository ‘node.js’ style, that splits up the single-file into multiple, which I think will make forking and pull requests more manageable, as you can track changes much easier that way. 100% agree with you. Serving the repository using nodejs makes

Re: [tw5] When syncing TW, modified date of duplicate tiddlers is updated

2019-04-08 Thread talha131
Thank you Jeremy. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+unsubscr...@googlegroups.com. To post to this group, send email to

[tw5] Re: When syncing TW, modified date of duplicate tiddlers is updated

2019-04-07 Thread talha131
Thank you Tony. I tried disabling the timestamps but it didn’t affect the imported tiddlers. First I disabled the timestamps. The tiddler $__config_TimestampDisable.tid' got ayes` in its body. Then I started the import. I noticed that $__config_TimestampDisable.tid' file was also in the

[tw5] When syncing TW, modified date of duplicate tiddlers is updated

2019-04-06 Thread talha131
I have a TW running on nodejs and stored in Git. Each tiddler is a separate file. When I have to sync another copy of the same TW, I drop the TW.html file on it. TW is smart enough to create the new tiddlers. The tiddlers that are already present and have not changed, their modified date

[tw5] Re: How to change the language menomic that highlightjs uses?

2019-04-06 Thread talha131
See this thread https://groups.google.com/forum/#!topic/tiddlywiki/LUFCr2-KcP0 -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[tw5] Why highlight.js language alias does not work?

2019-04-06 Thread talha131
Highlight.js lets you use aliases for languages. It's list of aliases is [available here](https://highlightjs.readthedocs.io/en/latest/css-classes-reference.html#language-names-and-aliases). According to it, both of the following code blocks are similar ``` ```javascript ``` ``` ```js ```

[tw5] How to change the language menomic that highlightjs uses?

2019-04-01 Thread talha131
Hightlightjs expects language name to be provided before code block like ```javascript I want to use other word like js to get the same syntax highlight? ```js How do I do it? ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe

[tw5] Re: Installing the vim keymapping with the Code Mirror Editor Plugin 5.1.19 on TW5 5.1.19?

2019-03-26 Thread talha131
I am not clear what error you get, but you might find solution in this thread https://groups.google.com/forum/#!searchin/TiddlyWiki/codemirror$20vim%7Csort:date/tiddlywiki/fKKBGPfG7lU/o41HgFWvBQAJ ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki"

[tw5] Re: CodeMirror Keymap: Vim plugin seems to be causing an error

2019-03-26 Thread talha131
I gave a try to codemirror and its Vim keymap again. It turned out then I need all following plugins to make codemirror work with Vim keymaps "tiddlywiki/codemirror", "tiddlywiki/codemirror-closebrackets", "tiddlywiki/codemirror-keymap-vim",

Re: [tw5] TiddlyWiki .md Files

2019-03-20 Thread talha131
Thank you. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+unsubscr...@googlegroups.com. To post to this group, send email to

  1   2   >