mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-07 10:34:53 +00:00
27 lines
595 B
Plaintext
27 lines
595 B
Plaintext
title: Transclude/CustomWidget/ActionWidget
|
|
description: Custom widget definition
|
|
type: text/vnd.tiddlywiki-multiple
|
|
tags: [[$:/tags/wiki-test-spec]]
|
|
|
|
title: Output
|
|
|
|
\whitespace trim
|
|
<$transclude $tiddler='Result'>
|
|
</$transclude>
|
|
_
|
|
title: Actions
|
|
|
|
\whitespace trim
|
|
<!-- Define the <$action-mywidget> widget by defining a transcludable variable with that name -->
|
|
\function <$action-mywidget>(one:'Jaguar')
|
|
\whitespace trim
|
|
<$action-setfield $tiddler="Result" $field="text" $value=<<one>>/>
|
|
\end
|
|
|
|
<$action-mywidget one="Dingo">
|
|
Crocodile
|
|
</$action-mywidget>
|
|
_
|
|
title: ExpectedResult
|
|
|
|
<p>Dingo</p> |