mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-07 02:26:19 +00:00
31 lines
712 B
Plaintext
31 lines
712 B
Plaintext
title: Transclude/CustomWidget/VariableAttribute
|
|
description: Custom widget definition using an attribute called $variable
|
|
type: text/vnd.tiddlywiki-multiple
|
|
tags: [[$:/tags/wiki-test-spec]]
|
|
|
|
title: Output
|
|
|
|
\whitespace trim
|
|
<$transclude $tiddler='TiddlerOne' one='Ferret'>
|
|
</$transclude>
|
|
_
|
|
title: TiddlerOne
|
|
|
|
\whitespace trim
|
|
<!-- Redefine the <$mywidget> widget by defining a transcludable variable with that name -->
|
|
<$set name="<$mywidget>" value="""\whitespace trim
|
|
<$parameters $variable='Jaguar'>
|
|
<$text text=<<$variable>>/>
|
|
<$slot $name="ts-body">
|
|
Whale
|
|
</$slot>
|
|
</$parameters>"""
|
|
>
|
|
<$mywidget $variable="Dingo">
|
|
Crocodile
|
|
</$mywidget>
|
|
</$set>
|
|
_
|
|
title: ExpectedResult
|
|
|
|
<p>DingoCrocodile</p> |