mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 15:46:18 +00:00
20 lines
406 B
Plaintext
20 lines
406 B
Plaintext
title: Procedures/Nested/Indented
|
|
description: Nested Procedures that are indented
|
|
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> |