mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 07:36:18 +00:00
dd6e00687b
* feat: first pass at allowing pragmas to be indented * Added documentation
36 lines
479 B
Plaintext
36 lines
479 B
Plaintext
title: Macros/NestedMacros-indented2
|
|
description: Nested Macros-indented with spaces
|
|
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> |