1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-20 03:09:42 +00:00
TiddlyWiki5/editions/test/tiddlers/tests/data/functions/WikifiedFunctions.tid

30 lines
604 B
Plaintext
Raw Normal View History

title: Functions/WikifiedFunctions
description: Wikified functions
type: text/vnd.tiddlywiki-multiple
tags: [[$:/tags/wiki-test-spec]]
title: Output
\whitespace trim
\function fn-buffalo(p)
[<p>addsuffix[ with a buffalo]]
\end
\procedure proc-buffalo(p)
<$text text={{{ [<p>addsuffix[ with a buffalo]] }}}/>
\end
\define macro-buffalo(p)
$p$ with a buffalo
\end
<<fn-buffalo "Going to lunch">>
<<proc-buffalo "Going to lunch">>
<<macro-buffalo "Going to lunch">>
+
title: ExpectedResult
<p>Going to lunch with a buffalo</p><p>Going to lunch with a buffalo</p><p>Going to lunch with a buffalo</p>