title: Conditionals/Elseif description: Elseif conditional shortcut syntax type: text/vnd.tiddlywiki-multiple tags: [[$:/tags/wiki-test-spec]] title: Text This is a <% if [match[one]] %>Elephant<% elseif [match[two]] %>Antelope<% else %>Crocodile<% endif %>, I think. + title: Output <$let something="one"> {{Text}} <$let something="two"> {{Text}} <$let something="three"> {{Text}} + title: ExpectedResult

This is a Elephant, I think.

This is a Antelope, I think.

This is a Crocodile, I think.