mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 15:46:18 +00:00
33 lines
705 B
Plaintext
33 lines
705 B
Plaintext
|
title: Transclude/CustomWidget/OverrideTransclude
|
||
|
description: Custom widget definition attempting to override transclude
|
||
|
type: text/vnd.tiddlywiki-multiple
|
||
|
tags: [[$:/tags/wiki-test-spec]]
|
||
|
|
||
|
title: Output
|
||
|
|
||
|
\whitespace trim
|
||
|
<$transclude $tiddler='TiddlerOne' one='Ferret'>
|
||
|
</$transclude>
|
||
|
+
|
||
|
title: TiddlerZero
|
||
|
|
||
|
Antelope
|
||
|
+
|
||
|
title: TiddlerOne
|
||
|
|
||
|
\whitespace trim
|
||
|
<!-- Redefine the <$transclude> widget by defining a transcludable variable with that name -->
|
||
|
\widget $transclude(one:'Jaguar')
|
||
|
\whitespace trim
|
||
|
<$text text=<<one>>/>
|
||
|
<$slot $name="body">
|
||
|
Whale
|
||
|
</$slot>
|
||
|
\end
|
||
|
<$genesis $type="$transclude" $remappable="no" $$tiddler="TiddlerZero">
|
||
|
Crocodile
|
||
|
</$genesis>
|
||
|
+
|
||
|
title: ExpectedResult
|
||
|
|
||
|
<p>Antelope</p>
|