{#await fetchChangelog()}

Loading...

{:then md} {#each parseChangelog(md) as item (item)} {#if typeof item === 'string'}

{item}

{:else if item.type === 'hr'}

{:else}

{#if item.type !== 'default'} {item.content.split(':')[0]} {item.content.split(':').slice(1).join(':').trim()} {:else} {item.content} {/if}

{/if} {/each} {/await}