mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 15:46:18 +00:00
20 lines
367 B
Plaintext
20 lines
367 B
Plaintext
|
title: Procedures/Nested
|
||
|
description: Nested Procedures
|
||
|
type: text/vnd.tiddlywiki-multiple
|
||
|
tags: [[$:/tags/wiki-test-spec]]
|
||
|
|
||
|
title: Output
|
||
|
|
||
|
\whitespace trim
|
||
|
\procedure alpha(x)
|
||
|
\procedure beta(y)
|
||
|
<$text text=<<y>>/>
|
||
|
\end beta
|
||
|
<$transclude $variable="beta" y={{{ [<x>addprefix<x>] }}}/>
|
||
|
\end alpha
|
||
|
|
||
|
<<alpha "Elephant">>
|
||
|
+
|
||
|
title: ExpectedResult
|
||
|
|
||
|
<p>ElephantElephant</p>
|