[tw5] Tidgraph: Backlinks

2019-03-09 Thread Leopold Bloom


Tidgraph Question.

I currently have set up my wiki so that every tiddler will have a footer 
displaying links to :

   1. all the other tiddlers that link back to the current tiddler 
   (backlinks)
   2. all the tiddlers being linked from the current tiddler (links)
   3. all tiddlers that are tagged with the current tiddler
   4. all tiddlers that cuurrent tiddler is tagged with

[image: related links Four notes.png] 

<>

If I could mimic a similar function with Tidgraph it would be a visual way 
to do this. However, I was not able to do it. This is the tidgraph tidbit 
that I came up with, but it is not working:

<$tidgraph mode="linking" filter="[is[current]backlinks[]sort[title]]" />


The below error is shown:

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/75c101fe-7353-4704-affd-b82a34973d65%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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

2018-07-15 Thread Leopold Bloom
Thanks to this thread I am going to steal this method to list items to 
review.

I chose a simple route. Instead of manually editing .js files.

First, I chose to go with the subscript shortcut (*Ctrl-Shift-B*) which 
inserts two commas before and after the selected text:

,,Hello World,,

Second, I created a stylesheet tiddler Highlight CSS and tagged it  
$:/tags/Stylesheet (shared in this thread earlier):


sub {
  font-size: inherit;
  vertical-align: baseline  ;
  line-height: 0 ;
  background-color: #9dd100;
  top: 0;
}

Third, in my Index tiddler (this is my first tiddler, at the top of my 
page):

$list filter="[!is[system]search[,,]]">
@@color:red; <$view field="created" format="date" template="0DD-0MM-"
/>@@
<$link><$view field="title"/>


I would have liked it to be a regex, but the one I come up with is not 
working *(?:,,).*(?:,,)* with the regexp filter. But this will do it for 
now.

On Wednesday, 11 July 2018 20:14:20 UTC+5:30, Stobot wrote:
>
> Fantastic! Wow that teaches me a lot for future needs - I appreciate the 
> help and ideas - Mark, Tony and Mohammad
>
> I ended up combining all methods you describe Mark. For my future 
> reference and anyone who's following along:
>
>- Edit $:/core/ui/EditorToolbar/superscript and replaced ^^ with == so 
>the button (and eventually keyboard shortcut) does ==
>   - Remapped the shortcut for superscript in ControlPanel>Keyboard 
>   Shortcuts to ctrl-shift-= (mine shows as Firefoxequals for some 
> reason), 
>   and removed the ctrl-shift-p that was in there.
>   - Cloned 
>$:/core/modules/parsers/wikiparser/rules/emphasis/superscript.js to 
>$:/core/modules/parsers/wikiparser/rules/emphasis/mark.js
>   - Replaced the \^\^ with == (for anyone reading, I believe the \'s 
>   are needed because ^ is a special character in Regex, not so with =)
>   - Replaced text "superscript" and "mark" and tag="sup" to tag="mark"
>- Saved and refreshed
>
> Exactly what I was hoping for - awesome
>
> Tony, that is also a very interesting workflow - for my use-case it's too 
> many clicks as-is (prefer no-mouse option for maximum speed), but it does 
> have the additional potential benefits of storing the actual string of the 
> todo - my method only ends up listing the hosting tiddler. If a variant 
> could be setup to do most of this workflow from a single keyboard shortcut:
>
>- Create new tiddler with selected text
>- Maybe add a "todo" tag or something and 
>- Replace text with transclusion or something else with highlighting 
>as previous solution
>
> ... then that would be even one step more powerful. I'll spend more 
> thought on this - thank you for pointing this out. 
>

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f4ae6fe6-38d7-4290-a92b-f38ebf2a8512%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Renaming tags (search and replace)

2017-11-29 Thread Leopold Bloom
I was able rename a bunch of tags today with your code (used the version 
from TW5 Magick). It was a trivial change - tag capitalisation. It would 
have been tedious to change each by hand. I thought the Tag Manager will be 
able to do this natively (v 5.1.14), but no luck and while searching for a 
solution, your post was the first hit. Thank you.

A question to others: Is this the best way to rename tags, any chance this 
feature coming to Tag Manager?

