Reprehenderit hamburger pork bresaola, dolore chuck sirloin landjaeger ham hock [tempor meatball](https://baconipsum.com/) alcatra nostrud pork belly. Culpa pork belly doner ea jowl, elit deserunt leberkas cow shoulder ham hock dolore.
@@ -93,94 +81,22 @@ Ham hock id porchetta elit. Sint spare ribs aute buffalo.
Correction: Lorem ispsum dolor sit amet ameno dorime.
`,
- }}"
+ }}
/>
-
-
diff --git a/src/components/BodyText/BodyText.svelte b/src/components/BodyText/BodyText.svelte
index 46ac7256..fca78da8 100644
--- a/src/components/BodyText/BodyText.svelte
+++ b/src/components/BodyText/BodyText.svelte
@@ -1,24 +1,19 @@
-
-
+
diff --git a/src/components/BodyText/stories/docs/component.md b/src/components/BodyText/stories/docs/component.md
deleted file mode 100644
index 2a3fe288..00000000
--- a/src/components/BodyText/stories/docs/component.md
+++ /dev/null
@@ -1,46 +0,0 @@
-The `BodyText` creates the main text of your page. You can pass the `text` prop a [markdown-formatted](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet) string, which will be parsed into paragraphs, headers, lists, blockquotes or whatever else you need.
-
-Use it like this:
-
-```svelte
-
-
-
-```
-
-... or more commonly, you'll use it with a ArchieML doc in the Graphics Kit like this:
-
-```yaml
-[blocks]
-
-type: text
-text: Lorem ipsum ...
-
-... etc.
-:end
-
-[]
-```
-
-```svelte
-
-
-{#each content.blocks as block}
- {#if block.type === 'text'}
-
-
- {/if}
-{/each}
-```