{#key key} {#each manifesto as line} {#if line!==""} {#if typeof (line === 'object') && (Object.keys(line)[0]=="ul")}
    {#each line.ul as line2}
  • {line2}
  • {/each}
{:else if typeof (line === 'object') && (Object.keys(line)[0]=="ol")}
    {#each line.ol as line2}
  1. {@html line2}
  2. {/each}
{:else if line.slice(0,3)=="###"}

{@html line.slice(4,line.length)}

{:else if line.slice(0,2)=="##"}

{@html line.slice(3,line.length)}

{:else if line[0]=="#"}

{@html line.slice(2,line.length)}

{:else}

{@html line}

{/if} {/if} {/each} {/key}