On Tuesday, 14 January 2014 22:20:41 UTC+5:30, Alberto Molina wrote:
>
> I have just created a tiddler that allows me to search and replace the 
> name of my tags. It works with two steps: 
>
>1. It shows the tiddlers with the old "to-be-replaced" tags. With a 
>checkbox, I can give them the new tags.
>2. It shows the tiddlers with the old AND new tags. With a checkbox, I 
>can remove the old tags.
>
> I guess it could be done with a single step, but I'm not a programmer so I 
> don't know how to do that. (I've tried and failed!)
> The title of the tiddler is "RenameTags". 
> The old name is written in a field called: "search".
> The new name is written in a field called: "replaceby".
>
> This is the content of the tiddler:
>
> |!Search tag: | {{!!search}} |
> |!Replace by: | {{!!replaceby}} |
>
> ---
>
> !First step
> !!//Apply the new tag to the following tiddlers//
> <$list filter=
> "[!has[draft.of]tag{!!search}!tag{!!replaceby}sort[created]]">
> <$checkbox tag={{RenameTags!!replaceby}}><$link to={{!!title}}><$view 
> field="title"/>
> 
>
> !Second step
> !!//Remove the old tag from the following tiddlers//
> <$list filter="[!has[draft.of]tag{!!search}tag{!!replaceby}sort[created]]"
> >
> <$checkbox tag={{RenameTags!!search}}> ~~<$link to={{!!title}}><$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 emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d505b62d-5d9e-4188-af8c-d4a948542878%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Tiddlyfox not saving anymore on Firefox 47.0

2017-03-10 Thread Leopold Bloom
I have been having this issue for two days, but I didn't update either 
Firefox (51.01) or Tiddlyfox. My file is in my Dropbox folder. I restored a 
backup and renamed it, as the original got some sidebar changes (all tabs 
gone showing only a search result, no way to change it) which I cannot 
undo. After reading about the permission angle in this pose I took a look 
at it and the file was 'Read only'. Once I changed  that it saved 
everything fine.

On Friday, 1 July 2016 12:59:51 UTC+5:30, Alain Dutech wrote:
>
>
> Exception... "Component returned failure code: 0x80520015 
> (NS_ERROR_FILE_ACCESS_DENIED) [nsIFileOutputStream.init]"  nsresult: 
> "0x80520015 (NS_ERROR_FILE_ACCESS_DENIED)"  location: "JS frame :: 
> chrome://tiddlyfox/content/overlay.js :: TiddlyFox.saveFile :: line 98"  
> data: no]
>

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/0c08ac7a-16d8-40c6-a11d-bfbb41913af3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Converting Tiddlywiki Wikitext to Markdown

2017-03-06 Thread Leopold Bloom
Markdown doesn't have easy way to represent wikilinks, true, but I'll be 
okay with either Dokuwiki  or 
Mediawiki  wikitext 
formats. I use the following formatting devices mostly: links, code blocks, 
in-line code, headings, bullets, and numbered lists. I know Emacs and Vim 
at a basic level, I will try to create some macro to process the files one 
by one—first the links, in the second go bullets and so on and so forth. If 
I could get this to work it would become easy for me to host my files on 
the web. My TW5 is 2.1+ mb and it is a big file (for a webpage) to host on 
the web. Dumping all the text files (once converted, say, to Dokuwiki) will 
allow easy hosting online in Dokuwiki.

I'd bookmarked a Perl module HTML:WikiConverter 

 
to convert HTML (output withTW5 node.js) to various wikitext formats, but 
since I am not a programmer I had trouble getting it to properly convert 
the wikilinks in the output converted text, but it does have an option for 
wikifying links; I need to experiment to see how I can make it work.

On Monday, 6 March 2017 17:39:05 UTC+5:30, PMario wrote:
>
> Hi Leopold,
>
> There is no automagic way to achieve this. So you'll need to do manual 
> "find and replace" magic. ... You can split your tiddlers into single 
> files, use an external text editor and do global search and replace, which 
> should be pretty fast. ... But you need to be careful. markdown only 
> supports basic wikitext functions. TiddlyWiki wikitext has a lot more 
> possibilities. 
>
> -mario
>

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/8ad97a3b-4cc4-4b30-a6ea-ab41533b58fb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Converting Tiddlywiki Wikitext to Markdown

2017-03-05 Thread Leopold Bloom
Bump.

I'm still looking for a way to do this. I now have some 600 pages 
(tiddlers). Is it possible to export Tiddlywiki wikitext to other formats 
like Markdown, Mediawiki, Dokuwiki or Org-mode?

On Thursday, 28 January 2016 11:13:47 UTC+5:30, Leopold Bloom wrote:
>
> I have 200+ tiddlers (1.87mb). It is completely text and there is no 
> images or any other binary files.
>
> I use Tiddlywiki Wikitext and after seeing that there is support for 
> Commonmark/Markdown 
> <https://groups.google.com/forum/#!searchin/tiddlywiki/markdown/tiddlywiki/H_1eJrt0rYY/IqTHI157YAwJ>
>  
> I want to use that from now on 
> <http://tobibeer.github.io/tb5/#New%20MarkDown%20Button>. 
>
> Question: What is the easiest way to convert it all from Wikitext to 
> Markdown?
>

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/06a0c0e1-f3f0-462f-b412-c157ae41bb93%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Tiddlywiki editor with link insert feature

