1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-17 10:59:55 +00:00
TiddlyWiki5/editions/test/tiddlers/tests/data/transclude/Parameterised-Nested-Parameters.tid
2024-01-24 13:17:25 +00:00

22 lines
545 B
Plaintext

title: Transclude/Parameterised/NestedParameters
description: Parameterised transclusion with nested parameter widgets
type: text/vnd.tiddlywiki-multiple
tags: [[$:/tags/wiki-test-spec]]
title: Output
\whitespace trim
\procedure elephant(first:"one",second:"two")
\parameters (third:"three")
\parameters (fourth:"four")
<$text text=<<first>>/>/<$text text=<<second>>/>/<$text text=<<third>>/>/<$text text=<<fourth>>/>
\end elephant
<<elephant>>
-
<<elephant "a" "b" "c" "d">>
+
title: ExpectedResult
<p>one/two/three/four</p><p>-a/b/c/d</p>