{#each nodes as node} {#if node.type === 'paragraph'} {#if node.children?.length}

{:else}
{/if} {:else if node.type === 'heading'} {#if node.tag === 'h1'}

{:else if node.tag === 'h2'}

{:else if node.tag === 'h3'}

{:else if node.tag === 'h4'}

{:else if node.tag === 'h5'}
{:else if node.tag === 'h6'}
{/if} {:else if node.type === 'list'} {#if node.tag === 'ol'}
{:else} {/if} {:else if node.type === 'listitem'}
  • {:else if node.type === 'text'} {#if isCode(node.format)} {node.text} {:else if isBold(node.format) && isItalic(node.format)} {node.text} {:else if isBold(node.format)} {node.text} {:else if isItalic(node.format)} {node.text} {:else if isStrikethrough(node.format)} {node.text} {:else if isUnderline(node.format)} {node.text} {:else} {node.text} {/if} {:else if node.type === 'linebreak'}
    {:else if node.type === 'upload'}
    {node.value.alt
    {/if} {/each}