mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-12-28 11:00:27 +00:00
39 lines
506 B
Plaintext
39 lines
506 B
Plaintext
title: Conditionals/Nested
|
|
description: Nested conditional shortcut syntax
|
|
type: text/vnd.tiddlywiki-multiple
|
|
tags: [[$:/tags/wiki-test-spec]]
|
|
|
|
title: Output
|
|
|
|
\procedure test(animal)
|
|
<%if [<animal>match[Elephant]] %>
|
|
It is an elephant
|
|
<%else%>
|
|
<%if [<animal>match[Giraffe]] %>
|
|
It is a giraffe
|
|
<%else%>
|
|
It is completely unknown
|
|
<%endif%>
|
|
<%endif%>
|
|
\end
|
|
|
|
<<test "Giraffe">>
|
|
|
|
<<test "Elephant">>
|
|
|
|
<<test "Antelope">>
|
|
|
|
+
|
|
title: ExpectedResult
|
|
|
|
|
|
|
|
It is a giraffe
|
|
|
|
|
|
It is an elephant
|
|
|
|
|
|
It is completely unknown
|
|
|