mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-06 18:16:18 +00:00
36cf50aa96
Need to do some refactoring of all those isFunctionDefinition/isProcedureDefinition/isWidgetDefinition flags into a single property
33 lines
694 B
Plaintext
33 lines
694 B
Plaintext
title: Genesis/RedefineLet
|
|
description: Using the genesis widget to override the let widget
|
|
type: text/vnd.tiddlywiki-multiple
|
|
tags: [[$:/tags/wiki-test-spec]]
|
|
|
|
title: Output
|
|
|
|
\whitespace trim
|
|
\widget $let
|
|
\whitespace trim
|
|
<$setmultiplevariables $names="[<@params>jsonindexes[]]" $values="[<@params>jsonindexes[]] :map[<@params>jsonget<currentTiddler>addprefix[--]addsuffix[--]]">
|
|
<$slot $name="ts-body"/>
|
|
</$setmultiplevariables>
|
|
\end
|
|
<$let
|
|
one="Elephant"
|
|
$two="Kangaroo"
|
|
$$three="Giraffe"
|
|
>
|
|
(<$text text=<<one>>/>)
|
|
(<$text text=<<$two>>/>)
|
|
(<$text text=<<$$three>>/>)
|
|
</$let>
|
|
+
|
|
title: Definition
|
|
|
|
\whitespace trim
|
|
+
|
|
title: ExpectedResult
|
|
|
|
<p>(--Elephant--)
|
|
(--Kangaroo--)
|
|
(--Giraffe--)</p> |