[tw5] Re: Is it possible to highlight HTML color codes?

2018-06-29 Thread talha131
I tried your tip regarding Showroom tilder @@border-radius: 5px; @@padding: 9px 12px 10px; @@margin:1em; @@background-color:#2b2b2b; `#2b2b2b` @@ and it worked flawlessly. I wasn't aware of macro feature present in TiddlyWiki. But the custom macro you created for me is more versatile and

[tw5] How to escape double quotes inside copy-to-clipboard macro?

2018-06-30 Thread talha131
I have following block of code that I want to pass to copy-to-clipboard macro for f in *.wav bmtool -v audioConvert -f mp3 "$f" end I tried <> But the copied text is terminated right when it encounters first double quite, i.e "$f". Clipboard gets for f in *.wav bmtool -v

[tw5] Re: How to escape double quotes inside copy-to-clipboard macro?

2018-06-30 Thread talha131
Thank you for quick response. Triple quotes solved the issue. On Sunday, July 1, 2018 at 1:09:51 AM UTC+5, BurningTreeC wrote: > > Hi talha131, > > you can wrap the code within triple-quotes: > > < for f in *.wav > bmtool -v audioConvert -f mp3 "$f" >

[tw5] How to create list of tiddlers and pass to tabs macro?

2018-07-14 Thread talha131
'Other example' ]; < default:"" state:"$:/state/tab1" class:"tc-vertical" template="$:/talha131/Template/VerticalTab">> The advantage of this format is clear. I can add tiddlers to the list easily. The syntax is clearer than putting everything inside

[tw5] Re: How to create list of tiddlers and pass to tabs macro?

2018-07-14 Thread talha131
Additionally, the reason I don't want to use tags is the order of the tiddlers. I want to tiddlers to appear in a specific order. I can do that with tag by dragging and dropping but that order is reflected everywhere. If I want to have to orders, one sorted by title and other manually, then I

[tw5] How to "if var2 is empty then assign var1 to var2"

2018-07-17 Thread talha131
Say I have a macro \define example(v1, v2:"") \end If v2 is empty than I want to assign value of v1 to v2. What’s the TW syntax for this? ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving

[tw5] Re: [Opinion] Is TW's flexibility its achilles heel?

2018-07-17 Thread talha131
Thank you TonyM for the explanation Using {{!!fieldname}} in wiki text {!!fieldname} in filters (to replace it with the content) or field-name in operators. I was stuck on an issue with filter operator. But this exact explanation helped me resolved the issue without opening a new thread on

[tw5] Re: How to "if var2 is empty then assign var1 to var2"

2018-07-17 Thread talha131
My apologies for lack of clarification. I have this macro \define colors(color:"black", txtcolor:"", bgcolor:"") $color$ \end What I want to do is, if bgcolor is undefined then use whatever value is assigned to color variable. I searched the forum. Unfortunately I didn’t quite

Re: [tw5] Excise button is available only when content type is not set

2018-07-16 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: How to create list of tiddlers and pass to tabs macro?

2018-07-15 Thread talha131
The list field (s) is the closest thing to arrays in WikiText. Ouch! I think I will stick with using tags then. I don’t think editing field of a tiddler would be as convenient as arrays in programming languages. Thank you Mark. ​ -- You received this message because you are subscribed to

[tw5] How to set background color of select html tag

2018-07-15 Thread talha131
JD suggested the solution to this issue. I am documenting it here for others who might face the same issue. Problem Color palette setting may make the text in dropdown list () invisible [image: Screen Shot 2018-07-15 at 00.05.08] To reproduce the issue, try

[tw5] Re: How to create list of tiddlers and pass to tabs macro?

2018-07-15 Thread talha131
Right. I have seen some example JS macros. In the examples, a simple parameter is passed to JS macro and it returns an output. Currently, I am not sure how JS is used with TW constructs like tabs macro for example. Say I create a JS macro, that returns a list of tiddlers. How do I use it

[tw5] Re: [Opinion] Is TW's flexibility its achilles heel?

2018-07-16 Thread talha131
Stobot has put into words very clearly what I had in the back of my mind. Name Name is definitely an issue. A long time ago I mentioned TiddlyWiki Classic to my coworkers and all I get laughs. In those days when JS wasn’t as ubiquitous as it is today, a whole wiki system enclosed in a single

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

2018-07-14 Thread talha131
Right, mostly screenshots. I too make each image go through ImageOptim or sometimes change png to low quality jpg before using them. With the next version of tiddlywiki or a future version of bob there will be a secure online node solution where it should be

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

