{#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'} {token.text} {:else if token.type === 'strong'} {:else if token.type === 'em'} {:else if token.type === 'codespan'} {unescapeHtml(token.text.replaceAll('&', '&'))} {:else if token.type === 'br'}
{:else if token.type === 'del'} {:else if token.type === 'text'} {unescapeHtml(token.text)} {/if} {/each}