mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-10 03:49:56 +00:00
36cf50aa96
Need to do some refactoring of all those isFunctionDefinition/isProcedureDefinition/isWidgetDefinition flags into a single property
32 lines
648 B
Plaintext
32 lines
648 B
Plaintext
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-body">
|
|
Whale
|
|
</$slot>
|
|
\end
|
|
<$mywidget one="Dingo">
|
|
Crocodile
|
|
</$mywidget>
|
|
<$mywidget one="BumbleBee">
|
|
Squirrel
|
|
</$mywidget>
|
|
+
|
|
title: ExpectedResult
|
|
|
|
<p>DingoCrocodileBumbleBeeSquirrel</p> |