2018-07-14 Thread talha131
Thank you Mark. I wasn’t aware of this feature. I have switched to lazy loading and hosting images inside TW. Let see how long until TW starts showing signs of stress. :) ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from

[tw5] Re: How to create list of tiddlers and pass to tabs macro?

2018-07-16 Thread talha131
Thanks Jed, this enlist solution is perfect for my needs. I was looking for exactly the same format. the interface between javascript and the much *maligned widgets* can be a bit complex because the widgets are designed to make markup tasks simple. Haha, seems like there is a fault line in

[tw5] Re: How to set background color of select html tag

2018-07-16 Thread talha131
I have fixed the issue to the best of my knowledge and opened up a pull request at Github https://github.com/Jermolene/TiddlyWiki5/pull/3360 ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving

[tw5] Excise button is available only when content type is not set

2018-07-16 Thread talha131
I am using TW version 5.1.17 on NodeJS. I have noticed as soon as I set content type to wiki or markdown, the button disappears. When content type is not set When content type is set Excise is a useful for all types of content type. What should I do to enable it for all content type? Or is

[tw5] Re: How to create Table of Contents inside a tiddler?

2018-07-05 Thread talha131
Thank you TonyM for your response. Let us know what you want the toc to do, rather than define it by an existing example like Visual Studio, because then we may have a solution despite the current limitations. I had a long tiddler with several headings, say “Fish Shell Tips”. I do *not*

[tw5] Re: How to create Table of Contents inside a tiddler?

2018-07-05 Thread talha131
! {{Rename Files !!title}} {{Rename Files}} ! {{Aliases and Functions !!title}} {{Aliases and Functions}} I don’t see any way of telling “Fish Shell Tips” to automatically transclude new content with tag “fish-shell”. ​ On Thursday, July 5, 2018 at 8:22:36 AM UTC+5, Mohammad wrote: > > ta

[tw5] Re: How to create Table of Contents inside a tiddler?

2018-07-05 Thread talha131
Thank you Jed. 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 post to this group, send email

[tw5] Re: How to create Table of Contents inside a tiddler?

2018-07-05 Thread talha131
good use of individual tiddlers. > > Regards > Tony > > On Thursday, July 5, 2018 at 12:05:16 AM UTC+10, talha131 wrote: >> >> How do I create table of contents from headings inside a Tiddler written >> in TiddlyWiki markup? >> >> For example, markdow

[tw5] How to escape angle brackets inside a macro?

2018-07-05 Thread talha131
I have this text <>, that I am trying to place inside copy-to-clipboard macro. I tried following, but it didn’t work. <> >> Then taking cue from “How to escape double quotes inside copy-to-clipboard macro?”

[tw5] Re: How to escape angle brackets inside a macro?

2018-07-05 Thread talha131
Thank you Jed. ​ -- 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: How to use a variable inside transclusion braces?

2018-07-09 Thread talha131
Thanks PMario. It fixed the issue. One thing, Transclude widget does not let you use templates, right? Otherwise I tried it with the variable but didn’t see any option of template in its API. ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.

[tw5] Re: How to escape angle brackets inside a macro?

2018-07-09 Thread talha131
Thank you Tony. ​ -- 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: How to use a variable inside transclusion braces?

2018-07-09 Thread talha131
Thank you Scott. Although your example wasn’t related to the issue at hand, but from it I learnt that variable can be passed to the filter in two possible ways. <$set name="var" value="vim"> > <> Above, both calls to tabs

[tw5] Re: Quickly highlight text for later action CSS WikiText

2018-07-09 Thread talha131
This is awesome, Mark. I couldn't even imagine creating new markup or modifying markup would be so straight forward. -- 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

Re: [tw5] Re: How to use a variable inside transclusion braces?

2018-07-10 Thread talha131
Thank you Jeremy for the explanation. I will heed the advice. ​ -- 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

[tw5] How to restore backup to TiddlyWiki running on NodeJS?

2018-07-10 Thread talha131
I have been running TiddlyWiki using npm command tiddlywiki mynewwiki --server I took regular backups using tiddlywiki mynewwiki --build index I messed up and now want to restore my last backup to TiddlyWiki NodeJS. How do I do that? Say I remove the tiddlers folder and tiddlywiki.info,

[tw5] Please share interesting Color Palettes

