mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-06 18:16:18 +00:00
32 lines
570 B
Plaintext
32 lines
570 B
Plaintext
|
title: Conditionals/Elseif
|
||
|
description: Elseif conditional shortcut syntax
|
||
|
type: text/vnd.tiddlywiki-multiple
|
||
|
tags: [[$:/tags/wiki-test-spec]]
|
||
|
|
||
|
title: Text
|
||
|
|
||
|
This is a <% if [<something>match[one]] %>Elephant<% elseif [<something>match[two]] %>Antelope<% else %>Crocodile<% endif %>, I think.
|
||
|
+
|
||
|
title: Output
|
||
|
|
||
|
<$let something="one">
|
||
|
{{Text}}
|
||
|
</$let>
|
||
|
|
||
|
<$let something="two">
|
||
|
{{Text}}
|
||
|
</$let>
|
||
|
|
||
|
<$let something="three">
|
||
|
{{Text}}
|
||
|
</$let>
|
||
|
+
|
||
|
title: ExpectedResult
|
||
|
|
||
|
<p>
|
||
|
This is a Elephant, I think.
|
||
|
</p><p>
|
||
|
This is a Antelope, I think.
|
||
|
</p><p>
|
||
|
This is a Crocodile, I think.
|
||
|
</p>
|