<script>
import Article from './Article.svelte';
let content1 = `<p>First line</p>`;
let content2 = `<p>Another first line</p>`
let show = false;
$: content = show ? content1 : content2;
</script>
<button on:click={() => show = !show}>
Switch
</button>
<!-- This breaks -->
<Article>
{@html content}
</Article>
<!-- This works fine -->
<!--
<Article>
<div>
{@html content}
</div>
</Article>
-->