Standardise whitespace in conditional shortcut syntax (#8583)

This commit is contained in:
Jeremy Ruston
2024-09-02 16:51:15 +01:00
committed by GitHub
parent 842605d28e
commit 69637640d2
23 changed files with 85 additions and 85 deletions

View File

@@ -6,23 +6,23 @@ tags: [[$:/tags/wiki-test-spec]]
title: Output
\procedure test(animal)
<% if [<animal>match[Elephant]] %>
<%if [<animal>match[Elephant]] %>
! It is an elephant
<% else %>
<%else%>
<% if [<animal>match[Giraffe]] %>
<%if [<animal>match[Giraffe]] %>
! It is a giraffe
<% else %>
<%else%>
! It is completely unknown
<% endif %>
<%endif%>
<% endif %>
<%endif%>
\end