{#each tokens as token}
{#if token.type === 'escape'}
{unescapeHtml(token.text)}
{:else if token.type === 'html'}
{@html token.text}
{:else if token.type === 'link'}
{token.text}
{:else if token.type === 'image'}
{unescapeHtml(token.text.replaceAll('&', '&'))}
{:else if token.type === 'br'}
{:else if token.type === 'del'}
{:else if token.type === 'text'}
{unescapeHtml(token.text)}
{/if}
{/each}