Did Html Template Syntax Change?

Is anyone aware if Appsheet changed the Html template syntax? I have attempted this:

<div class="gridcontainer">
              <p>&lt;&lt;If: ISNOTBLANK([Related Applicants])&gt;&gt;</p>
                <p>&lt;&lt;Start: [Related Applicants]&gt;&gt;</p>
                  <div>
                    &lt;&lt;[Label]&gt;&gt;<br/>
                    &lt;&lt;[Address 1]&gt;&gt;<br/>
                    &lt;&lt;[City]&gt;&gt;, &lt;&lt;[State]&gt;&gt; &lt;&lt;[Zip]&gt;&gt;
                    <p>&lt;&lt;If: ISNOTBLANK([E-Mail])&gt;&gt;</p>
                    <a>&lt;&lt;[E-Mail]&gt;&gt;</a><br/>
                    <br/>
                    <b><i>SENT VIA EMAIL</i></b>
                    <p>&lt;&lt;EndIf&gt;&gt;</p>
                  </div>
                <p>&lt;&lt;End&gt;&gt;</p>
              <p>&lt;&lt;EndIf&gt;&gt;</p>
              <p>&lt;&lt;If: ISNOTBLANK([Related Agents])&gt;&gt;</p>
                <p>&lt;&lt;Start: [Related Agents]&gt;&gt;</p>
                  <div>
                    &lt;&lt;[Label]&gt;&gt;<br/>
                    &lt;&lt;[Address 1]&gt;&gt;<br/>
                    &lt;&lt;[City]&gt;&gt;, &lt;&lt;[State]&gt;&gt; &lt;&lt;[Zip]&gt;&gt;
                    <p>&lt;&lt;If: ISNOTBLANK([E-Mail])&gt;&gt;</p>
                    <a>&lt;&lt;[E-Mail]&gt;&gt;</a><br/>
                    <br/>
                    <b><i>SENT VIA EMAIL</i></b>
                    <p>&lt;&lt;EndIf&gt;&gt;</p>
                  </div>
                <p>&lt;&lt;End&gt;&gt;</p>
              <p>&lt;&lt;EndIf&gt;&gt;</p>
            </div>

But I’m getting this kind of error

It seems that previously

<<Start: Rows>>

Content

<>

was the proper syntax, but now a google search appears to suggest the new syntax is

<<Start: Rows>>Content<>

. It appears that when doing this with a
grid container, the

elements cause a misalignment issue, whereas under the previous syntax the

elements would automatically be escaped/ignored, or if all else failed they could be assigned a class with display:none;. This would not be possible with this perceived new syntax as the entire

element would not be displayed. Does anyone have a similar experience or do you see anything wrong with my code?