diff --git a/NOTEBOOK.md b/NOTEBOOK.md index adb9a10..edda744 100644 --- a/NOTEBOOK.md +++ b/NOTEBOOK.md @@ -14,7 +14,7 @@ The table of contents will also automatically populate with the titles provided ### SingleColumn The `SingleColumn` component takes a `title`, `body`, and optional centered `graphic` slot. -Directly enter the title text with no tags needed. Directly populate the other slots with text - no need for divs, at most use some `

` tags for the body and `` for the graphic. +Directly enter the title text with no tags needed. Fill in the other slots with the body content. If you are writing paragraph blocks, I recommend wrapping all the `

` tags with a `

`. ```html diff --git a/src/components/lab-notebook/NotebookBody.vue b/src/components/lab-notebook/NotebookBody.vue index 8b14718..8004b25 100644 --- a/src/components/lab-notebook/NotebookBody.vue +++ b/src/components/lab-notebook/NotebookBody.vue @@ -4,7 +4,7 @@ import TableOfContents from '@/components/lab-notebook/TableOfContents.vue'