mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 07:36:18 +00:00
cb0d0cfa6d
* First commit * Switched to \end <name> instead of all those repeated backslashes Thanks @kookma. See https://github.com/Jermolene/TiddlyWiki5/pull/7004#issuecomment-1286429236 * Docs update
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> |