You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/js/samples/use-elements-as-anchors/input.html

27 lines
250 B

<div>
{#if a}
<p>a</p>
{/if}
<p>this can be used as an anchor</p>
{#if b}
<p>b</p>
{/if}
{#if c}
<p>c</p>
{/if}
<p>so can this</p>
{#if d}
<p>d</p>
{/if}
<!-- d can use 'null' as its anchor -->
</div>
{#if e}
<p>e</p>
{/if}