1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-20 03:09:42 +00:00
TiddlyWiki5/editions/test/tiddlers/tests/data/ubertransclusion/CustomWidget-VariableAttribute.tid

31 lines
721 B
Plaintext
Raw Normal View History

2022-04-24 20:24:38 +00:00
title: Ubertransclude/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
<$ubertransclude $tiddler='TiddlerOne' one='Ferret'>
</$ubertransclude>
_
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="body">
Whale
</$slot>
</$parameters>"""
>
<$mywidget $variable="Dingo">
Crocodile
</$mywidget>
</$set>
_
title: ExpectedResult
<p>DingoCrocodile</p>