2018-07-10 Thread talha131
I have observed people have shared their plugins and themes. But so far, I haven’t found any one sharing the color palettes. Even this quite comprehensive dynalist has some themes but no palettes. >From Google I landed on these palettes.

[tw5] Re: How to escape angle brackets inside a macro?

2018-07-07 Thread talha131
Thank you, Tony. That’s very helpful. I am in the process of updating my macro with the help of your example. Meanwhile, can you please explain this part <$image width="14" source="$:/PSaT/EditFields/Clipboard.png"/> When I use this source, I get an empty image. My list of shadown tiddlers

[tw5] A simple Fish shell script to create timed snapshots of TiddlyWiki

2018-07-07 Thread talha131
Background I use TiddlyWiki from NodeJs. Here is the official documentation on it. To make offline copy, use the command tiddlywiki mynewwiki --build index It generates a file index.html in the output folder. When the command

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

2018-07-07 Thread talha131
I also failed to make Vim plugin work. From CodeMirror official site Note: The CodeMirror *vim bindings do not have an active maintainer.* That means that if you report bugs in it, they are likely to go unanswered. It also means that if you want to

[tw5] How to fix "Recursive transclusion error in transclude widget" error inside template tiddler

2018-07-07 Thread talha131
I have a list of tiddlers with a tag, displayed inside vertical tabs using, <> It is displayed as I want to be able to jump the transcluded tiddler. *Question 1*, it is possible is a simple way? I don’t see any option in the transclude widget that

[tw5] What kind of operations can be performed on parameters passed to a macro?

2018-07-07 Thread talha131
I get that Macro can be used for presentations. Say, I have a macro \define example(headingText:"Hello World") ! $headingText$ \end I can use this macro to create headings, <>. Inside this macro, what can I do on headingText variable? For example, can I change its case or can I modify it?

[tw5] Re: How to fix "Recursive transclusion error in transclude widget" error inside template tiddler

2018-07-07 Thread talha131
Thank you Mark. -- 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: Please share interesting Color Palettes

2018-07-12 Thread talha131
Thank you JD. I’m big fan of your C8 Dark Theme. I was trying to create a similar dark theme but it was taking forever. Yours C8 is perfect for my needs. ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and

[tw5] Re: How to restore backup to TiddlyWiki running on NodeJS?

2018-07-12 Thread talha131
Thank you Mark. Drag and drop worked. -- 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

[tw5] Re: How to restore backup to TiddlyWiki running on NodeJS?

2018-07-12 Thread talha131
To anyone else, beginner like me, when running --load command make sure you are in an empty folder with tiddlywiki.info present. First create a ~TiddlyWiki folder tiddlywiki "TiddlyNotes" --init servercd TiddlyNotes Then run load command tiddlywiki --load

[tw5] Re: How to escape angle brackets inside a macro?

2018-07-09 Thread talha131
Thank you Tony. These filtered lists are very helpful. Your code has an orphan tag. Is it your own custom widget? Because I couldn’t find any DetailsWidget in the official documents. ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To

[tw5] How to use core images with ImageWidget?

2018-07-09 Thread talha131
I have noticed I can transclude core images but can’t use them with ImageWidget. Here is my code. # {{$:/core/images/bold}} # <$image source="$:/core/images/bold" /> # {{$:/core/images/copy-clipboard}} # <$image source="$:/core/images/copy-clipboard" /> The output is this You can see the

[tw5] Re: How to use core images with ImageWidget?

2018-07-09 Thread talha131
age type, and it works with the image > widget. > > Have fun, > -- Mark > > On Monday, July 9, 2018 at 6:54:37 AM UTC-7, talha131 wrote: >> >> I have noticed I can transclude core images but can’t use them with >> ImageWidget. Here is my code. >> >>

[tw5] Re: How to escape angle brackets inside a macro?

2018-07-09 Thread talha131
Tony, I am sure you already know this, but anyone else, beginner like me, this won’t work for core images <$image source={{!!title}} width=48> See How to use core images with ImageWidget? for details. The final version of

[tw5] Re: What kind of operations can be performed on parameters passed to a macro?

2018-07-09 Thread talha131
If you need to change case or do any of those other standard operations, *I suppose you would need to write a javascript macro* — there’s no existing kit to do it for you. Do you have any example of JavaScript macro? The gist I get from this thread it is that it is not possible to do

[tw5] Re: How to escape angle brackets inside a macro?

2018-07-09 Thread talha131
I use Markdown-Here addon for formatting posts. ​ -- 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 to use a variable inside transclusion braces?

