mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-07 10:34:53 +00:00
29 lines
584 B
Plaintext
29 lines
584 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 -->
|
|
\function <$mywidget>(one:'Jaguar')
|
|
\whitespace trim
|
|
<$text text=<<one>>/>
|
|
<$slot $name="ts-body">
|
|
Whale
|
|
</$slot>
|
|
\end
|
|
<$mywidget one="Dingo">
|
|
Crocodile
|
|
</$mywidget>
|
|
_
|
|
title: ExpectedResult
|
|
|
|
<p>DingoCrocodile</p> |