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