mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
33 lines
320 B
Plaintext
33 lines
320 B
Plaintext
<c:if test="true">
|
|
A
|
|
</c:if>
|
|
<c:else>
|
|
B
|
|
</c:else>
|
|
,
|
|
<c:if test="false">
|
|
A
|
|
</c:if>
|
|
<c:else>
|
|
B
|
|
</c:else>
|
|
,
|
|
<c:if test="false">
|
|
A
|
|
</c:if>
|
|
<c:else-if test="false">
|
|
B
|
|
</c:else-if>
|
|
<c:else>
|
|
C
|
|
</c:else>
|
|
,
|
|
<div c:if="false">
|
|
A
|
|
</div>
|
|
<div c:else-if="false">
|
|
B
|
|
</div>
|
|
<div c:else>
|
|
C
|
|
</div> |