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

29 lines
651 B
Plaintext
Raw Normal View History

title: Transclude/CustomWidget/VariableAttribute
2022-04-24 20:24:38 +00:00
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>
+
2022-04-24 20:24:38 +00:00
title: TiddlerOne
\whitespace trim
<!-- Redefine the <$$mywidget> widget by defining a transcludable variable with that name -->
\widget $$mywidget($variable:'Jaguar')
\whitespace trim
<$text text=<<$variable>>/>
<$slot $name="ts-body">
Whale
</$slot>
\end
<$$mywidget $variable="Dingo">
Crocodile
</$$mywidget>
+
2022-04-24 20:24:38 +00:00
title: ExpectedResult
<p>DingoCrocodile</p>