From 1d08d2d7dcfdc322a694280d0e6382a1b783d88a Mon Sep 17 00:00:00 2001 From: Jermolene Date: Fri, 14 Nov 2014 09:24:29 +0000 Subject: [PATCH] Clarify set widget docs --- editions/prerelease/tiddlers/SetWidget.tid | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/editions/prerelease/tiddlers/SetWidget.tid b/editions/prerelease/tiddlers/SetWidget.tid index fc4c39dac..9a1737aea 100644 --- a/editions/prerelease/tiddlers/SetWidget.tid +++ b/editions/prerelease/tiddlers/SetWidget.tid @@ -24,7 +24,7 @@ The simplest way of using set variable widget assigns a string to a variable. Th ``` <$set name="myVariable" value="Some text"> -<> +<$text text=<>/> ``` @@ -32,7 +32,7 @@ Both the name and value attributes can be transcluded. For example: ``` <$set name=<> value={{template!!text}}> -<> +<$text text=<>/> ``` @@ -42,7 +42,7 @@ This form of the set variable widget chooses one of two specified values accordi ``` <$set name="myVariable" filter="[all[current]field:title[myMagicTitle]]" value="It's magic" emptyValue="It's not magic"> -<> +<$text text=<>/> ``` @@ -52,6 +52,6 @@ This form of the set variable widget evaluates the filter and assigns the result ``` <$set name="myVariable" filter="[tag[Introduction]]"> -<> +<$text text=<>/> ```