mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-04-25 06:40:42 -07:00
32 lines
No EOL
653 B
Text
32 lines
No EOL
653 B
Text
title: Transclude/CustomWidget/Simple
|
|
description: Custom widget definition
|
|
type: text/vnd.tiddlywiki-multiple
|
|
tags: [[$:/tags/wiki-test-spec]]
|
|
|
|
title: Output
|
|
|
|
\whitespace trim
|
|
<$transclude $tiddler='TiddlerOne' one='Ferret'>
|
|
</$transclude>
|
|
+
|
|
title: TiddlerOne
|
|
|
|
\whitespace trim
|
|
<!-- Define the <$$mywidget> widget by defining a transcludable variable with that name -->
|
|
\widget $$mywidget(one:'Jaguar')
|
|
\whitespace trim
|
|
<$text text=<<one>>/>
|
|
<$slot $name="ts-raw">
|
|
Whale
|
|
</$slot>
|
|
\end
|
|
<$$mywidget one="Dingo">
|
|
Crocodile
|
|
</$$mywidget>
|
|
<$$mywidget one="BumbleBee">
|
|
Squirrel
|
|
</$$mywidget>
|
|
+
|
|
title: ExpectedResult
|
|
|
|
<p>DingoCrocodileBumbleBeeSquirrel</p> |