2016-02-01 Thread Leopold Bloom
1. I was searching for way to easily create links to existing tiddlers. I 
have lots of tiddlers and every time I want to link to something, I would 
have to search to make sure the name is correct and I would not link to a 
non-existing tiddler (even the case of the text have to be correct). Is 
there any tool that may help me to search potential targets if I am linking 
internally?

2. Only one I found is tweditor: http://tw5editor.tiddlyspot.com/ 
https://groups.google.com/d/topic/tiddlywiki/IBA3cModVQk/discussion It 
doesn't have the link filtering/inserting feature, but I couldn't find a 
way to install to my wiki. Any help in doing that?

3. Is there any wysiwyg editor available that supports markdown or wikitext?

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/4da851c8-0dc0-41e3-9976-c48e58812f36%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Converting Tiddlywiki Wikitext to Markdown

2016-01-27 Thread Leopold Bloom
I have 200+ tiddlers (1.87mb). It is completely text and there is no images 
or any other binary files. I used Tiddlywiki Wikitext and after seeing that 
there is support for Commonmark/Markdown 

 
I want to use that from now on 
. 

Question: What is the easiest way to convert it all from Wikitext to 
Markdown?

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/1b7d442b-409e-46eb-baaf-1a6eda9c6577%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Hide Toolbar

2015-09-25 Thread Leopold Bloom
Thanks TB. I replaced mine with your hover modification 
 with 
slight changes:












*.tc-tiddler-frame .tc-titlebar button{opacity: 0;transition: 
opacity .3s ease-in-out;}.tc-tiddler-title:hover .tc-titlebar 
button{zoom: 1;filter: alpha(opacity=100);opacity: 1;}*
Now toolbar icons will show only when hovered over the top part. I also 
removed few lines (browser engine specific? still worked in FF)
and reduced the time for the icons to be visible.

On Thursday, 24 September 2015 12:28:24 UTC+5:30, Tobias Beer wrote:
>
> Added instructions here:
>
> Mouseover Toolbar Visibility @ tb5 
> 
>
> Also includes an example for a smooth transition effect that I adopted 
> right away.
>
> Be careful that it's .tc-titlebar button not .titlebar button.
>
> To have the toolbar show when hovering the tiddler and not just its 
> titlebar, use
>
> .tc-tiddler-frame .tc-titlebar button {
> opacity: 0;
> }
> .tc-tiddler-frame:hover .tc-titlebar button {
> opacity: 1;
> }
>
> Best wishes,
>
> — tb 
>

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9193e7f6-ee5d-4c7a-81cc-1794691177f6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] Hide Toolbar

2015-09-23 Thread Leopold Bloom

My wiki used to hide the buttons using the CSS from JR but now it does not. 
Maybe because I updated TW.

This work:

.tc-tiddler-controls{ opacity: 0; }

.tc-tiddler-controls:hover{ opacity: 1; }



On Monday, 10 February 2014 23:01:36 UTC+5:30, Jeremy Ruston wrote:
>
> Here's one way to make the entire tiddler toolbar invisible until it is 
> hovered:
>
> .titlebar button {
> opacity: 0;
> }
> .titlebar:hover button {
> opacity: 1;
> }
>
> (Put those definitions in a tiddler tagged $:/tags/stylesheet)
>
> Best wishes
>
> 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 tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/0523613e-4f65-4e21-9582-cadb0dd58ee5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Version confusion for new users

2015-09-13 Thread Leopold Bloom
WHY not just run another wiki where collaboration is permitted live? 
DokuWiki is perfectly capable to do this. Can't we use a DokuWIki instance 
till TiddlyWiki 5 is ready for collaboration?

Or is there a NIH (not invented here) problem with using a 'competing' 
software?

On Saturday, 12 September 2015 22:32:25 UTC+5:30, Mat wrote:
>
> There is no equivalent for TW5 and the main problem is that we currently 
> don't have the infrastructure to let community members collectively build 
> up a TW, at least not in any practical way. This will probably be solved 
> when we enable TiddlyWikis to interact ("the Federation") and 
> fetch/assemble data from other TWs but this is not yet implemented.
>
> The closest thing we come to a community-info site is, I'm sad to say, 
> this place i.e this google group.
>

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/de9df96a-0f5e-4190-abbe-363f142854b5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Make Recent show only newly created tiddlers (remove recently edited)

2015-09-08 Thread Leopold Bloom
I make slight changes to my tiddlers all the time and this put those 
tiddlers in the recent tab in the sidebar.

Can I get two tabs with 1. Recent modified and 2. Recent (created)

Is it possible to do this without too much tinkering?

Thanks

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/be515cae-dba3-4cb9-a0ae-3e301eb06537%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] How do install markdown pluggin

2015-08-25 Thread Leopold Bloom
After installing Markdown plugin, how can I make markdown the default 
content type for new (+) tiddlers created?

