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 @@ has special meaning in tiddler and is used for styling.
Question is how to write {{!!title}} so that it displays @@ or any other character combination that may have special meaning in TW.
Say I created tiddler with the title,
Test @@%+&*[] example
| [ ] { } in tiddler titlesIn 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@@has special meaning in tiddler and is used for styling.
Question is how to write
{{!!title}}so that it displays@@or any other character combination that may have special meaning in TW.
<$view field="title" />
<$text text={{!!title}} />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 field="title" />
The above snippet worked flawlessly.
or the <
view text={{!!title}} />
I think you meant,
<$text text={{!!title}} />
Thank you for your prompt response.
I think you meant,
<$text text={{!!title}} />
<svg height="26px" width="32px">
<text x="0" y="24">@​@</text>
</svg>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.