I have a macro to show some WikText! That means I need the wikified result.
Which form is the recommended one in TiddlyWiki?
i.
\define mymac(p)
<div class="some-class">
$p$
</div>
\end
ii.
\define mymac(p)
<div class="some-class">
<<__p__>>
</div>
\end
I may call mymac
with attribute values like
<<mymac p:"
Hi TW
* One
* Two
">>
So, I need a block output and inline output based on the value passed to p. I do not like extra paragraphs generated (<p>..</p>
in rendered output) which makes troubles with my css.