I'm using the skeeve newTiddler plugin for a button that lets me create a
new tiddler tagged with the one the button is. For example, I have tiddler
A with the button, when I create tiddler B with it it is tagged as A. But I
have a problem, one of my tiddlers has spaces in the title (most of them
actually), and neither of the following codes works as I just end up with
multiple tags, one for each word. If I wrap the code with quotes, brackets
or whatever I just end up with a literal {{!!title}} or <<currentTiddler>>
as tags.
I thought about using fields as a substitute for the title, but since I
have it set for the page TOC I need the tag to be the same as the title.
<$set
name="tag1"
value={{!!title}}>
<$newtiddler
class="tc-btn-med-gray"
title="New word"
skeleton="$:/0/templates/word">
Create word in this category
</$newtiddler>
</$set>
-----------
<$set
name="tag1"
value=<<currentTiddler>>>
<$newtiddler
class="tc-btn-med-gray"
title="New word"
skeleton="$:/0/templates/word">
Create word in this category
</$newtiddler>
</$set>
--
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 [email protected].
To post to this group, send email to [email protected].
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/5d04576a-8069-484b-a36a-3a206d47ecb1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.