2018-07-09 Thread talha131
I am trying to create a macor, which when used inside a tiddler, will list all the tiddlers that have the title of the tiddler as tag. For example, if a tiddler title is examples. If macro is used inside it, all the tiddlers that have examples are listed. My progress so far is \define

[tw5] Re: How to create Table of Contents inside a tiddler?

2018-07-04 Thread talha131
Jed, to my understanding, the TOC macros use tags. TiddlyWiki provides several macros for generating a tree of tiddler links by analysing tags I want to create TOC for headings inside a tiddler ! Heading 1 Lorem Ispum ! Heading 2 Example text On

[tw5] How to create Table of Contents inside a tiddler?

2018-07-04 Thread talha131
How do I create table of contents from headings inside a Tiddler written in TiddlyWiki markup? For example, markdown has couple of plugins that create TOC from headings, like [Visual Studio code Plugin](https://marketplace.visualstudio.com/items?itemName=joffreykern.markdown-toc). Is there a

[tw5] Re: How to create Table of Contents inside a tiddler?

2018-07-04 Thread talha131
Thank you Jed. ​ On Wednesday, July 4, 2018 at 8:52:35 PM UTC+5, Jed Carty wrote: > > Oh, sorry I mis read that. > > TOCs based on heading don't exist in the core and I am not sure if there > are any plugins for it. There has been a lot of discussion around it and it > isn't every going to

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

2018-07-13 Thread talha131
Thank you Mark The compromise is to put the images in a relative position to your TW file (in a subdirectory). Then address the image with a relative path: [img[mypath/myfile.jpg]]. This will work everywhere without bloating your TW. Please correct me if I am wrong, this means when I am

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

2018-07-13 Thread talha131
Thank you again Mark. I think I will stick with hosting images on external hosts. There are desktop tools available that upload image on a single click and then paste the direct link of the image to the clipboard. As for being offline, it happens very rarely. For now, it seems easier setup

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

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

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

2018-07-13 Thread talha131
Thank you @TiddlyTweeter. ​ -- 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: Is it better to host images externally rathern than in TW for performance?

2018-07-13 Thread talha131
I don’t use Windows much. But I have had good experience with ShareX . On Mac, I use mac2Imgur . Here is a list of tools that integrate nicely with imgur.

[tw5] Is it possible to highlight HTML color codes?

2018-06-29 Thread talha131
Hi all, I want HTML color codes in my tiddly wiki to be highlighted? Something like in the following screenshot. How can I get this working, if it is possible at all? Thank you. -- You received this message because you are subscribed to the Google Groups

[tw5] Re: Timimi plugin - released for firefox/chrome/chromium in linux/mac/windows

2018-09-28 Thread talha131
Great work Riz. My apologies if you have already answered it, but are you going to host it on Chrome and Firefox addon store? It will give it more exposure and it will be easier to get updated version. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki"

[tw5] How to always show preview pane?

2018-12-25 Thread talha131
Currently, when I edit a tiddler, after I have refreshed the TW, I have to click on "Show Preview Pane". Once enabled, it is automatically shown for all the subsequent tiddlers. But how do I enable Preview Pane to shown all the time? Secondly, is it possible to disable this "automatically show

[tw5] Re: How to always show preview pane?

2019-01-13 Thread talha131
talha131, > > When you have preview enabled, the tiddler > $:/config/TextEditor/EnableToolbar contains yes. > After saving the preview stays enabled. > > If you want to toggle editor toolbar and/of preview on/off easily, you can > use $:/_toggle-editor-toolbar_preview

[tw5] Re: How to always show preview pane?

2019-01-13 Thread talha131
(My earlier message to deleted.) Thank you Ton for responding. I do have Toolbar enabled. But what I am looking for is to have “Preview enabled by default, without having to type keyboard shortcut or press any button in the toolbar, whenever I edit or add a tiddler”. ​ -- You received this

[tw5] Re: How to always show preview pane?

2019-01-13 Thread talha131
(I don't know why my messages are getting deleted.) Thank you Ton for responding. I do have Toolbar enabled. But what I am looking for is to have "Preview enabled by default, without having to type keyboard shortcut or press any button in the toolbar, whenever I edit or add a tiddler". --

[tw5] My posts in this groups are getting deleted automatically

2019-01-13 Thread talha131
Hi, I have responded thrice in this thread but as soon I post it, it is auto deleted. 1. Am I the only facing this issue? 2. Any idea how to fix it? ​ -- You received this

[tw5] Re: My posts in this groups are getting deleted automatically

2019-01-13 Thread talha131
My post had a link to image hosted on imgur. As soon I removed it the post got pass through. -- 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 to always show preview pane?

2019-01-13 Thread talha131
(I don’t know why my messages are getting deleted.) Thank you Ton for responding. I do have Toolbar enabled. But what I am looking for is to have “Preview enabled by default, without having to type keyboard shortcut or press any button in the toolbar, whenever I edit or add a tiddler”. ​ --

[tw5] Re: How to always show preview pane?

2019-01-13 Thread talha131
(I don’t know why my messages are getting deleted.) Thank you Ton for responding. I do have Toolbar enabled. But what I am looking for is to have “Preview enabled by default, without having to type keyboard shortcut or press any button in the toolbar, whenever I edit or add a tiddler”. ​ --

[tw5] Re: How to always show preview pane?

2019-01-13 Thread talha131
Ton your $:/_toggle-editor-toolbar_preview led me to $:/state/showeditpreview tiddler. Which then helped me discover Jermolene answer here https://github.com/Jermolene/TiddlyWiki5/issues/3397#issuecomment-413234525 which solved the issue for me. Thanks a lot. ​ -- You received this

[tw5] Re: How to always show preview pane?

2019-01-02 Thread talha131
Hi TW community. Any idea on how can I show preview pane by default? On Tuesday, December 25, 2018 at 6:40:52 PM UTC+5, talha131 wrote: > > Currently, when I edit a tiddler, after I have refreshed the TW, I have to > click on "Show Preview Pane". Once enabled, it is

[tw5] Re: How to do I make some specific changes in the UI?

2018-09-15 Thread talha131
Thank you Tony. > Otherwise it is also a matter of looking at the tiddlers that currently generate the content in the side bar and cut and copy as needed. Can you please point me towards some such tiddlers so that I can inspect their code? On Sunday, September 16, 2018 at 3:21:01 AM UTC+5,

[tw5] Re: How to do I make some specific changes in the UI?

2018-09-15 Thread talha131
Thank you Stephan. I used following code div.tc-search { position: fixed; top: 0px; left: 300px;} div.tc-page-controls { position: fixed; top: 0px; left: 0px;} div.tc-sidebar-header h1.tc-site-title,div.tc-sidebar-header div.tc-site-subtitle { display:none;} My

[tw5] How to do I make some specific changes in the UI?

2018-09-15 Thread talha131
I want to make following changes https://i.imgur.com/gHZDTa5.png 1. Move toolbar and search box to the top of the page, where it will remain affix. 2. Hide title and subtitle of tiddly wiki 3. Move rest of the sidebar up till where title used

[tw5] Re: How to do I make some specific changes in the UI?

2018-09-16 Thread talha131
>From the docs, I get to know about `$:/tags/AboveStory`. Whatever I put inside a tiddler that is tagged with `$:/tags/AboveStory`, it will appear on top of story river. I can leverage this tag to place page controls and search box on top of the story river. The question is how do I place

[tw5] Re: How to do I make some specific changes in the UI?

2018-09-16 Thread talha131
Update I added {{||$:/core/ui/PageTemplate/pagecontrols}} to a tiddler and tag it with $:/tags/AboveStory. The result is I am half way there. Now need to figure out how to put search field in the tiddler. ​ -- You received this message because you are subscribed to the Google Groups

[tw5] Re: How to do I make some specific changes in the UI?

2018-09-17 Thread talha131
not perfect and not exactly what I had in mind, but it will do for now. I created a tiddler, title $:/talha131/Template/Header, and tag $:/tags/AboveStory {{||$:/core/ui/PageTemplate/pagecontrols}} <$set name="searchTiddler" value="$:/temp/search"><$edit-text

[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",

[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] 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] 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] 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: 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

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: How does tiddlywiki knows where to apply CSS classes defined inside theme?

2019-02-26 Thread talha131
Oops! Talk about missing the obvious. Thank you FrD. ​ -- 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

[tw5] How does tiddlywiki knows where to apply CSS classes defined inside theme?

2019-02-26 Thread talha131
I am using material theme by JD http://j.d.material.tiddlyspot.com/ The stylesheet is here http://j.d.material.tiddlyspot.com/#%24%3A%2Fthemes%2Fjd%2FMaterial%2FStylesheet It has a class div.tc-tab-content.jd-lists-body. When you inspect the tiddlywiki in the browser you can see that this

[tw5] Re: How does tiddlywiki knows where to apply CSS classes defined inside theme?

2019-02-26 Thread talha131
Yes it does help. Thank you 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 post to this group, send email to

[tw5] Re: Need help testing new Documentation Tiddlers

2019-02-21 Thread talha131
Please keep an eye out if anything seems untoward in the text displayed in tiddlers (sounds better than saying “errors”). Changes might only show up where documentation macros have been used in tiddlers. These macros are used in order to keep the presentation style uniform, and to allow

Re: [tw5] How to escape backtick in tiddly wiki markup?

2019-03-20 Thread talha131
Thank you all. -- 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

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

[tw5] How to escape backtick in tiddly wiki markup?

2019-03-20 Thread talha131
How do I escape backtick ` in tiddly wiki markup? I have tried ` but it didn’t work. In Markdown double backticks do the trick , like ``foo` `` produces foo` What’s the equivalent for tiddly wiki? ​ -- You received this message because you

Re: [tw5] TiddlyWiki .md Files

2019-03-20 Thread talha131
Jeremy does this mean if I have "plugins": [ "tiddlywiki/markdown" ] In my tiddlywiki.info file then I don’t need to drag and drop markdown plugin from here https://tiddlywiki.com/plugins/tiddlywiki/highlight/ If so then is there a list of plugins and themes that can be added in

[tw5] How to sort tiddlers by title inside tag macro?

2019-02-07 Thread talha131
Tag macro which is shown at two places. 1. Tag manager 2. Under the tiddler title It shows a list of tiddlers. How do I sort them by title? It can be done manually using drag and drop. But can it be done automatically? -- You received this message because you are subscribed to the Google

[tw5] Re: open all tiddlers with tag X in story view and sort by date

2019-02-07 Thread talha131
Hi Thomas. I really liked your x-tag plugin. I have two suggestions. 1. Open all should be on the top. If I have 50 tiddlers in a tag. Then I will have to scroll all the to the bottom to click on "open all" 2. This plugin should also work in the tag manager Thanks a lot for your great work. --

[tw5] Is it possible to load and save tiddlers from subfolders?

2019-02-17 Thread talha131
I am using TW from nodejs. I run this command to serve TW via http. tiddlywiki tw-scripts-demo --listen port=8081 Currently I have around 600 individual .tid files inside my tiddlers/ folder. To improve organization of tiddlers, I want to place related tiddlers inside folders. Say all

Re: [tw5] Is it possible to load and save tiddlers from subfolders?

2019-02-17 Thread talha131
Thank you Jeremy for quick response and for having this feature in TW. I looked closely and it is working perfectly. I am sorry for reporting false positive. ​ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group

[tw5] Re: Some thoughts on plugins

2019-02-12 Thread talha131
Diego Mesa you hit the nail right on the head. After using TW for last couple of months, I have realized what makes it unique and powerful is the ability to customize almost each and every aspect of it. This is something missing from established products like EverNote and OneNote. New

[tw5] Re: Some thoughts on plugins

2019-02-12 Thread talha131
Mohammad you are already hosting your plugin and script directory on Github. What if we do this, 1. Break down the html into individual tiddlers and host in Github repository 2. Use Travis to build these tids into html file using tiddlywiki command. For example tiddlywiki

[tw5] Re: How to sort tiddlers by title inside tag macro?

2019-02-10 Thread talha131
Using Mohammad macro, I cannibalized the replace-tag wizard macro to create following wizard \define sortTagWizard() <$edit-text tiddler="$:/temp/sort-tag-tiddlers" field="sortTag" tag="input"default="" placeholder="select tag to sort" focusPopup=<> class="tc-popup-handle"/><$buttonpopup=<>

[tw5] Re: How to sort tiddlers by title inside tag macro?

2019-02-10 Thread talha131
Thank you all for help. Mohammad’s solution to Mark’s exercise is perfect. It solved my 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

[tw5] Re: How to sort tiddlers by title inside tag macro?

2019-02-10 Thread talha131
Tony this is not a plugin but gets the job done. I tag this tiddler with $:/tags/TagDropdown. \define tagSortFunc(mainTag, order:"ascend") <$reveal type="match" default="ascend" text=<<__order__>> ><$action-listops $tiddler=<<__mainTag__>> $filter="[tag<__mainTag__>sortan[]]"/> <$reveal

[tw5] Re: How to sort tiddlers by title inside tag macro?

2019-02-10 Thread talha131
Thanks a lot. -- 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: 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

  1   2   >