I want to format tiddlers with a specific tag in a particular way.
I have made two tiddlers
1) called mod:lists:reverse:2
With tag 'erlang_code' and content
%% reverse a list
reverse([], L) -> L;
reverse([H|T], L) -> reverse(T, [H|L]).
2) a tiddler called test_formatting with tag $:/tags/ViewTemplate
and content
<$list filter="[is[current]tag[erlang_code]]">
<button>Compile</button>
<pre>
{{!!text}}
</pre>
</$list>
When I do this the text of the tiddler 1 is rendered twice
(as in the attachment)
How can I get the content to be rendered once inside the body of the $list
macro?
Cheers
/Joe
--
You received this message because you are subscribed to the Google Groups
"TiddlyWikiDev" 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 https://groups.google.com/group/tiddlywikidev.
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywikidev/ba31cc9f-a6f5-42e3-9032-1776c2257403%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.