In this snippet, we had to quote the value of text
in the $wikify
widget (using triple quotes, since the text we were quoting contained single quotes). What goes wrong if we don't quote it? Why do you think this happens?
\procedure myText(text) Text: <<text>>
''OK:'' <<myText "test text">>
<$wikify name="wikitext" text="""<<myText "test text">>""">
''Also OK:'' <$text text=<<wikitext>>/>
</$wikify>
OK: Text: test text
Also OK: Text: test text
Go to answer: Ex:WikifiedQuotation/answer