mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
36 lines
376 B
Plaintext
36 lines
376 B
Plaintext
|
title: Macros/NestedMacros
|
||
|
description: Nested Macros
|
||
|
type: text/vnd.tiddlywiki-multiple
|
||
|
tags: [[$:/tags/wiki-test-spec]]
|
||
|
|
||
|
title: Output
|
||
|
|
||
|
\whitespace trim
|
||
|
|
||
|
\define outer()
|
||
|
\whitespace trim
|
||
|
|
||
|
\define middle()
|
||
|
\whitespace trim
|
||
|
|
||
|
\define inner()
|
||
|
\whitespace trim
|
||
|
|
||
|
Jaguar
|
||
|
|
||
|
\end inner
|
||
|
|
||
|
<<inner>>
|
||
|
|
||
|
\end middle
|
||
|
|
||
|
<<middle>>
|
||
|
|
||
|
\end outer
|
||
|
|
||
|
<<outer>>
|
||
|
|
||
|
+
|
||
|
title: ExpectedResult
|
||
|
|
||
|
<p>Jaguar</p>
|