On Monday, 24 August 2015 04:29:12 UTC+5:30, Jeremy Ruston wrote:

 Hi Walter

 On Sun, Aug 23, 2015 at 11:50 PM, walter byrd walte...@gmail.com 
 javascript: wrote:


 The instructions, which I found here:

 http://tiddlywiki.com/plugins/tiddlywiki/markdown/

 Say to drag a link to the browser window. I did that, but the pluggin did 
 not install. I was just taken to a google page. 


 Just to be clear, you tried to drag the link that's labelled 
 $:/plugins/tiddlywiki/markdown? If you're doing it correctly, you'll see 
 a green bar at the top of the TiddlyWiki page before you release the drag.

 If you're still having problems you can instead install the plugin via the 
 plugin library - go to the Plugins tab of the control panel.

 Let me know how you get on,

 Best wishes

 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+...@googlegroups.com javascript:.
 To post to this group, send email to tiddl...@googlegroups.com 
 javascript:.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/tiddlywiki/a2199d40-b41f-460d-994d-f9f8aec5e338%40googlegroups.com
  
 https://groups.google.com/d/msgid/tiddlywiki/a2199d40-b41f-460d-994d-f9f8aec5e338%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.




 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com javascript:


-- 
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 tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a21441cf-4ad1-4742-bf74-b85198669d7d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Capitalisation of tiddler links

2015-07-09 Thread Leopold Bloom
Hi all

I have been trying out TiddlyWiki. It creates separated tiddlers based on 
the capitalisation of links in wikitext. Is there a way to avoid creating 
separate tiddlers for capitalised and non-capitalised links? 

If I have a tiddler called *Grammar* and then I put something like [[
*grammar*]] I want it to refer to same link as [[*Grammar*]]; it creates 
different link based on the capitalisation. I want lowercase *grammar* to 
link to the uppercase on or vice versa. I want internal links to be 
capitalisation blind, is there a setting I can turn off?

Thanks

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/4306fb79-9e9e-4923-9986-9804c8db8269%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Capitalisation of tiddler links

2015-07-09 Thread Leopold Bloom
Thanks for the suggestion Jed. I have read this in the WikiText 
documentation http://tiddlywiki.com/#Linking%20in%20WikiText. 

I am currently using DokuWIki and was expecting a similar behaviour: for 
[[grammar police]]
and [[Grammar Police]] it defaults to lower case URLs and will generate 
grammar_police
(or grammar.police or grammar-police depending on settings). 

I sometimes forget whether I created the capitalised or the non-capitalised 
version.
One advantage with the DokuWIki approach 
https://www.dokuwiki.org/wiki:syntax#internal is that I don't have to 
think when I am
linking something using square brackets. Now I create and publish and when 
a link
doesn't look right I would search for it and then edit it back.

On Friday, 10 July 2015 01:20:58 UTC+5:30, Jed Carty wrote:

 There isn't currently a way to make links ignore case like this. You can 
 get around this by using [[grammar|Grammar]] where the part before the pipe 
 (in this case grammar) is what is displayed as the link and the part after 
 the pipe (Grammer) is the title of the tiddler that is linked to. You can 
 use this to put whatever text you want as the link to a tiddler. Creating 
 something that made links ignore case automatically would probably require 
 making a javascript plugin.


-- 
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 tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/72e07e05-c7b5-4655-a613-98872fefd3cc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Capitalisation of tiddler links

2015-07-09 Thread Leopold Bloom
This is exactly it. Hope you would find to port this.

Offtopic:

How long would it take to port the TiddlyWiki Classic plugins to TW5?

I have seen orders of magnitude more plugins for the TW Classic than for 
TW5. Is it
that TW5 doesn't have as much developer interest as the classic one? In 
third party
sites I have seen many Classic plugins/customisations but virtually zero 
plugins/themes
for TW5

seen any for 

On Friday, 10 July 2015 01:48:42 UTC+5:30, Eric Shulman wrote:

  

 This particular feature was also requested in TWClassic, for which I wrote 
 this plugin:
http://www.tiddlytools.com/#LooseLinksPlugin

 It adds optional case-folding (ignore case) and space-folding (ignore 
 spaces) to explicitly bracketed links (but not automatic WikiWord links). 
  For example, with LooseLinksPlugin installed and enabled, all of the 
 following are recognized as links to a tiddler named CoreTweaks.

 [[CoreTweaks]], [[coreTweaks]], [[core tweaks]], [[CORE TWEAKS]], [[CoRe 
 TwEaKs]], [[coreTWEAKS]]

 I plan on *eventually* re-writing many of my TiddlyTools Classic plugins 
 for TW5, but I haven't really started on that yet.

 -e



-- 
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 tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f4c2ff28-8262-48f8-819a-6c89806d9f0b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.