mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-07 10:34:53 +00:00
719a5614cb
Underscore looked ambiguous; I kept typing dashes by accident
29 lines
599 B
Plaintext
29 lines
599 B
Plaintext
title: Transclude/CustomWidget/TextWidgetOverride
|
|
description: Custom widget definition redefining the text widget
|
|
type: text/vnd.tiddlywiki-multiple
|
|
tags: [[$:/tags/wiki-test-spec]]
|
|
|
|
title: Output
|
|
|
|
\whitespace trim
|
|
<$transclude $tiddler='TiddlerOne'>
|
|
</$transclude>
|
|
+
|
|
title: TiddlerOne
|
|
|
|
\whitespace trim
|
|
<!-- Redefine the <$text> widget by defining a transcludable variable with that name -->
|
|
\function <$text>(text:'Jaguar')
|
|
\whitespace trim
|
|
<$text text=<<text>>/>
|
|
<$slot $name="ts-body">
|
|
Whale
|
|
</$slot>
|
|
\end
|
|
<$text text="Dingo">
|
|
Crocodile
|
|
</$text>
|
|
+
|
|
title: ExpectedResult
|
|
|
|
<p>DingoCrocodile</p> |