Describe the bug
If "less than" is used in a svelte conditional statement and the block contains a wrapping
, vsc does not display the "v" to allow collapse of the block. Use of anything else works. E.G. {#if step > 1} {#if step == 1}
Reproduction
{#if step < 1}
<div>
Not collapsible (Neither <!-- {#if} nor <div> -->)
</div>
{/if}
Expected behaviour
{#if step < 1}
Collapsible (No <div> present)
{/if}
{#if step > 1}
<div>
Collapsible (Both <!-- {#if} and <div> -->)
</div>
{/if}
System Info
Windows
VSCode
Which package is the issue about?
Svelte for VS Code extension
Additional Information, eg. Screenshots

Describe the bug
If "less than" is used in a svelte conditional statement and the block contains a wrapping
Reproduction
Expected behaviour
System Info
Windows
VSCode
Which package is the issue about?
Svelte for VS Code extension
Additional Information, eg. Screenshots