diff --git a/.gitignore b/.gitignore index bc0541fef..5ead398a2 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,4 @@ release /test-results/ /playwright-report/ /playwright/.cache/ +.env \ No newline at end of file diff --git a/.todo.txt b/.todo.txt new file mode 100644 index 000000000..446b47ddc --- /dev/null +++ b/.todo.txt @@ -0,0 +1,7 @@ + +review toolbar code +fix design of menus (smaller items, border?) + +see if addToHistory: false is needed +track last affected position to update toolbar +enable / disable show selection plugin \ No newline at end of file diff --git a/examples/01-basic/01-minimal/.bnexample.json b/examples/01-basic/01-minimal/.bnexample.json index 6d4a02dd5..e5881792b 100644 --- a/examples/01-basic/01-minimal/.bnexample.json +++ b/examples/01-basic/01-minimal/.bnexample.json @@ -2,5 +2,8 @@ "playground": true, "docs": true, "author": "matthewlipski", - "tags": ["Basic"] + "tags": ["Basic"], + "dependencies": { + "blocknote/ai": "latest" + } } diff --git a/examples/01-basic/01-minimal/App.tsx b/examples/01-basic/01-minimal/App.tsx index a3b92bafd..3d8d9df9d 100644 --- a/examples/01-basic/01-minimal/App.tsx +++ b/examples/01-basic/01-minimal/App.tsx @@ -1,12 +1,95 @@ +import { + AIBlock, + AIBlockToolbarProsemirrorPlugin, + AIButton, + AIShowSelectionPlugin, + BlockNoteAIContextProvider, + BlockNoteAIUI, + aiBlockTypeSelectItems, + en as aiEN, + getAISlashMenuItems, + useBlockNoteAIContext, +} from "@blocknote/ai"; + +import "@blocknote/ai/style.css"; +import { + BlockNoteEditor, + BlockNoteSchema, + defaultBlockSpecs, + en, + filterSuggestionItems, +} from "@blocknote/core"; import "@blocknote/core/fonts/inter.css"; import { BlockNoteView } from "@blocknote/mantine"; import "@blocknote/mantine/style.css"; -import { useCreateBlockNote } from "@blocknote/react"; +import { + FormattingToolbar, + FormattingToolbarController, + SuggestionMenuController, + blockTypeSelectItems, + getDefaultReactSlashMenuItems, + getFormattingToolbarItems, + useCreateBlockNote, +} from "@blocknote/react"; +const schema = BlockNoteSchema.create({ + blockSpecs: { + ...defaultBlockSpecs, + ai: AIBlock, + }, +}); export default function App() { // Creates a new editor instance. - const editor = useCreateBlockNote(); + const editor = useCreateBlockNote({ + schema, + dictionary: { + ...en, + ai: aiEN, + } as any, + extensions: { + // TODO: things will break when user provides different keys. Define name on plugins instead? + aiBlockToolbar: new AIBlockToolbarProsemirrorPlugin(), + aiSelection: new AIShowSelectionPlugin(), + }, + }); // Renders the editor instance using a React component. - return ; + return ( + + + + ( + + {...getFormattingToolbarItems([ + ...blockTypeSelectItems(editor.dictionary), + ...aiBlockTypeSelectItems(aiEN), + ])} + + + )} + /> + + + {/* TODO: Side Menu customization */} + + ); +} + +function SuggestionMenu(props: { editor: BlockNoteEditor }) { + const ctx = useBlockNoteAIContext(); + return ( + + filterSuggestionItems( + [ + ...getDefaultReactSlashMenuItems(props.editor), + ...getAISlashMenuItems(props.editor as any, ctx), // TODO + ], + query + ) + } + /> + ); } diff --git a/examples/01-basic/01-minimal/package.json b/examples/01-basic/01-minimal/package.json index 5f028d3f3..dca33f6a0 100644 --- a/examples/01-basic/01-minimal/package.json +++ b/examples/01-basic/01-minimal/package.json @@ -17,7 +17,8 @@ "@blocknote/mantine": "latest", "@blocknote/shadcn": "latest", "react": "^18.3.1", - "react-dom": "^18.3.1" + "react-dom": "^18.3.1", + "blocknote/ai": "latest" }, "devDependencies": { "@types/react": "^18.0.25", diff --git a/examples/03-ui-components/02-formatting-toolbar-buttons/BlueButton.tsx b/examples/03-ui-components/02-formatting-toolbar-buttons/BlueButton.tsx index 48400a273..ebbf6a580 100644 --- a/examples/03-ui-components/02-formatting-toolbar-buttons/BlueButton.tsx +++ b/examples/03-ui-components/02-formatting-toolbar-buttons/BlueButton.tsx @@ -27,7 +27,7 @@ export function BlueButton() { }, editor); return ( - { editor.toggleStyles({ @@ -37,6 +37,6 @@ export function BlueButton() { }} isSelected={isSelected}> Blue - + ); } diff --git a/examples/03-ui-components/06-suggestion-menus-slash-menu-items/App.tsx b/examples/03-ui-components/06-suggestion-menus-slash-menu-items/App.tsx index 984cf3d4e..a0043c6cb 100644 --- a/examples/03-ui-components/06-suggestion-menus-slash-menu-items/App.tsx +++ b/examples/03-ui-components/06-suggestion-menus-slash-menu-items/App.tsx @@ -16,6 +16,7 @@ import { HiOutlineGlobeAlt } from "react-icons/hi"; // Custom Slash Menu item to insert a block after the current one. const insertHelloWorldItem = (editor: BlockNoteEditor) => ({ + name: "hello_world", title: "Insert Hello World", onItemClick: () => { // Block that the text cursor is currently in. diff --git a/examples/03-ui-components/11-uppy-file-panel/FileReplaceButton.tsx b/examples/03-ui-components/11-uppy-file-panel/FileReplaceButton.tsx index 0761150d1..ad06a10cd 100644 --- a/examples/03-ui-components/11-uppy-file-panel/FileReplaceButton.tsx +++ b/examples/03-ui-components/11-uppy-file-panel/FileReplaceButton.tsx @@ -48,7 +48,7 @@ export const FileReplaceButton = () => { return ( - setIsOpen(!isOpen)} isSelected={isOpen} diff --git a/examples/03-ui-components/link-toolbar-buttons/AlertButton.tsx b/examples/03-ui-components/link-toolbar-buttons/AlertButton.tsx index b393d6077..6e322fca0 100644 --- a/examples/03-ui-components/link-toolbar-buttons/AlertButton.tsx +++ b/examples/03-ui-components/link-toolbar-buttons/AlertButton.tsx @@ -5,12 +5,12 @@ export function AlertButton(props: LinkToolbarProps) { const Components = useComponentsContext()!; return ( - { window.alert(`Link URL: ${props.url}`); }}> Open Alert - + ); } diff --git a/examples/06-custom-schema/01-alert-block/App.tsx b/examples/06-custom-schema/01-alert-block/App.tsx index dcaefdfbd..36ac733ac 100644 --- a/examples/06-custom-schema/01-alert-block/App.tsx +++ b/examples/06-custom-schema/01-alert-block/App.tsx @@ -29,6 +29,7 @@ const schema = BlockNoteSchema.create({ // Slash menu item to insert an Alert block const insertAlert = (editor: typeof schema.BlockNoteEditor) => ({ + name: "alert", title: "Alert", onItemClick: () => { insertOrUpdateBlock(editor, { diff --git a/examples/06-custom-schema/02-suggestion-menus-mentions/App.tsx b/examples/06-custom-schema/02-suggestion-menus-mentions/App.tsx index e86e4594e..42aa46653 100644 --- a/examples/06-custom-schema/02-suggestion-menus-mentions/App.tsx +++ b/examples/06-custom-schema/02-suggestion-menus-mentions/App.tsx @@ -32,6 +32,7 @@ const getMentionMenuItems = ( const users = ["Steve", "Bob", "Joe", "Mike"]; return users.map((user) => ({ + name: user.toLowerCase(), title: user, onItemClick: () => { editor.insertInlineContent([ diff --git a/examples/06-custom-schema/03-font-style/App.tsx b/examples/06-custom-schema/03-font-style/App.tsx index 7c881fbf1..6d0da4e5d 100644 --- a/examples/06-custom-schema/03-font-style/App.tsx +++ b/examples/06-custom-schema/03-font-style/App.tsx @@ -44,7 +44,7 @@ const SetFontStyleButton = () => { const Components = useComponentsContext()!; return ( - } diff --git a/examples/06-custom-schema/04-pdf-file-block/App.tsx b/examples/06-custom-schema/04-pdf-file-block/App.tsx index 077b33152..fc3a6d529 100644 --- a/examples/06-custom-schema/04-pdf-file-block/App.tsx +++ b/examples/06-custom-schema/04-pdf-file-block/App.tsx @@ -30,6 +30,7 @@ const schema = BlockNoteSchema.create({ // Slash menu item to insert a PDF block const insertPDF = (editor: typeof schema.BlockNoteEditor) => ({ + name: "pdf", title: "PDF", onItemClick: () => { insertOrUpdateBlock(editor, { diff --git a/examples/06-custom-schema/react-custom-styles/App.tsx b/examples/06-custom-schema/react-custom-styles/App.tsx index f19533c79..107b86a7e 100644 --- a/examples/06-custom-schema/react-custom-styles/App.tsx +++ b/examples/06-custom-schema/react-custom-styles/App.tsx @@ -55,7 +55,7 @@ const CustomFormattingToolbar = (props: FormattingToolbarProps) => { return ( - { editor.toggleStyles({ @@ -64,8 +64,8 @@ const CustomFormattingToolbar = (props: FormattingToolbarProps) => { }} isSelected={activeStyles.small}> Small - - + { editor.toggleStyles({ @@ -74,7 +74,7 @@ const CustomFormattingToolbar = (props: FormattingToolbarProps) => { }} isSelected={!!activeStyles.fontSize}> Font size - + ); }; diff --git a/examples/vanilla-js/react-vanilla-custom-styles/App.tsx b/examples/vanilla-js/react-vanilla-custom-styles/App.tsx index 813952cda..115a5b556 100644 --- a/examples/vanilla-js/react-vanilla-custom-styles/App.tsx +++ b/examples/vanilla-js/react-vanilla-custom-styles/App.tsx @@ -67,7 +67,7 @@ const CustomFormattingToolbar = (props: FormattingToolbarProps) => { return ( - { editor.toggleStyles({ @@ -76,8 +76,8 @@ const CustomFormattingToolbar = (props: FormattingToolbarProps) => { }} isSelected={activeStyles.small}> Small - - + { editor.toggleStyles({ @@ -86,7 +86,7 @@ const CustomFormattingToolbar = (props: FormattingToolbarProps) => { }} isSelected={!!activeStyles.fontSize}> Font size - + ); }; diff --git a/package-lock.json b/package-lock.json index 5e03ee2e3..a38869981 100644 --- a/package-lock.json +++ b/package-lock.json @@ -154,6 +154,181 @@ } } }, + "node_modules/@ai-sdk/openai": { + "version": "0.0.60", + "resolved": "https://registry.npmjs.org/@ai-sdk/openai/-/openai-0.0.60.tgz", + "integrity": "sha512-NEdDdv3o76jT6UeWHxP6I/lMYcjFQhQGQi/U2gVqW1PEU4Pjaud7tAVSy27IPbiRakg6GOzWrltI2JhZgAI1wg==", + "dependencies": { + "@ai-sdk/provider": "0.0.23", + "@ai-sdk/provider-utils": "1.0.19" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "zod": "^3.0.0" + } + }, + "node_modules/@ai-sdk/provider": { + "version": "0.0.23", + "resolved": "https://registry.npmjs.org/@ai-sdk/provider/-/provider-0.0.23.tgz", + "integrity": "sha512-oAc49O5+xypVrKM7EUU5P/Y4DUL4JZUWVxhejoAVOTOl3WZUEWsMbP3QZR+TrimQIsS0WR/n9UuF6U0jPdp0tQ==", + "dependencies": { + "json-schema": "0.4.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@ai-sdk/provider-utils": { + "version": "1.0.19", + "resolved": "https://registry.npmjs.org/@ai-sdk/provider-utils/-/provider-utils-1.0.19.tgz", + "integrity": "sha512-p02Fq5Mnc8T6nwRBN1Iaou8YXvN1sDS6hbmJaD5UaRbXjizbh+8rpFS/o7jqAHTwf3uHCDitP3pnODyHdc/CDQ==", + "dependencies": { + "@ai-sdk/provider": "0.0.23", + "eventsource-parser": "1.1.2", + "nanoid": "3.3.6", + "secure-json-parse": "2.7.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "zod": "^3.0.0" + }, + "peerDependenciesMeta": { + "zod": { + "optional": true + } + } + }, + "node_modules/@ai-sdk/provider-utils/node_modules/nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/@ai-sdk/react": { + "version": "0.0.61", + "resolved": "https://registry.npmjs.org/@ai-sdk/react/-/react-0.0.61.tgz", + "integrity": "sha512-aLDPeOXsS5mkvZgscZGaG0aPjRZIgIBZvQs5NNWYHHN7weYQCwRRdInyEuTL6ELTP1479L5pD6tbQyTmQCo6gA==", + "dependencies": { + "@ai-sdk/provider-utils": "1.0.19", + "@ai-sdk/ui-utils": "0.0.45", + "swr": "2.2.5" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "react": "^18 || ^19", + "zod": "^3.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "zod": { + "optional": true + } + } + }, + "node_modules/@ai-sdk/solid": { + "version": "0.0.48", + "resolved": "https://registry.npmjs.org/@ai-sdk/solid/-/solid-0.0.48.tgz", + "integrity": "sha512-mPS/TTARUFJoxmaFmRs70ImEIeViEXBg+m5QeXRxkl2tOuKDAbgnc1M8DSz+9aJK7wUwQ7KpuWdp9cl4+gDRrA==", + "dependencies": { + "@ai-sdk/provider-utils": "1.0.19", + "@ai-sdk/ui-utils": "0.0.45" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "solid-js": "^1.7.7" + }, + "peerDependenciesMeta": { + "solid-js": { + "optional": true + } + } + }, + "node_modules/@ai-sdk/svelte": { + "version": "0.0.50", + "resolved": "https://registry.npmjs.org/@ai-sdk/svelte/-/svelte-0.0.50.tgz", + "integrity": "sha512-ZBDuwtVKgx1cxcpkr3plNVleF5D5t2awJhYVPUaT0XUbxlwA725bR0nts0sSWyq9HaoCs/BunB46zJLatvemjA==", + "dependencies": { + "@ai-sdk/provider-utils": "1.0.19", + "@ai-sdk/ui-utils": "0.0.45", + "sswr": "2.1.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "svelte": "^3.0.0 || ^4.0.0" + }, + "peerDependenciesMeta": { + "svelte": { + "optional": true + } + } + }, + "node_modules/@ai-sdk/ui-utils": { + "version": "0.0.45", + "resolved": "https://registry.npmjs.org/@ai-sdk/ui-utils/-/ui-utils-0.0.45.tgz", + "integrity": "sha512-FDGT8kjAfOZogb8FE2+xv8ti/UibIbaEmViqXa1y1Epk97ES2LvCVWRs4gBd4IZylq8pLS2LTQtHj8ItlXL20w==", + "dependencies": { + "@ai-sdk/provider": "0.0.23", + "@ai-sdk/provider-utils": "1.0.19", + "json-schema": "0.4.0", + "secure-json-parse": "2.7.0", + "zod-to-json-schema": "3.23.2" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "zod": "^3.0.0" + }, + "peerDependenciesMeta": { + "zod": { + "optional": true + } + } + }, + "node_modules/@ai-sdk/vue": { + "version": "0.0.52", + "resolved": "https://registry.npmjs.org/@ai-sdk/vue/-/vue-0.0.52.tgz", + "integrity": "sha512-lTb1bMWmijZVBCdBTKXfO6aLC2sntDT5FZXVJb2oY2RBqj3dThH54tk13dKqYDYuu83MuRlGsLjvxCxo7NLTYQ==", + "dependencies": { + "@ai-sdk/provider-utils": "1.0.19", + "@ai-sdk/ui-utils": "0.0.45", + "swrv": "1.0.4" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "vue": "^3.3.4" + }, + "peerDependenciesMeta": { + "vue": { + "optional": true + } + } + }, "node_modules/@alloc/quick-lru": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", @@ -169,7 +344,6 @@ "version": "2.3.0", "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", - "dev": true, "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.24" @@ -1539,9 +1713,9 @@ } }, "node_modules/@babel/helper-string-parser": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.7.tgz", - "integrity": "sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", + "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", "engines": { "node": ">=6.9.0" } @@ -1670,9 +1844,12 @@ } }, "node_modules/@babel/parser": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.7.tgz", - "integrity": "sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==", + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.6.tgz", + "integrity": "sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==", + "dependencies": { + "@babel/types": "^7.25.6" + }, "bin": { "parser": "bin/babel-parser.js" }, @@ -3308,11 +3485,11 @@ } }, "node_modules/@babel/types": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.7.tgz", - "integrity": "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==", + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.6.tgz", + "integrity": "sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==", "dependencies": { - "@babel/helper-string-parser": "^7.24.7", + "@babel/helper-string-parser": "^7.24.8", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" }, @@ -3320,6 +3497,10 @@ "node": ">=6.9.0" } }, + "node_modules/@blocknote/ai": { + "resolved": "packages/ai", + "link": true + }, "node_modules/@blocknote/ariakit": { "resolved": "packages/ariakit", "link": true @@ -3361,6 +3542,43 @@ "resolved": "https://registry.npmjs.org/@braintree/sanitize-url/-/sanitize-url-6.0.4.tgz", "integrity": "sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==" }, + "node_modules/@bundled-es-modules/cookie": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@bundled-es-modules/cookie/-/cookie-2.0.0.tgz", + "integrity": "sha512-Or6YHg/kamKHpxULAdSqhGqnWFneIXu1NKvvfBBzKGwpVsYuFIQ5aBPHDnnoR3ghW1nvSkALd+EF9iMtY7Vjxw==", + "dev": true, + "dependencies": { + "cookie": "^0.5.0" + } + }, + "node_modules/@bundled-es-modules/cookie/node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/@bundled-es-modules/statuses": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@bundled-es-modules/statuses/-/statuses-1.0.1.tgz", + "integrity": "sha512-yn7BklA5acgcBr+7w064fGV+SGIFySjCKpqjcWgBAIfrAkY+4GQTJJHQMeT3V/sgz23VTEVV8TtOmkvJAhFVfg==", + "dev": true, + "dependencies": { + "statuses": "^2.0.1" + } + }, + "node_modules/@bundled-es-modules/tough-cookie": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@bundled-es-modules/tough-cookie/-/tough-cookie-0.1.6.tgz", + "integrity": "sha512-dvMHbL464C0zI+Yqxbz6kZ5TOEp7GLW+pry/RWndAR8MJQAXZ2rPmIs8tziTZjeIyhSNZgZbCePtfSbdWqStJw==", + "dev": true, + "dependencies": { + "@types/tough-cookie": "^4.0.5", + "tough-cookie": "^4.1.4" + } + }, "node_modules/@cloudflare/workerd-darwin-64": { "version": "1.20240129.0", "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20240129.0.tgz", @@ -4222,6 +4440,151 @@ "node": ">=6.9.0" } }, + "node_modules/@inquirer/confirm": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-3.2.0.tgz", + "integrity": "sha512-oOIwPs0Dvq5220Z8lGL/6LHRTEr9TgLHmiI99Rj1PJ1p1czTys+olrgBqZk4E2qC0YTzeHprxSQmoHioVdJ7Lw==", + "dev": true, + "dependencies": { + "@inquirer/core": "^9.1.0", + "@inquirer/type": "^1.5.3" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/core": { + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/@inquirer/core/-/core-9.2.1.tgz", + "integrity": "sha512-F2VBt7W/mwqEU4bL0RnHNZmC/OxzNx9cOYxHqnXX3MP6ruYvZUZAW9imgN9+h/uBT/oP8Gh888J2OZSbjSeWcg==", + "dev": true, + "dependencies": { + "@inquirer/figures": "^1.0.6", + "@inquirer/type": "^2.0.0", + "@types/mute-stream": "^0.0.4", + "@types/node": "^22.5.5", + "@types/wrap-ansi": "^3.0.0", + "ansi-escapes": "^4.3.2", + "cli-width": "^4.1.0", + "mute-stream": "^1.0.0", + "signal-exit": "^4.1.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^6.2.0", + "yoctocolors-cjs": "^2.1.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/core/node_modules/@inquirer/type": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@inquirer/type/-/type-2.0.0.tgz", + "integrity": "sha512-XvJRx+2KR3YXyYtPUUy+qd9i7p+GO9Ko6VIIpWlBrpWwXDv8WLFeHTxz35CfQFUiBMLXlGHhGzys7lqit9gWag==", + "dev": true, + "dependencies": { + "mute-stream": "^1.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/core/node_modules/@types/node": { + "version": "22.5.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.5.5.tgz", + "integrity": "sha512-Xjs4y5UPO/CLdzpgR6GirZJx36yScjh73+2NlLlkFRSoQN8B0DpfXPdZGnvVmLRLOsqDpOfTNv7D9trgGhmOIA==", + "dev": true, + "dependencies": { + "undici-types": "~6.19.2" + } + }, + "node_modules/@inquirer/core/node_modules/cli-width": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz", + "integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==", + "dev": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/@inquirer/core/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/@inquirer/core/node_modules/mute-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-1.0.0.tgz", + "integrity": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@inquirer/core/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@inquirer/core/node_modules/undici-types": { + "version": "6.19.8", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", + "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==", + "dev": true + }, + "node_modules/@inquirer/core/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@inquirer/figures": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.6.tgz", + "integrity": "sha512-yfZzps3Cso2UbM7WlxKwZQh2Hs6plrbjs1QnzQDZhK2DgyCo6D8AaHps9olkNcUFlcYERMqU3uJSp1gmy3s/qQ==", + "dev": true, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/type": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@inquirer/type/-/type-1.5.5.tgz", + "integrity": "sha512-MzICLu4yS7V8AA61sANROZ9vT1H3ooca5dSmI1FjZkzq7o/koMsRfQSzRtFo+F3Ao4Sf1C0bpLKejpKB/+j6MA==", + "dev": true, + "dependencies": { + "mute-stream": "^1.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/type/node_modules/mute-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-1.0.0.tgz", + "integrity": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, "node_modules/@isaacs/cliui": { "version": "8.0.2", "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", @@ -4309,9 +4672,9 @@ } }, "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==" }, "node_modules/@jridgewell/trace-mapping": { "version": "0.3.25", @@ -6872,6 +7235,20 @@ "@octokit/openapi-types": "^18.0.0" } }, + "node_modules/@open-draft/until": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@open-draft/until/-/until-2.1.0.tgz", + "integrity": "sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==", + "dev": true + }, + "node_modules/@opentelemetry/api": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.9.0.tgz", + "integrity": "sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==", + "engines": { + "node": ">=8.0.0" + } + }, "node_modules/@panva/hkdf": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/@panva/hkdf/-/hkdf-1.1.1.tgz", @@ -9200,6 +9577,11 @@ "@types/ms": "*" } }, + "node_modules/@types/diff-match-patch": { + "version": "1.0.36", + "resolved": "https://registry.npmjs.org/@types/diff-match-patch/-/diff-match-patch-1.0.36.tgz", + "integrity": "sha512-xFdR6tkm0MWvBfO8xXCSsinYxHcqkQUlcHeSpMC2ukzOb6lwQAfDmW+Qt0AvlGd8HpsS28qKsB+oPeJn9I39jg==" + }, "node_modules/@types/emoji-mart": { "version": "3.0.14", "resolved": "https://registry.npmjs.org/@types/emoji-mart/-/emoji-mart-3.0.14.tgz", @@ -9349,6 +9731,15 @@ "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.34.tgz", "integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==" }, + "node_modules/@types/mute-stream": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/@types/mute-stream/-/mute-stream-0.0.4.tgz", + "integrity": "sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, "node_modules/@types/node": { "version": "20.14.2", "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.2.tgz", @@ -9415,6 +9806,12 @@ "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", "dev": true }, + "node_modules/@types/statuses": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@types/statuses/-/statuses-2.0.5.tgz", + "integrity": "sha512-jmIUGWrAiwu3dZpxntxieC+1n/5c3mjrImkmOSQ2NC5uP6cYO4aAZDdSmRcI5C1oiTmqlZGHC+/NmJrKogbP5A==", + "dev": true + }, "node_modules/@types/tough-cookie": { "version": "4.0.5", "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz", @@ -9437,6 +9834,12 @@ "integrity": "sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==", "dev": true }, + "node_modules/@types/wrap-ansi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/wrap-ansi/-/wrap-ansi-3.0.0.tgz", + "integrity": "sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==", + "dev": true + }, "node_modules/@typescript-eslint/eslint-plugin": { "version": "5.62.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", @@ -10111,6 +10514,106 @@ "@types/estree": "^1.0.0" } }, + "node_modules/@vue/compiler-core": { + "version": "3.5.9", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.9.tgz", + "integrity": "sha512-KE1sCdwqSKq0CQ/ltg3XnlMTKeinjegIkuFsuq9DKvNPmqLGdmI51ChZdGBBRXIvEYTLm8X/JxOuBQ1HqF/+PA==", + "peer": true, + "dependencies": { + "@babel/parser": "^7.25.3", + "@vue/shared": "3.5.9", + "entities": "^4.5.0", + "estree-walker": "^2.0.2", + "source-map-js": "^1.2.0" + } + }, + "node_modules/@vue/compiler-dom": { + "version": "3.5.9", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.9.tgz", + "integrity": "sha512-gEAURwPo902AsJF50vl59VaWR+Cx6cX9SoqLYHu1jq9hDbmQlXvpZyYNIIbxa2JTJ+FD/oBQweVUwuTQv79KTg==", + "peer": true, + "dependencies": { + "@vue/compiler-core": "3.5.9", + "@vue/shared": "3.5.9" + } + }, + "node_modules/@vue/compiler-sfc": { + "version": "3.5.9", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.9.tgz", + "integrity": "sha512-kp9qawcTXakYm0TN6YAwH24IurSywoXh4fWhRbLu0at4UVyo994bhEzJlQn82eiyqtut4GjkQodSfn8drFbpZQ==", + "peer": true, + "dependencies": { + "@babel/parser": "^7.25.3", + "@vue/compiler-core": "3.5.9", + "@vue/compiler-dom": "3.5.9", + "@vue/compiler-ssr": "3.5.9", + "@vue/shared": "3.5.9", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.11", + "postcss": "^8.4.47", + "source-map-js": "^1.2.0" + } + }, + "node_modules/@vue/compiler-ssr": { + "version": "3.5.9", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.9.tgz", + "integrity": "sha512-fb1g2mQv32QzIei76rlXRTz08Grw+ZzBXSQfHo4StGFutm/flyebw3dGJkexKwcU3GjX9s5fIGjEv/cjO8j8Yw==", + "peer": true, + "dependencies": { + "@vue/compiler-dom": "3.5.9", + "@vue/shared": "3.5.9" + } + }, + "node_modules/@vue/reactivity": { + "version": "3.5.9", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.9.tgz", + "integrity": "sha512-88ApgNZ6yPYpyYkTfXzcbWk6O8+LrPRIpa/U4AdeTzpfRUO+EUt5jemnTBVSlAUNmlYY96xa5feUNEq+BouLog==", + "peer": true, + "dependencies": { + "@vue/shared": "3.5.9" + } + }, + "node_modules/@vue/runtime-core": { + "version": "3.5.9", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.9.tgz", + "integrity": "sha512-YAeP0zNkjSl5mEc1NxOg9qoAhLNbREElHAhfYbMXT57oF0ixehEEJWBhg2uvVxslCGh23JhpEAyMvJrJHW9WGg==", + "peer": true, + "dependencies": { + "@vue/reactivity": "3.5.9", + "@vue/shared": "3.5.9" + } + }, + "node_modules/@vue/runtime-dom": { + "version": "3.5.9", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.9.tgz", + "integrity": "sha512-5Oq/5oenpB9lw94moKvOHqBDEaMSyDmcu2HS8AtAT6/pwdo/t9fR9aVtLh6FzYGGqZR9yRfoHAN6P7goblq1aA==", + "peer": true, + "dependencies": { + "@vue/reactivity": "3.5.9", + "@vue/runtime-core": "3.5.9", + "@vue/shared": "3.5.9", + "csstype": "^3.1.3" + } + }, + "node_modules/@vue/server-renderer": { + "version": "3.5.9", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.9.tgz", + "integrity": "sha512-tbuUsZfMWGazR9LXLNiiDSTwkO8K9sLyR70diY+FbQmKmh7236PPz4jkTxymelV8D89IJUGtbfe4VdmpHkmuxg==", + "peer": true, + "dependencies": { + "@vue/compiler-ssr": "3.5.9", + "@vue/shared": "3.5.9" + }, + "peerDependencies": { + "vue": "3.5.9" + } + }, + "node_modules/@vue/shared": { + "version": "3.5.9", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.9.tgz", + "integrity": "sha512-8wiT/m0mnsLhTME0mPgc57jv+4TipRBSAAmheUdYgiOaO6AobZPNOmm87ub4np65VVDgLcWxc+Edc++5Wyz1uA==", + "peer": true + }, "node_modules/@webassemblyjs/ast": { "version": "1.12.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", @@ -10427,6 +10930,71 @@ "node": ">=8" } }, + "node_modules/ai": { + "version": "3.4.5", + "resolved": "https://registry.npmjs.org/ai/-/ai-3.4.5.tgz", + "integrity": "sha512-wZ2QDFy5cdmAU/53tCRBNcmUaLQflML7YLKACtP20DOXGyquW/d6fuJ/Dyuu6f3CiP8Bsb85Pu9bLg39bl77hA==", + "dependencies": { + "@ai-sdk/provider": "0.0.23", + "@ai-sdk/provider-utils": "1.0.19", + "@ai-sdk/react": "0.0.61", + "@ai-sdk/solid": "0.0.48", + "@ai-sdk/svelte": "0.0.50", + "@ai-sdk/ui-utils": "0.0.45", + "@ai-sdk/vue": "0.0.52", + "@opentelemetry/api": "1.9.0", + "eventsource-parser": "1.1.2", + "json-schema": "0.4.0", + "jsondiffpatch": "0.6.0", + "nanoid": "3.3.6", + "secure-json-parse": "2.7.0", + "zod-to-json-schema": "3.23.2" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "openai": "^4.42.0", + "react": "^18 || ^19", + "sswr": "^2.1.0", + "svelte": "^3.0.0 || ^4.0.0", + "zod": "^3.0.0" + }, + "peerDependenciesMeta": { + "openai": { + "optional": true + }, + "react": { + "optional": true + }, + "sswr": { + "optional": true + }, + "svelte": { + "optional": true + }, + "zod": { + "optional": true + } + } + }, + "node_modules/ai/node_modules/nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, "node_modules/ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", @@ -10594,7 +11162,6 @@ "version": "5.3.0", "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", - "dev": true, "dependencies": { "dequal": "^2.0.3" } @@ -11904,6 +12471,28 @@ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, + "node_modules/code-red": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/code-red/-/code-red-1.0.4.tgz", + "integrity": "sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==", + "peer": true, + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.15", + "@types/estree": "^1.0.1", + "acorn": "^8.10.0", + "estree-walker": "^3.0.3", + "periscopic": "^3.1.0" + } + }, + "node_modules/code-red/node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "peer": true, + "dependencies": { + "@types/estree": "^1.0.0" + } + }, "node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", @@ -12287,6 +12876,19 @@ "postcss-value-parser": "^4.0.2" } }, + "node_modules/css-tree": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", + "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", + "peer": true, + "dependencies": { + "mdn-data": "2.0.30", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" + } + }, "node_modules/cssesc": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", @@ -13138,6 +13740,11 @@ "node": ">=0.3.1" } }, + "node_modules/diff-match-patch": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/diff-match-patch/-/diff-match-patch-1.0.5.tgz", + "integrity": "sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==" + }, "node_modules/dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", @@ -14252,8 +14859,7 @@ "node_modules/estree-walker": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", - "dev": true + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" }, "node_modules/esutils": { "version": "2.0.3", @@ -14278,6 +14884,14 @@ "node": ">=0.8.x" } }, + "node_modules/eventsource-parser": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-1.1.2.tgz", + "integrity": "sha512-v0eOBUbiaFojBu2s2NPBfYUoRR9GjcDNvCXVaqEf5vVfpIAh9f8RCo4vXTP8c63QRKCFwoLpMpTdPwwhEKVgzA==", + "engines": { + "node": ">=14.18" + } + }, "node_modules/execa": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", @@ -15263,6 +15877,15 @@ "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", "dev": true }, + "node_modules/graphql": { + "version": "16.9.0", + "resolved": "https://registry.npmjs.org/graphql/-/graphql-16.9.0.tgz", + "integrity": "sha512-GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0" + } + }, "node_modules/gray-matter": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz", @@ -16306,6 +16929,12 @@ "url": "https://opencollective.com/unified" } }, + "node_modules/headers-polyfill": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/headers-polyfill/-/headers-polyfill-4.0.3.tgz", + "integrity": "sha512-IScLbePpkvO846sIwOtOTDjutRMWdXdJmXdMvk6gCBHxFO8d+QKOQedyZSxFTTFYRSmlgSTDtXqqq4pcenBXLQ==", + "dev": true + }, "node_modules/hex-rgb": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/hex-rgb/-/hex-rgb-4.3.0.tgz", @@ -17125,6 +17754,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/is-node-process": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-node-process/-/is-node-process-1.2.0.tgz", + "integrity": "sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==", + "dev": true + }, "node_modules/is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", @@ -17657,6 +18292,11 @@ "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" }, + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + }, "node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", @@ -17699,6 +18339,33 @@ "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" }, + "node_modules/jsondiffpatch": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/jsondiffpatch/-/jsondiffpatch-0.6.0.tgz", + "integrity": "sha512-3QItJOXp2AP1uv7waBkao5nCvhEv+QmJAd38Ybq7wNI74Q+BBmnLn4EDKz6yI9xGAIQoUF87qHt+kc1IVxB4zQ==", + "dependencies": { + "@types/diff-match-patch": "^1.0.36", + "chalk": "^5.3.0", + "diff-match-patch": "^1.0.5" + }, + "bin": { + "jsondiffpatch": "bin/jsondiffpatch.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + } + }, + "node_modules/jsondiffpatch/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, "node_modules/jsonfile": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", @@ -18152,6 +18819,12 @@ "node": ">=8.9.0" } }, + "node_modules/locate-character": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-character/-/locate-character-3.0.0.tgz", + "integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==", + "peer": true + }, "node_modules/locate-path": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", @@ -18261,12 +18934,11 @@ } }, "node_modules/magic-string": { - "version": "0.30.10", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", - "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", - "dev": true, + "version": "0.30.11", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.11.tgz", + "integrity": "sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==", "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.15" + "@jridgewell/sourcemap-codec": "^1.5.0" } }, "node_modules/make-dir": { @@ -18964,6 +19636,12 @@ "url": "https://opencollective.com/unified" } }, + "node_modules/mdn-data": { + "version": "2.0.30", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", + "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", + "peer": true + }, "node_modules/mdurl": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz", @@ -20339,6 +21017,136 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, + "node_modules/msw": { + "version": "2.4.8", + "resolved": "https://registry.npmjs.org/msw/-/msw-2.4.8.tgz", + "integrity": "sha512-a+FUW1m5yT8cV9GBy0L/cbNg0EA4//SKEzgu3qFrpITrWYeZmqfo7dqtM74T2lAl69jjUjjCaEhZKaxG2Ns8DA==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "@bundled-es-modules/cookie": "^2.0.0", + "@bundled-es-modules/statuses": "^1.0.1", + "@bundled-es-modules/tough-cookie": "^0.1.6", + "@inquirer/confirm": "^3.0.0", + "@mswjs/interceptors": "^0.35.6", + "@open-draft/until": "^2.1.0", + "@types/cookie": "^0.6.0", + "@types/statuses": "^2.0.4", + "chalk": "^4.1.2", + "graphql": "^16.8.1", + "headers-polyfill": "^4.0.2", + "is-node-process": "^1.2.0", + "outvariant": "^1.4.2", + "path-to-regexp": "^6.3.0", + "strict-event-emitter": "^0.5.1", + "type-fest": "^4.9.0", + "yargs": "^17.7.2" + }, + "bin": { + "msw": "cli/index.js" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/mswjs" + }, + "peerDependencies": { + "typescript": ">= 4.8.x" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/msw-snapshot": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/msw-snapshot/-/msw-snapshot-5.2.0.tgz", + "integrity": "sha512-vcgRtVkE8ZRoDZ5IDpaJ4Mdwx/SdwnJXMIw9gm3LYSQTQxJBUwda+txMe6Sn20cYDF3a+VpmWhhnQyZXGvAs5A==", + "dev": true, + "peerDependencies": { + "msw": "^2.0.0" + } + }, + "node_modules/msw/node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/msw/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/msw/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/msw/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/msw/node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/msw/node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, "node_modules/multimatch": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-5.0.0.tgz", @@ -21701,6 +22509,12 @@ "node": ">=0.10.0" } }, + "node_modules/outvariant": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/outvariant/-/outvariant-1.4.3.tgz", + "integrity": "sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==", + "dev": true + }, "node_modules/p-finally": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", @@ -22681,6 +23495,12 @@ "node": "14 || >=16.14" } }, + "node_modules/path-to-regexp": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.3.0.tgz", + "integrity": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==", + "dev": true + }, "node_modules/path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", @@ -22723,9 +23543,9 @@ } }, "node_modules/picocolors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", - "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==" + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz", + "integrity": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==" }, "node_modules/picomatch": { "version": "2.3.1", @@ -22876,9 +23696,9 @@ } }, "node_modules/postcss": { - "version": "8.4.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.39.tgz", - "integrity": "sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==", + "version": "8.4.47", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz", + "integrity": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==", "funding": [ { "type": "opencollective", @@ -22895,8 +23715,8 @@ ], "dependencies": { "nanoid": "^3.3.7", - "picocolors": "^1.0.1", - "source-map-js": "^1.2.0" + "picocolors": "^1.1.0", + "source-map-js": "^1.2.1" }, "engines": { "node": "^10 || ^12 || >=14" @@ -25032,6 +25852,11 @@ "node": ">=4" } }, + "node_modules/secure-json-parse": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/secure-json-parse/-/secure-json-parse-2.7.0.tgz", + "integrity": "sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==" + }, "node_modules/semver": { "version": "7.6.2", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", @@ -25265,9 +26090,9 @@ } }, "node_modules/source-map-js": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", - "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", "engines": { "node": ">=0.10.0" } @@ -25380,6 +26205,17 @@ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, + "node_modules/sswr": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/sswr/-/sswr-2.1.0.tgz", + "integrity": "sha512-Cqc355SYlTAaUt8iDPaC/4DPPXK925PePLMxyBKuWd5kKc5mwsG3nT9+Mq2tyguL5s7b4Jg+IRMpTRsNTAfpSQ==", + "dependencies": { + "swrev": "^4.0.0" + }, + "peerDependencies": { + "svelte": "^4.0.0 || ^5.0.0-next.0" + } + }, "node_modules/stackback": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", @@ -25395,6 +26231,15 @@ "get-source": "^2.0.12" } }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/std-env": { "version": "3.7.0", "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.7.0.tgz", @@ -25418,6 +26263,12 @@ "node": ">=10.0.0" } }, + "node_modules/strict-event-emitter": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/strict-event-emitter/-/strict-event-emitter-0.5.1.tgz", + "integrity": "sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==", + "dev": true + }, "node_modules/string_decoder": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", @@ -25781,6 +26632,74 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/svelte": { + "version": "4.2.19", + "resolved": "https://registry.npmjs.org/svelte/-/svelte-4.2.19.tgz", + "integrity": "sha512-IY1rnGr6izd10B0A8LqsBfmlT5OILVuZ7XsI0vdGPEvuonFV7NYEUK4dAkm9Zg2q0Um92kYjTpS1CAP3Nh/KWw==", + "peer": true, + "dependencies": { + "@ampproject/remapping": "^2.2.1", + "@jridgewell/sourcemap-codec": "^1.4.15", + "@jridgewell/trace-mapping": "^0.3.18", + "@types/estree": "^1.0.1", + "acorn": "^8.9.0", + "aria-query": "^5.3.0", + "axobject-query": "^4.0.0", + "code-red": "^1.0.3", + "css-tree": "^2.3.1", + "estree-walker": "^3.0.3", + "is-reference": "^3.0.1", + "locate-character": "^3.0.0", + "magic-string": "^0.30.4", + "periscopic": "^3.1.0" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/svelte/node_modules/axobject-query": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", + "peer": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/svelte/node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "peer": true, + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/swr": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/swr/-/swr-2.2.5.tgz", + "integrity": "sha512-QtxqyclFeAsxEUeZIYmsaQ0UjimSq1RZ9Un7I68/0ClKK/U3LoyQunwkQfJZr2fc22DfIXLNDc2wFyTEikCUpg==", + "dependencies": { + "client-only": "^0.0.1", + "use-sync-external-store": "^1.2.0" + }, + "peerDependencies": { + "react": "^16.11.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/swrev": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/swrev/-/swrev-4.0.0.tgz", + "integrity": "sha512-LqVcOHSB4cPGgitD1riJ1Hh4vdmITOp+BkmfmXRh4hSF/t7EnS4iD+SOTmq7w5pPm/SiPeto4ADbKS6dHUDWFA==" + }, + "node_modules/swrv": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/swrv/-/swrv-1.0.4.tgz", + "integrity": "sha512-zjEkcP8Ywmj+xOJW3lIT65ciY/4AL4e/Or7Gj0MzU3zBJNMdJiT8geVZhINavnlHRMMCcJLHhraLTAiDOTmQ9g==", + "peerDependencies": { + "vue": ">=3.2.26 < 4" + } + }, "node_modules/symbol-tree": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", @@ -26599,7 +27518,7 @@ "version": "5.4.5", "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz", "integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==", - "dev": true, + "devOptional": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -27602,6 +28521,27 @@ "resolved": "https://registry.npmjs.org/vscode-textmate/-/vscode-textmate-8.0.0.tgz", "integrity": "sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==" }, + "node_modules/vue": { + "version": "3.5.9", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.9.tgz", + "integrity": "sha512-nHzQhZ5cjFKynAY2beAm7XtJ5C13VKAFTLTgRYXy+Id1KEKBeiK6hO2RcW1hUjdbHMadz1YzxyHgQigOC54wug==", + "peer": true, + "dependencies": { + "@vue/compiler-dom": "3.5.9", + "@vue/compiler-sfc": "3.5.9", + "@vue/runtime-dom": "3.5.9", + "@vue/server-renderer": "3.5.9", + "@vue/shared": "3.5.9" + }, + "peerDependencies": { + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, "node_modules/w3c-keyname": { "version": "2.2.8", "resolved": "https://registry.npmjs.org/w3c-keyname/-/w3c-keyname-2.2.8.tgz", @@ -28438,6 +29378,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/yoctocolors-cjs": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yoctocolors-cjs/-/yoctocolors-cjs-2.1.2.tgz", + "integrity": "sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/yoga-wasm-web": { "version": "0.3.3", "resolved": "https://registry.npmjs.org/yoga-wasm-web/-/yoga-wasm-web-0.3.3.tgz", @@ -28469,6 +29421,14 @@ "url": "https://github.com/sponsors/colinhacks" } }, + "node_modules/zod-to-json-schema": { + "version": "3.23.2", + "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.23.2.tgz", + "integrity": "sha512-uSt90Gzc/tUfyNqxnjlfBs8W6WSGpNBv0rVsNxP/BVSMHMKGdthPYff4xtCHYloJGM0CFxFsb3NbC0eqPhfImw==", + "peerDependencies": { + "zod": "^3.23.3" + } + }, "node_modules/zwitch": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", @@ -28478,6 +29438,60 @@ "url": "https://github.com/sponsors/wooorm" } }, + "packages/ai": { + "name": "@blocknote/ai", + "version": "0.15.10", + "license": "MPL-2.0", + "dependencies": { + "@ai-sdk/openai": "^0.0.60", + "@blocknote/core": "^0.15.3", + "@blocknote/mantine": "^0.15.3", + "@blocknote/react": "^0.15.3", + "@floating-ui/react": "^0.26.4", + "@tiptap/core": "^2.7.1", + "ai": "^3.4.5", + "prosemirror-state": "^1.4.3", + "prosemirror-view": "^1.33.7", + "react": "^18", + "react-dom": "^18", + "react-icons": "^5.2.1" + }, + "devDependencies": { + "@types/react": "^18.0.25", + "@types/react-dom": "^18.0.9", + "@vitejs/plugin-react": "^4.3.1", + "eslint": "^8.10.0", + "msw": "^2.4.8", + "msw-snapshot": "^5.2.0", + "prettier": "^2.7.1", + "rimraf": "^5.0.5", + "rollup-plugin-webpack-stats": "^0.2.2", + "typescript": "^5.3.3", + "vite": "^5.3.4", + "vite-plugin-eslint": "^1.8.1", + "vite-plugin-externalize-deps": "^0.8.0", + "vitest": "^2.0.3" + }, + "peerDependencies": { + "react": "^18", + "react-dom": "^18" + } + }, + "packages/ai/node_modules/rimraf": { + "version": "5.0.10", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.10.tgz", + "integrity": "sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==", + "dev": true, + "dependencies": { + "glob": "^10.3.7" + }, + "bin": { + "rimraf": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "packages/ariakit": { "name": "@blocknote/ariakit", "version": "0.15.10", @@ -28828,6 +29842,7 @@ "dependencies": { "@aws-sdk/client-s3": "^3.609.0", "@aws-sdk/s3-request-presigner": "^3.609.0", + "@blocknote/ai": "^0.15.10", "@blocknote/ariakit": "^0.15.10", "@blocknote/core": "^0.15.10", "@blocknote/mantine": "^0.15.10", diff --git a/packages/ai/package.json b/packages/ai/package.json new file mode 100644 index 000000000..f3b36fb3a --- /dev/null +++ b/packages/ai/package.json @@ -0,0 +1,95 @@ +{ + "name": "@blocknote/ai", + "homepage": "https://github.com/TypeCellOS/BlockNote", + "private": false, + "license": "MPL-2.0", + "version": "0.15.10", + "files": [ + "dist", + "types", + "src" + ], + "keywords": [ + "react", + "javascript", + "editor", + "typescript", + "prosemirror", + "wysiwyg", + "rich-text-editor", + "notion", + "yjs", + "block-based", + "tiptap" + ], + "description": "A \"Notion-style\" block-based extensible text editor built on top of Prosemirror and Tiptap.", + "type": "module", + "source": "src/index.ts", + "types": "./types/src/index.d.ts", + "main": "./dist/blocknote-ai.umd.cjs", + "module": "./dist/blocknote-ai.js", + "exports": { + ".": { + "types": "./types/src/index.d.ts", + "import": "./dist/blocknote-ai.js", + "require": "./dist/blocknote-ai.umd.cjs" + }, + "./style.css": { + "import": "./dist/style.css", + "require": "./dist/style.css" + } + }, + "scripts": { + "dev": "vite", + "build": "tsc && vite build", + "build-bundled": "tsc && vite build --config vite.config.bundled.ts && git checkout tmp-releases && rm -rf ../../release && mv ../../release-tmp ../../release", + "preview": "vite preview", + "lint": "eslint src --max-warnings 0", + "clean": "rimraf dist && rimraf types", + "test": "vitest --run", + "test-watch": "vitest watch" + }, + "dependencies": { + "@ai-sdk/openai": "^0.0.60", + "@blocknote/core": "^0.15.3", + "@blocknote/mantine": "^0.15.3", + "@blocknote/react": "^0.15.3", + "@floating-ui/react": "^0.26.4", + "@tiptap/core": "^2.7.1", + "ai": "^3.4.5", + "prosemirror-state": "^1.4.3", + "prosemirror-view": "^1.33.7", + "react": "^18", + "react-dom": "^18", + "react-icons": "^5.2.1" + }, + "devDependencies": { + "@types/react": "^18.0.25", + "@types/react-dom": "^18.0.9", + "@vitejs/plugin-react": "^4.3.1", + "eslint": "^8.10.0", + "msw": "^2.4.8", + "msw-snapshot": "^5.2.0", + "prettier": "^2.7.1", + "rimraf": "^5.0.5", + "rollup-plugin-webpack-stats": "^0.2.2", + "typescript": "^5.3.3", + "vite": "^5.3.4", + "vite-plugin-eslint": "^1.8.1", + "vite-plugin-externalize-deps": "^0.8.0", + "vitest": "^2.0.3" + }, + "peerDependencies": { + "react": "^18", + "react-dom": "^18" + }, + "eslintConfig": { + "extends": [ + "../../.eslintrc.js" + ] + }, + "publishConfig": { + "access": "public", + "registry": "https://registry.npmjs.org/" + } +} diff --git a/packages/ai/src/api/api.test.ts b/packages/ai/src/api/api.test.ts new file mode 100644 index 000000000..7e331bb7d --- /dev/null +++ b/packages/ai/src/api/api.test.ts @@ -0,0 +1,45 @@ +import { afterEach, beforeEach, describe, it } from "vitest"; + +import { BlockNoteEditor } from "@blocknote/core"; + +import { defaultSchemaTestCases } from "../testUtil/cases/defaultSchema"; +// import { callLLM } from "./api"; + +const testCases = [defaultSchemaTestCases]; + +describe("Test BlockNote-Prosemirror conversion", () => { + for (const testCase of testCases) { + describe( + "Case: " + testCase.name, + () => { + let editor: BlockNoteEditor; + const div = document.createElement("div"); + + beforeEach(() => { + editor = testCase.createEditor(); + editor.mount(div); + }); + + afterEach(() => { + editor.mount(undefined); + editor._tiptapEditor.destroy(); + editor = undefined as any; + + delete (window as Window & { __TEST_OPTIONS?: any }).__TEST_OPTIONS; + }); + + it("translates simple paragraphs", async () => { + const document = testCase.documents[1]; + editor.replaceBlocks(editor.document, document.blocks); + + // await callLLM(editor, "translate to german"); + + // Add assertions here to check if the document was correctly translated + // For example: + // expect(editor.document).toMatchSnapshot(); + }); + }, + 30000 + ); + } +}); diff --git a/packages/ai/src/api/api.ts b/packages/ai/src/api/api.ts new file mode 100644 index 000000000..57488c0e1 --- /dev/null +++ b/packages/ai/src/api/api.ts @@ -0,0 +1,192 @@ +import { createOpenAI } from "@ai-sdk/openai"; +import { + Block, + BlockNoteEditor, + BlockSchema, + InlineContentSchema, + StyleSchema, +} from "@blocknote/core"; +import { CoreMessage, StreamObjectResult, jsonSchema, streamObject } from "ai"; +import { AIFunction } from "./functions"; +import { addFunction } from "./functions/add"; +import { deleteFunction } from "./functions/delete"; +import { updateFunction } from "./functions/update"; +import { createOperationsArraySchema } from "./schema/operations"; +import { blockNoteSchemaToJSONSchema } from "./schema/schemaToJSONSchema"; + +// TODO don't include child block +export function createMessagesForLLM(opts: { + editor: BlockNoteEditor; + prompt: string; + document: any; +}): Array { + if (opts.editor.getSelection()) { + return [ + { + role: "system", + content: `You're manipulating a text document. Make sure to follow the json schema provided. + The user selected everything between [$! and !$], including blocks in between.`, + }, + { + role: "system", + content: JSON.stringify( + suffixIDs(opts.editor.getSelectionWithMarkers() as any) + ), + }, + { + role: "system", + content: + "Make sure to ONLY affect the selected text and blocks (split words if necessary), and don't include the markers in the response.", + }, + { + role: "user", + content: opts.prompt, + }, + ]; + } + return [ + { + role: "system", + content: + "You're manipulating a text document. Make sure to follow the json schema provided. This is the document:", + }, + { + role: "system", + content: JSON.stringify(suffixIDs(opts.document)), + }, + { + role: "system", + content: + "This would be an example block: \n" + + JSON.stringify({ + type: "paragraph", + props: {}, + content: [ + { + type: "text", + text: "Bold text", + styles: { + bold: true, + }, + }, + { + type: "text", + text: " and italic text", + styles: { + italic: true, + }, + }, + ], + }), + }, + { + role: "user", + content: opts.prompt, + }, + ]; +} + +export function suffixIDs< + T extends Block +>(blocks: T[]): T[] { + return blocks.map((block) => ({ + ...block, + id: `${block.id}$`, + children: suffixIDs(block.children), + })); +} + +type CallLLMOptions = { + functions?: AIFunction[]; +} & ( + | { + prompt: string; + } + | { + messages: Array; + } +); + +export async function callLLMStreaming( + editor: BlockNoteEditor, + options: CallLLMOptions & { + _streamObjectOptions?: Partial>[0]>; + } +) { + const withDefaults: Required< + Omit & { messages: CoreMessage[] } + > = { + functions: [updateFunction, addFunction, deleteFunction], + messages: + (options as any).messages || + createMessagesForLLM({ + editor, + prompt: (options as any).prompt, + document: editor.document, + }), + ...options, + }; + // options.streamObjectOptions!. + const apiKey = (import.meta as any).env.VITE_OPEN_AI_API_KEY; + if (!apiKey) { + throw new Error("OpenAI API key not found"); + } + + const model = createOpenAI({ + apiKey, + })("gpt-4o-2024-08-06", {}); + + const ret = await streamObject({ + model, + mode: "tool", + schema: jsonSchema({ + ...createOperationsArraySchema(withDefaults.functions), + $defs: blockNoteSchemaToJSONSchema(editor.schema).$defs as any, + }), + messages: withDefaults.messages, + ...(options._streamObjectOptions as any), + }); + await applyLLMResponse(editor, ret, withDefaults.functions); +} + +export function applyAIOperation( + operation: any, + editor: BlockNoteEditor, + functions: AIFunction[], + operationContext: any +) { + const func = functions.find((func) => func.schema.name === operation.type); + if (!func || !func.validate(operation, editor)) { + console.log("INVALID OPERATION", operation); + return operationContext; + } + return func.apply(operation, editor, operationContext); +} + +export async function applyLLMResponse( + editor: BlockNoteEditor, + response: StreamObjectResult, + functions: AIFunction[] +) { + let numOperationsAppliedCompletely = 0; + let operationContext: any = undefined; + + for await (const partialObject of response.partialObjectStream) { + const operations: [] = partialObject.operations || []; + console.log(operations); + let isFirst = true; + for (const operation of operations.slice(numOperationsAppliedCompletely)) { + operationContext = applyAIOperation( + operation, + editor, + functions, + isFirst ? operationContext : undefined + ); + isFirst = false; + } + numOperationsAppliedCompletely = operations.length - 1; + } +} + +// - cursor position +// - API design (customize context, cursor position, prompt, stream / nostream, validation) diff --git a/packages/ai/src/api/functions/add.ts b/packages/ai/src/api/functions/add.ts new file mode 100644 index 000000000..094859300 --- /dev/null +++ b/packages/ai/src/api/functions/add.ts @@ -0,0 +1,96 @@ +import { BlockNoteEditor } from "@blocknote/core"; +import { validateBlockFunction } from "./validate"; + +const schema = { + name: "add", + description: "Insert new blocks", + parameters: { + referenceId: { + type: "string", + description: "", + }, + position: { + type: "string", + enum: ["before", "after"], + description: + "Whether new block(s) should be inserterd before or after `referenceId`", + }, + blocks: { + items: { + $ref: "#/$defs/block", + // type: "object", + // properties: {}, + }, + type: "array", + }, + }, + required: ["referenceId", "position", "blocks"], +} as const; + +// TODO: document +function applyOperation( + operation: any, + editor: BlockNoteEditor, + operationContext: any +) { + const referenceId = operation.referenceId.slice(0, -1); + + const idsAdded = operationContext || []; + const toUpdate = operation.blocks.slice(0, idsAdded.length); + + for (let i = 0; i < toUpdate.length; i++) { + editor.updateBlock(idsAdded[i], toUpdate[i]); + } + + const toAdd = operation.blocks.slice(idsAdded.length); + if (toAdd.length > 0) { + if (toUpdate.length === 0) { + const ret = editor.insertBlocks(toAdd, referenceId, operation.position); + return [...ret.map((block) => block.id)]; + } + + // insert after the last inserted block part of this operation + const ret = editor.insertBlocks( + toAdd, + idsAdded[idsAdded.length - 1], + "after" + ); + return [...idsAdded, ...ret.map((block) => block.id)]; + } + return idsAdded; +} + +function validateOperation(operation: any, editor: BlockNoteEditor) { + if (operation.type !== schema.name) { + return false; + } + + if (operation.position !== "before" && operation.position !== "after") { + return false; + } + + if (!operation.referenceId?.endsWith("$")) { + return false; + } + + const id = operation.referenceId.slice(0, -1); + const block = editor.getBlock(id); + + if (!block) { + return false; + } + + if (!operation.blocks || operation.blocks.length === 0) { + return false; + } + + return (operation.blocks as []).every((block: any) => + validateBlockFunction(block, editor) + ); +} + +export const addFunction = { + schema, + apply: applyOperation, + validate: validateOperation, +}; diff --git a/packages/ai/src/api/functions/delete.ts b/packages/ai/src/api/functions/delete.ts new file mode 100644 index 000000000..618285b69 --- /dev/null +++ b/packages/ai/src/api/functions/delete.ts @@ -0,0 +1,47 @@ +import { BlockNoteEditor } from "@blocknote/core"; + +const schema = { + name: "delete", + description: "Delete a block", + parameters: { + id: { + type: "string", + description: "id of block to delete", + }, + }, + required: ["id"], +}; + +function applyOperation( + operation: any, + editor: BlockNoteEditor + // operationContext: any +) { + const id: string = operation.id.slice(0, -1); + editor.removeBlocks([id]); +} + +function validateOperation(operation: any, editor: BlockNoteEditor) { + if (operation.type !== schema.name) { + return false; + } + + if (!operation.id?.endsWith("$")) { + return false; + } + + const id = operation.id.slice(0, -1); + const block = editor.getBlock(id); + + if (!block) { + return false; + } + + return true; +} + +export const deleteFunction = { + schema, + apply: applyOperation, + validate: validateOperation, +}; diff --git a/packages/ai/src/api/functions/index.ts b/packages/ai/src/api/functions/index.ts new file mode 100644 index 000000000..9c1bd9126 --- /dev/null +++ b/packages/ai/src/api/functions/index.ts @@ -0,0 +1,8 @@ +import { addFunction } from "./add"; +import { deleteFunction } from "./delete"; +import { updateFunction } from "./update"; + +export type AIFunction = + | typeof addFunction + | typeof deleteFunction + | typeof updateFunction; diff --git a/packages/ai/src/api/functions/update.ts b/packages/ai/src/api/functions/update.ts new file mode 100644 index 000000000..2aaa881cc --- /dev/null +++ b/packages/ai/src/api/functions/update.ts @@ -0,0 +1,58 @@ +import { BlockNoteEditor } from "@blocknote/core"; +import { validateBlockFunction } from "./validate"; + +const schema = { + name: "update", + description: "Update a block", + parameters: { + id: { + type: "string", + description: "id of block to update", + }, + block: { + $ref: "#/$defs/block", + // type: "object", + // properties: {}, + }, + }, + required: ["id", "block"], +}; + +function applyOperation( + operation: any, + editor: BlockNoteEditor + // operationContext: any +) { + const id = operation.id.slice(0, -1); + editor.updateBlock(id, operation.block); +} + +function validateOperation(operation: any, editor: BlockNoteEditor) { + if (operation.type !== schema.name) { + return false; + } + + if (!operation.id?.endsWith("$")) { + return false; + } + + if (!operation.block) { + return false; + } + + const id = operation.id.slice(0, -1); + const block = editor.getBlock(id); + + if (!block) { + console.log("BLOCK NOT FOUND", id); + return false; + } + + return validateBlockFunction(operation.block, editor, block.type); +} + +export const updateFunction = { + schema, + apply: applyOperation, + validate: validateOperation, +}; diff --git a/packages/ai/src/api/functions/validate.ts b/packages/ai/src/api/functions/validate.ts new file mode 100644 index 000000000..772889589 --- /dev/null +++ b/packages/ai/src/api/functions/validate.ts @@ -0,0 +1,67 @@ +import { BlockNoteEditor } from "@blocknote/core"; + +function validateInlineContent(content: any, editor: any): boolean { + const inlineContentConfig = + editor.schema.inlineContentSchema[ + content.type as keyof typeof editor.schema.inlineContentSchema + ]; + + if (!inlineContentConfig) { + return false; + } + + if (inlineContentConfig === "text") { + if (!("text" in content)) { + return false; + } + } + + // TODO: validate link / custom ic content + return true; +} + +export function validateBlockFunction( + block: any, + editor: BlockNoteEditor, + fallbackType?: string +): boolean { + const type = block.type || fallbackType; + const blockConfig = + editor.schema.blockSchema[type as keyof typeof editor.schema.blockSchema]; + + if (!blockConfig) { + return false; + } + + if (block.children) { + // LLM tools are not supposed to edit children at this moment + return false; + } + + if (blockConfig.content === "none") { + if (block.content) { + // no content expected for this block + return false; + } + } else { + if (!block.content || !Array.isArray(block.content)) { + // content expected for this block + return false; + } + + if (blockConfig.content === "table") { + // no validation for table content (TODO) + return true; + } + + if ( + !(block.content as []).every((content: any) => { + return validateInlineContent(content, editor); + }) + ) { + return false; + } + } + // TODO: validate props + return true; +} diff --git a/packages/ai/src/api/schema/mergeSchema.ts b/packages/ai/src/api/schema/mergeSchema.ts new file mode 100644 index 000000000..101ce0871 --- /dev/null +++ b/packages/ai/src/api/schema/mergeSchema.ts @@ -0,0 +1,121 @@ +import type { SimpleJSONObjectSchema } from "../util/JSONSchema"; + +/** + * Merges schemas that only differ by the "type" field. + * @param schemas The array of schema objects to be processed. + * @returns A new array with merged schema objects where applicable. + */ +export function mergeSchemas( + schemas: SimpleJSONObjectSchema[] +): SimpleJSONObjectSchema[] { + const groupedSchemas: { [signature: string]: string[] } = {}; + const signatureToSchema: { [signature: string]: SimpleJSONObjectSchema } = {}; + + schemas.forEach((schemaObj) => { + // Extract the schema properties except for the "type" field + const { type, ...rest } = schemaObj.properties; + const schemaSignature = JSON.stringify(rest); // Generate a signature for comparison + + // If the signature already exists, add the "type" to the enum + if (groupedSchemas[schemaSignature]) { + groupedSchemas[schemaSignature].push(type.enum[0]); + } else { + // Create a new group if it doesn't exist + groupedSchemas[schemaSignature] = [type.enum[0]]; + signatureToSchema[schemaSignature] = schemaObj; + } + }); + + // Create the new merged schema array + const mergedSchemas: SimpleJSONObjectSchema[] = Object.keys( + groupedSchemas + ).map((signature) => { + const baseSchema = signatureToSchema[signature]; + return { + ...baseSchema, + properties: { + ...baseSchema.properties, + type: { + type: "string", + enum: groupedSchemas[signature], + }, + }, + }; + }); + + return mergedSchemas; +} + +// // Example usage: +// const exampleSchemas: Schema[] = [ +// { +// type: "object", +// properties: { +// type: { type: "string", enum: ["paragraph"] }, +// content: { $ref: "#/$defs/inlinecontent" }, +// props: { +// type: "object", +// properties: { +// backgroundColor: { type: "string" }, +// textColor: { type: "string" }, +// textAlignment: { +// type: "string", +// enum: ["left", "center", "right", "justify"], +// }, +// }, +// additionalProperties: false, +// }, +// }, +// additionalProperties: false, +// required: ["type"], +// }, +// { +// type: "object", +// properties: { +// type: { type: "string", enum: ["bulletListItem"] }, +// content: { $ref: "#/$defs/inlinecontent" }, +// props: { +// type: "object", +// properties: { +// backgroundColor: { type: "string" }, +// textColor: { type: "string" }, +// textAlignment: { +// type: "string", +// enum: ["left", "center", "right", "justify"], +// }, +// }, +// additionalProperties: false, +// }, +// }, +// additionalProperties: false, +// required: ["type"], +// }, +// { +// type: "object", +// properties: { +// type: { type: "string", enum: ["heading"] }, +// content: { $ref: "#/$defs/inlinecontent" }, +// props: { +// type: "object", +// properties: { +// backgroundColor: { type: "string" }, +// textColor: { type: "string" }, +// textAlignment: { +// type: "string", +// enum: ["left", "center", "right", "justify"], +// }, +// level: { +// type: "number", +// enum: [1, 2, 3], +// }, +// }, +// additionalProperties: false, +// }, +// }, +// additionalProperties: false, +// required: ["type"], +// }, +// ]; + +// const mergedSchemas = mergeSchemas(exampleSchemas); +// console.log(JSON.stringify(mergedSchemas, null, 2)); diff --git a/packages/ai/src/api/schema/operations.ts b/packages/ai/src/api/schema/operations.ts new file mode 100644 index 000000000..360595a8a --- /dev/null +++ b/packages/ai/src/api/schema/operations.ts @@ -0,0 +1,36 @@ +import { AIFunction } from "../functions"; +import { SimpleJSONObjectSchema } from "../util/JSONSchema"; + +export function functionToOperationJSONSchema(func: AIFunction) { + return { + type: "object", + description: func.schema.description, + properties: { + type: { + type: "string", + enum: [func.schema.name], + }, + ...func.schema.parameters, + }, + required: ["type", ...func.schema.required], + additionalProperties: false, + } as const; +} + +export function createOperationsArraySchema( + functions: AIFunction[] +): SimpleJSONObjectSchema { + return { + type: "object", + properties: { + operations: { + type: "array", + items: { + anyOf: functions.map((op) => functionToOperationJSONSchema(op)), + }, + }, + }, + additionalProperties: false, + required: ["operations"] as string[], + }; +} diff --git a/packages/ai/src/api/schema/schemaToJSONSchema.test.ts b/packages/ai/src/api/schema/schemaToJSONSchema.test.ts new file mode 100644 index 000000000..359e1dc2b --- /dev/null +++ b/packages/ai/src/api/schema/schemaToJSONSchema.test.ts @@ -0,0 +1,42 @@ +import { afterEach, beforeEach, describe, it } from "vitest"; + +import { BlockNoteEditor } from "@blocknote/core"; + +import { defaultSchemaTestCases } from "../../testUtil/cases/defaultSchema"; +import { blockNoteSchemaToJSONSchema } from "./schemaToJSONSchema"; + +const testCases = [defaultSchemaTestCases]; + +describe("Test BlockNote-Prosemirror conversion", () => { + for (const testCase of testCases) { + describe("Case: " + testCase.name, () => { + let editor: BlockNoteEditor; + const div = document.createElement("div"); + + beforeEach(() => { + editor = testCase.createEditor(); + // Note that we don't necessarily need to mount a root + // Currently, we do mount to a root so that it reflects the "production" use-case more closely. + + // However, it would be nice to increased converage and share the same set of tests for these cases: + // - does render to a root + // - does not render to a root + // - runs in server (jsdom) environment using server-util + editor.mount(div); + }); + + afterEach(() => { + editor.mount(undefined); + editor._tiptapEditor.destroy(); + editor = undefined as any; + + delete (window as Window & { __TEST_OPTIONS?: any }).__TEST_OPTIONS; + }); + + it.only("creates json schema", async () => { + console.log(JSON.stringify(blockNoteSchemaToJSONSchema(editor.schema))); + // } + }); + }); + } +}); diff --git a/packages/ai/src/api/schema/schemaToJSONSchema.ts b/packages/ai/src/api/schema/schemaToJSONSchema.ts new file mode 100644 index 000000000..328bebac7 --- /dev/null +++ b/packages/ai/src/api/schema/schemaToJSONSchema.ts @@ -0,0 +1,306 @@ +import { + BlockNoteSchema, + BlockSchema, + InlineContentSchema, + PropSchema, + StyleSchema, + defaultProps, +} from "@blocknote/core"; +import { SimpleJSONObjectSchema } from "../util/JSONSchema"; +import { mergeSchemas } from "./mergeSchema"; +/* +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "type": { + "type": "string", + "enum": ["paragraph", "heading"] + }, + "props": { + "type": "object", + "properties": { + "textColor": { + "type": "string", + "enum": ["default"] + }, + "backgroundColor": { + "type": "string", + "enum": ["default"] + }, + "textAlignment": { + "type": "string", + "enum": ["left"] + }, + "level": { + "type": "integer", + "minimum": 1, + "maximum": 6 + } + }, + "required": ["textColor", "backgroundColor", "textAlignment"], + "additionalProperties": false + }, + "content": { + "type": "array", + "items": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": ["text"] + }, + "text": { + "type": "string" + }, + "styles": { + "type": "object", + "properties": { + "bold": { + "type": "boolean" + }, + "italic": { + "type": "boolean" + } + }, + "additionalProperties": false + } + }, + "required": ["type", "text"], + "additionalProperties": false + } + } + }, + "required": ["id", "type", "props", "content"], + "additionalProperties": false + } + }*/ + +export function styleSchemaToJSONSchema( + schema: StyleSchema +): SimpleJSONObjectSchema { + return { + type: "object", + properties: Object.fromEntries( + Object.entries(schema).map(([key, val]) => { + return [ + key, + { + type: val.propSchema, + }, + ]; + }) + ), + additionalProperties: false, + }; +} + +export function styledTextToJSONSchema() { + return { + type: "object", + properties: { + type: { + type: "string", + enum: ["text"], + }, + text: { + type: "string", + }, + styles: { + $ref: "#/$defs/styles", + }, + }, + additionalProperties: false, + required: ["type", "text"], + }; +} + +export function propSchemaToJSONSchema( + propSchema: PropSchema +): SimpleJSONObjectSchema { + return { + type: "object", + properties: Object.fromEntries( + Object.entries(propSchema).map(([key, val]) => { + return [ + key, + { + type: typeof val.default, + enum: val.values, + }, + ]; + }) + ), + additionalProperties: false, + }; +} + +export function inlineContentSchemaToJSONSchema(schema: InlineContentSchema) { + return { + type: "array", + items: { + anyOf: Object.entries(schema).map(([_key, val]) => { + if (val === "text") { + return { + $ref: "#/$defs/styledtext", + }; + } + if (val === "link") { + return { + type: "object", + properties: { + type: { + type: "string", + enum: ["link"], + }, + content: { + type: "array", + items: { + $ref: "#/$defs/styledtext", + }, + }, + href: { + type: "string", + }, + }, + additionalProperties: false, + required: ["type", "href", "content"], + }; + } + return { + type: "object", + properties: { + type: { + type: "string", + enum: [val.type], + }, + content: + val.content === "styled" + ? { + type: "array", + items: { + $ref: "#/$defs/styledtext", + }, + } + : undefined, + props: { + type: "object", + properties: propSchemaToJSONSchema(val.propSchema), + additionalProperties: false, + }, + }, + additionalProperties: false, + required: ["type", ...(val.content === "styled" ? ["content"] : [])], + }; + }), + }, + }; +} + +export function blockSchemaToJSONSchema(schema: BlockSchema) { + return { + anyOf: mergeSchemas( + Object.entries(schema).map(([_key, val]) => { + return { + type: "object", + properties: { + type: { + type: "string", + enum: [val.type], + }, + content: + val.content === "inline" + ? { $ref: "#/$defs/inlinecontent" } + : val.content === "table" + ? { type: "object", properties: {} } // TODO + : undefined, + // filter out default props (TODO: make option) + props: propSchemaToJSONSchema(val.propSchema), + // Object.fromEntries( + // Object.entries(val.propSchema).filter( + // (key) => typeof (defaultProps as any)[key[0]] === "undefined" + // ) + // ) + // ), + }, + additionalProperties: false, + required: ["type"], + }; + }) + ), + }; +} + +export function blockNoteSchemaToJSONSchema( + schema: Pick< + BlockNoteSchema, + "blockSchema" | "inlineContentSchema" | "styleSchema" + > +) { + schema = schemaOps(schema).removeFileBlocks().removeDefaultProps().get(); + return { + $defs: { + styles: styleSchemaToJSONSchema(schema.styleSchema), + styledtext: styledTextToJSONSchema(), + inlinecontent: inlineContentSchemaToJSONSchema( + schema.inlineContentSchema + ), + block: blockSchemaToJSONSchema(schema.blockSchema), + }, + }; +} + +type Writeable = { -readonly [P in keyof T]: T[P] }; + +export function schemaOps( + schema: Pick< + BlockNoteSchema, + "blockSchema" | "inlineContentSchema" | "styleSchema" + > +) { + const clone: Writeable = JSON.parse( + JSON.stringify({ + blockSchema: schema.blockSchema, + inlineContentSchema: schema.inlineContentSchema, + styleSchema: schema.styleSchema, + }) + ); + return { + removeFileBlocks() { + clone.blockSchema = Object.fromEntries( + Object.entries(clone.blockSchema).filter( + ([_key, val]) => !val.isFileBlock + ) + ); + return this; + }, + removeDefaultProps() { + clone.blockSchema = Object.fromEntries( + Object.entries(clone.blockSchema).map(([key, val]) => { + return [ + key, + { + ...val, + propSchema: Object.fromEntries( + Object.entries(val.propSchema).filter( + (key) => typeof (defaultProps as any)[key[0]] === "undefined" + ) + ) as any, + }, + ]; + }) + ); + return this; + }, + + get() { + return clone; + }, + }; +} diff --git a/packages/ai/src/api/util/JSONSchema.ts b/packages/ai/src/api/util/JSONSchema.ts new file mode 100644 index 000000000..f0061aedc --- /dev/null +++ b/packages/ai/src/api/util/JSONSchema.ts @@ -0,0 +1,8 @@ +export type SimpleJSONObjectSchema = { + type: "object"; + properties: { + [key: string]: any; + }; + required?: string[]; + additionalProperties?: boolean; +}; diff --git a/packages/ai/src/blocks/AIBlockContent/AIBlockContent.tsx b/packages/ai/src/blocks/AIBlockContent/AIBlockContent.tsx new file mode 100644 index 000000000..565e670df --- /dev/null +++ b/packages/ai/src/blocks/AIBlockContent/AIBlockContent.tsx @@ -0,0 +1,90 @@ +import { BlockConfig, PropSchema, defaultProps } from "@blocknote/core"; +import { + createReactBlockSpec, + ReactCustomBlockRenderProps, +} from "@blocknote/react"; +import { KeyboardEvent, useCallback, useState } from "react"; +import { RiSparkling2Fill } from "react-icons/ri"; + +import { mockAIReplaceBlockContent } from "./mockAIFunctions"; + +export const aiPropSchema = { + ...defaultProps, + prompt: { + default: "" as const, + }, + timeGenerated: { + default: 0 as const, + }, +} satisfies PropSchema; + +export const aiBlockConfig = { + type: "ai" as const, + propSchema: aiPropSchema, + content: "inline", +} satisfies BlockConfig; + +export const AIRender = ( + props: ReactCustomBlockRenderProps +) => { + const [generating, setGenerating] = useState(false); + + const replaceContent = useCallback(async () => { + setGenerating(true); + + const prompt = await props.editor.blocksToMarkdownLossy([ + props.block as any, + ]); + await mockAIReplaceBlockContent(props.editor, prompt, props.block); + + setGenerating(false); + + props.editor.updateBlock(props.block, { + props: { + timeGenerated: Date.now(), + }, + }); + }, [props.block, props.editor]); + + const replaceContentOnEnter = useCallback( + async (event: KeyboardEvent) => { + const currentBlock = props.editor.getTextCursorPosition().block; + + if ( + event.key === "Enter" && + !props.editor.getSelection() && + currentBlock.id === props.block.id && + currentBlock.props.prompt === "" + ) { + event.preventDefault(); + event.stopPropagation(); + + await replaceContent(); + } + }, + [props.block, props.editor, replaceContent] + ); + + if (props.block.props.prompt) { + return

; + } + + return ( +

+ + + +
+ ); +}; + +export const AIToExternalHTML = ( + props: ReactCustomBlockRenderProps +) =>

; + +export const AIBlock = createReactBlockSpec(aiBlockConfig, { + render: AIRender, + toExternalHTML: AIToExternalHTML, +}); diff --git a/packages/ai/src/blocks/AIBlockContent/mockAIFunctions.ts b/packages/ai/src/blocks/AIBlockContent/mockAIFunctions.ts new file mode 100644 index 000000000..fff7292da --- /dev/null +++ b/packages/ai/src/blocks/AIBlockContent/mockAIFunctions.ts @@ -0,0 +1,333 @@ +import { Block, BlockIdentifier, BlockNoteEditor } from "@blocknote/core"; +import { TextSelection } from "prosemirror-state"; +import { AIInlineToolbarProsemirrorPlugin } from "../../extensions/AIInlineToolbar/AIInlineToolbarPlugin"; + +const flattenBlocks = ( + blocks: Block[] +): Block[] => { + // Un-nests blocks, as we're using Markdown to convert the blocks to a prompt + // for the AI model anyway. + let noNestedBlocks = false; + while (!noNestedBlocks) { + noNestedBlocks = true; + + for (let i = blocks.length - 1; i >= 0; i--) { + const children = blocks[i].children; + + if (children.length !== 0) { + noNestedBlocks = false; + blocks[i].children = []; + blocks.splice(i + 1, 0, ...children); + } + } + } + + return blocks; +}; + +// Mock function to edit the blocks using AI. Has 3 operation modes: +// - replaceSelection: Replaces the selected text with AI generated text. To +// make things easier, this actually replaces the selected blocks, and the final +// prompt specifies to only modify the selected text. +// - replaceBlock: Replaces a block with AI generated content. The block has to +// be specified when calling the function. +// - insert: Inserts AI generated text at the text cursor position. Assumes that +// a selection isn't active. To make things easier, this actually replaces the +// block containing the text cursor, and the final prompt specifies to only +// append content to it. +export const mockAICall = async (_prompt: string) => + new Promise((resolve) => { + setTimeout(() => { + resolve( + 'Over time, a variety of different cat breeds have emerged. One of these is the Maine Coon, which is one of the largest domesticated cat breeds. Known for their friendly and sociable nature, Maine Coons are often referred to as "gentle giants." They have a distinctive physical appearance, characterized by their tufted ears, bushy tails, and long, shaggy fur that is well-suited for cold climates. Maine Coons are also intelligent and playful, making them excellent companions for families.\n' + ); + }, 1000); + }); + +// Replaces the selected text with AI generated text. To make things easier, +// this actually replaces the selected blocks, and the final prompt specifies +// to only modify the selected text. +export const mockAIReplaceSelection = async ( + editor: BlockNoteEditor, + prompt: string +): Promise[]> => { + const blocks = flattenBlocks(editor.document); + + // Gets selection and blocks size, so we know where to set the selection + // after the content is replaced. + const oldDocSize = editor._tiptapEditor.state.doc.nodeSize; + const startPos = editor._tiptapEditor.state.selection.from; + const endPos = editor._tiptapEditor.state.selection.to; + + const selectedBlocks = editor.getSelection()?.blocks || [ + editor.getTextCursorPosition().block, + ]; + const firstSelectedBlockIndex = blocks.findIndex( + (block) => block.id === selectedBlocks[0].id + ); + const lastSelectedBlockIndex = blocks.findIndex( + (block) => block.id === selectedBlocks[selectedBlocks.length - 1].id + ); + + // We split the blocks to provide the AI model with full context of what + // exactly is selected. + const before = blocks.slice(0, firstSelectedBlockIndex); + const selected = blocks.slice( + firstSelectedBlockIndex, + lastSelectedBlockIndex + 1 + ); + const after = blocks.slice(lastSelectedBlockIndex + 1); + const beforeMarkdown = await editor.blocksToMarkdownLossy(before); + const selectedMarkdown = await editor.blocksToMarkdownLossy(selected); + const afterMarkdown = await editor.blocksToMarkdownLossy(after); + + // We also split the text in the selected section to provide more exact + // context for the selection. + const beforeText = editor._tiptapEditor.state.doc.textBetween( + editor._tiptapEditor.state.selection.$from.start(), + editor._tiptapEditor.state.selection.from + ); + const selectedText = editor._tiptapEditor.state.doc.textBetween( + editor._tiptapEditor.state.selection.from, + editor._tiptapEditor.state.selection.to + ); + const afterText = editor._tiptapEditor.state.doc.textBetween( + editor._tiptapEditor.state.selection.to, + editor._tiptapEditor.state.selection.$to.end() + ); + + const fullPrompt = `Below is the content of an editable Markdown blocks. It's split into sections to show where the user selection is located. + +Content before: +\`\`\` +${beforeMarkdown} +\`\`\` +The Markdown content in the blocks before the selected section. + +Selected section: +\`\`\` +${selectedMarkdown} +\`\`\` +The Markdown content of the selected section. + +Content after: +\`\`\` +${afterMarkdown} +\`\`\` +The Markdown content in the blocks after the selected section. + +Text before: +\`\`\` +${beforeText} +\`\`\` +The text between the start of the selected section and the start of the user selection. + +Selected text: +\`\`\` +${selectedText} +\`\`\` +The user selected text within the selected section. + +Text after: +\`\`\` +${afterText} +\`\`\` +The text between the end of the user selection and the end of the selected section. + +Prompt: +\`\`\` +${prompt} +\`\`\` +The AI prompt provided by the user. + +Provide a version of the selected section where the selected text inside is modified based on the prompt. Provide Markdown only, the response should not contain any additional text. +`; + + const aiResponse = await mockAICall(fullPrompt); + const replacementBlocks = await editor.tryParseMarkdownToBlocks(aiResponse); + editor.replaceBlocks(selectedBlocks, replacementBlocks); + + const newDocSize = editor._tiptapEditor.state.doc.nodeSize; + editor._tiptapEditor.view.dispatch( + editor._tiptapEditor.state.tr.setSelection( + TextSelection.create( + editor._tiptapEditor.state.doc, + startPos, + endPos + newDocSize - oldDocSize + ) + ) + ); + + editor.formattingToolbar.closeMenu(); + editor.focus(); + (editor.extensions["aiInlineToolbar"] as AIInlineToolbarProsemirrorPlugin) // TODO + .open(prompt, "replaceSelection"); + + return selectedBlocks; +}; + +export const mockAIReplaceBlockContent = async ( + editor: BlockNoteEditor, + prompt: string, + blockIdentifier: BlockIdentifier +): Promise[]> => { + const blocks = flattenBlocks(editor.document); + + const blockID = + typeof blockIdentifier === "string" ? blockIdentifier : blockIdentifier.id; + + const selectedBlock = editor.getBlock(blockIdentifier)!; + const selectedBlockIndex = blocks.findIndex((block) => block.id === blockID); + + // We split the blocks to provide the AI model with full context of what + // exactly is selected. + const before = blocks.slice(0, selectedBlockIndex); + const selected = blocks[selectedBlockIndex]; + const after = blocks.slice(selectedBlockIndex + 1); + const beforeMarkdown = await editor.blocksToMarkdownLossy(before); + const selectedMarkdown = await editor.blocksToMarkdownLossy([selected]); + const afterMarkdown = await editor.blocksToMarkdownLossy(after); + + const fullPrompt = `Below is the content of an editable Markdown blocks. It's split into sections to show where the user selection is located. + +Content before: +\`\`\` +${beforeMarkdown} +\`\`\` +The Markdown content in the blocks before the selected section. + +Selected section: +\`\`\` +${selectedMarkdown} +\`\`\` +The Markdown content of the selected section. + +Content after: +\`\`\` +${afterMarkdown} +\`\`\` +The Markdown content in the blocks after the selected section. + +Prompt: +\`\`\` +${prompt} +\`\`\` +The AI prompt provided by the user. + +Replace the selected section with content based on the prompt. Provide Markdown only, the response should not contain any additional text. +`; + + const aiResponse = await mockAICall(fullPrompt); + const replacementBlocks = await editor.tryParseMarkdownToBlocks(aiResponse); + editor.updateBlock(selectedBlock, { + props: { prompt }, + content: replacementBlocks[0].content, + }); + editor.setTextCursorPosition(selectedBlock, "end"); + editor.focus(); + + return [selectedBlock]; +}; + +export const mockAIInsertAfterSelection = async ( + editor: BlockNoteEditor, + prompt: string +): Promise[]> => { + const blocks = flattenBlocks(editor.document); + + // Gets selection and blocks size, so we know where to set the selection + // after the content is replaced. + const oldDocSize = editor._tiptapEditor.state.doc.nodeSize; + const endPos = editor._tiptapEditor.state.selection.to; + + const selection = editor.getSelection(); + const selectedBlock = + selection?.blocks[selection?.blocks.length - 1] || + editor.getTextCursorPosition().block; + const selectedBlockIndex = blocks.findIndex( + (block) => block.id === selectedBlock.id + ); + + // We split the blocks to provide the AI model with full context of what + // exactly is selected. + const before = blocks.slice(0, selectedBlockIndex); + const selected = blocks[selectedBlockIndex]; + const after = blocks.slice(selectedBlockIndex + 1); + const beforeMarkdown = await editor.blocksToMarkdownLossy(before); + const selectedMarkdown = await editor.blocksToMarkdownLossy([selected]); + const afterMarkdown = await editor.blocksToMarkdownLossy(after); + + // We also split the text in the selected section to provide more exact + // context for the selection. + const beforeText = editor._tiptapEditor.state.doc.textBetween( + editor._tiptapEditor.state.selection.$from.start(), + editor._tiptapEditor.state.selection.to + ); + const afterText = editor._tiptapEditor.state.doc.textBetween( + editor._tiptapEditor.state.selection.to, + editor._tiptapEditor.state.selection.$to.end() + ); + + const fullPrompt = `Below is the content of an editable Markdown blocks. It's split into sections to show where the user selection is located. + +Content before: +\`\`\` +${beforeMarkdown} +\`\`\` +The Markdown content in the blocks before the selected section. + +Selected section: +\`\`\` +${selectedMarkdown} +\`\`\` +The Markdown content of the selected section. + +Content after: +\`\`\` +${afterMarkdown} +\`\`\` +The Markdown content in the blocks after the selected section. + +Text before: +\`\`\` +${beforeText} +\`\`\` +The text between the start of the selected section and the text cursor. + +Text after: +\`\`\` +${afterText} +\`\`\` +The text between the text cursor and the end of the selected section. + +Prompt: +\`\`\` +${prompt} +\`\`\` +The AI prompt provided by the user. + +Provide a modified version of the selected section where content based on the prompt is inserted at the text cursor position. Provide Markdown only, the response should not contain any additional text. +`; + + const aiResponse = await mockAICall(fullPrompt); + const replacementBlocks = await editor.tryParseMarkdownToBlocks(aiResponse); + editor.replaceBlocks([selectedBlock], replacementBlocks); + + const newDocSize = editor._tiptapEditor.state.doc.nodeSize; + editor._tiptapEditor.view.dispatch( + editor._tiptapEditor.state.tr.setSelection( + TextSelection.create( + editor._tiptapEditor.state.doc, + endPos, + endPos + newDocSize - oldDocSize + ) + ) + ); + + editor.formattingToolbar.closeMenu(); + editor.focus(); + (editor.extensions["aiInlineToolbar"] as AIInlineToolbarProsemirrorPlugin) // TODO + .open(prompt, "insertAfterSelection"); + + return [selectedBlock]; +}; diff --git a/packages/ai/src/components/AIBlockToolbar/AIBlockToolbar.tsx b/packages/ai/src/components/AIBlockToolbar/AIBlockToolbar.tsx new file mode 100644 index 000000000..864714275 --- /dev/null +++ b/packages/ai/src/components/AIBlockToolbar/AIBlockToolbar.tsx @@ -0,0 +1,40 @@ +import { useComponentsContext } from "@blocknote/react"; +import { ReactNode, useState } from "react"; + +import { AIBlockToolbarProps } from "./AIBlockToolbarProps"; +import { ShowPromptButton } from "./DefaultButtons/ShowPromptButton"; +import { UpdateButton } from "./DefaultButtons/UpdateButton"; + +export const getAIBlockToolbarItems = ( + props: AIBlockToolbarProps & { + updating: boolean; + setUpdating: (updating: boolean) => void; + } +): JSX.Element[] => [ + , + , +]; + +/** + * By default, the AIToolbar component will render with default buttons. + * However, you can override the selects/buttons to render by passing children. + * The children you pass should be: + * + * - Default buttons: Components found within the `/DefaultButtons` directory. + * - Custom buttons: Buttons made using the Components.AIToolbar.Button + * component from the component context. + */ +export const AIBlockToolbar = ( + props: AIBlockToolbarProps & { children?: ReactNode } +) => { + const Components = useComponentsContext()!; + + const [updating, setUpdating] = useState(false); + + return ( + + {props.children || + getAIBlockToolbarItems({ ...props, updating, setUpdating })} + + ); +}; diff --git a/packages/ai/src/components/AIBlockToolbar/AIBlockToolbarController.tsx b/packages/ai/src/components/AIBlockToolbar/AIBlockToolbarController.tsx new file mode 100644 index 000000000..6972e4065 --- /dev/null +++ b/packages/ai/src/components/AIBlockToolbar/AIBlockToolbarController.tsx @@ -0,0 +1,61 @@ +import { BlockSchema, InlineContentSchema, StyleSchema } from "@blocknote/core"; +import { + useBlockNoteEditor, + useUIElementPositioning, + useUIPluginState, +} from "@blocknote/react"; +import { flip, offset } from "@floating-ui/react"; +import { FC } from "react"; + +import { AIBlockToolbarProsemirrorPlugin } from "../../extensions/AIBlockToolbar/AIBlockToolbarPlugin"; +import { AIBlockToolbar } from "./AIBlockToolbar"; +import { AIBlockToolbarProps } from "./AIBlockToolbarProps"; + +export const AIBlockToolbarController = (props: { + aiToolbar?: FC; +}) => { + const editor = useBlockNoteEditor< + BlockSchema, + InlineContentSchema, + StyleSchema + >(); + + if (!editor.extensions.aiBlockToolbar) { + throw new Error( + "AIToolbarController can only be used when BlockNote editor schema contains an AI block" + ); + } + + // TODO + const state = useUIPluginState( + ( + editor.extensions.aiBlockToolbar as AIBlockToolbarProsemirrorPlugin + ).onUpdate.bind( + editor.extensions.aiBlockToolbar as AIBlockToolbarProsemirrorPlugin + ) + ); + + const { isMounted, ref, style, getFloatingProps } = useUIElementPositioning( + state?.show || false, + state?.referencePos || null, + 3000, + { + placement: "top-end", + middleware: [offset(10), flip()], + } + ); + + if (!isMounted || !state) { + return null; + } + + const { prompt } = state; + + const Component = props.aiToolbar || AIBlockToolbar; + + return ( +

+ +
+ ); +}; diff --git a/packages/ai/src/components/AIBlockToolbar/AIBlockToolbarProps.ts b/packages/ai/src/components/AIBlockToolbar/AIBlockToolbarProps.ts new file mode 100644 index 000000000..3dc8b5108 --- /dev/null +++ b/packages/ai/src/components/AIBlockToolbar/AIBlockToolbarProps.ts @@ -0,0 +1,3 @@ +export type AIBlockToolbarProps = { + prompt: string; +}; diff --git a/packages/ai/src/components/AIBlockToolbar/DefaultButtons/ShowPromptButton.tsx b/packages/ai/src/components/AIBlockToolbar/DefaultButtons/ShowPromptButton.tsx new file mode 100644 index 000000000..5ea67aed9 --- /dev/null +++ b/packages/ai/src/components/AIBlockToolbar/DefaultButtons/ShowPromptButton.tsx @@ -0,0 +1,119 @@ +import { + BlockSchemaWithBlock, + InlineContentSchema, + StyleSchema, +} from "@blocknote/core"; +import { useComponentsContext } from "@blocknote/react"; +import { + ChangeEvent, + KeyboardEvent, + useCallback, + useEffect, + useState, +} from "react"; +import { RiSparkling2Fill } from "react-icons/ri"; + +import { useBlockNoteEditor } from "@blocknote/react"; +import { aiBlockConfig } from "../../../blocks/AIBlockContent/AIBlockContent"; +import { mockAIReplaceBlockContent } from "../../../blocks/AIBlockContent/mockAIFunctions"; +import { useAIDictionary } from "../../../i18n/useAIDictionary"; +import { AIBlockToolbarProps } from "../AIBlockToolbarProps"; + +export const ShowPromptButton = ( + props: AIBlockToolbarProps & { + setUpdating: (updating: boolean) => void; + } +) => { + const dict = useAIDictionary(); + const Components = useComponentsContext()!; + + const editor = useBlockNoteEditor< + BlockSchemaWithBlock<"ai", typeof aiBlockConfig>, + InlineContentSchema, + StyleSchema + >(); + + const [opened, setOpened] = useState(false); + const [currentEditingPrompt, setCurrentEditingPrompt] = useState( + props.prompt + ); + + const handleClick = useCallback(() => setOpened(!opened), [opened]); + + const handleEnter = useCallback( + async (event: KeyboardEvent) => { + if (event.key === "Enter") { + event.preventDefault(); + props.setUpdating(true); + setOpened(false); + await mockAIReplaceBlockContent( + editor, + currentEditingPrompt, + editor.getTextCursorPosition().block + ); + props.setUpdating(false); + } + }, + [currentEditingPrompt, editor, props] + ); + + const handleChange = useCallback( + (event: ChangeEvent) => + setCurrentEditingPrompt(event.currentTarget.value), + [] + ); + + useEffect(() => { + const callback = () => setOpened(false); + + editor.domElement.addEventListener("mousedown", callback); + + return () => { + editor.domElement.removeEventListener("mousedown", callback); + }; + }, [editor.domElement]); + + if (!editor.isEditable) { + return null; + } + + return ( + + + } + label={dict.ai_block_toolbar.show_prompt} + onClick={handleClick}> + {dict.ai_block_toolbar.show_prompt} + + + + + } + value={currentEditingPrompt || ""} + autoFocus={true} + placeholder={""} + onKeyDown={handleEnter} + onChange={handleChange} + /> + + + + ); +}; diff --git a/packages/ai/src/components/AIBlockToolbar/DefaultButtons/UpdateButton.tsx b/packages/ai/src/components/AIBlockToolbar/DefaultButtons/UpdateButton.tsx new file mode 100644 index 000000000..47f13c69c --- /dev/null +++ b/packages/ai/src/components/AIBlockToolbar/DefaultButtons/UpdateButton.tsx @@ -0,0 +1,52 @@ +import { + BlockSchemaWithBlock, + InlineContentSchema, + StyleSchema, +} from "@blocknote/core"; +import { useComponentsContext } from "@blocknote/react"; + +import { useBlockNoteEditor } from "@blocknote/react"; +import { aiBlockConfig } from "../../../blocks/AIBlockContent/AIBlockContent"; +import { mockAIReplaceBlockContent } from "../../../blocks/AIBlockContent/mockAIFunctions"; +import { useAIDictionary } from "../../../i18n/useAIDictionary"; +import { AIBlockToolbarProps } from "../AIBlockToolbarProps"; + +export const UpdateButton = ( + props: AIBlockToolbarProps & { + updating: boolean; + setUpdating: (updating: boolean) => void; + } +) => { + const dict = useAIDictionary(); + const Components = useComponentsContext()!; + + const editor = useBlockNoteEditor< + BlockSchemaWithBlock<"ai", typeof aiBlockConfig>, + InlineContentSchema, + StyleSchema + >(); + + if (!editor.isEditable) { + return null; + } + + return ( + { + props.setUpdating(true); + editor.focus(); + await mockAIReplaceBlockContent( + editor, + props.prompt, + editor.getTextCursorPosition().block + ); + props.setUpdating(false); + }}> + {props.updating + ? dict.ai_block_toolbar.updating + : dict.ai_block_toolbar.update} + + ); +}; diff --git a/packages/ai/src/components/AIInlineToolbar/AIInlineToolbar.tsx b/packages/ai/src/components/AIInlineToolbar/AIInlineToolbar.tsx new file mode 100644 index 000000000..d4a3e1a2f --- /dev/null +++ b/packages/ai/src/components/AIInlineToolbar/AIInlineToolbar.tsx @@ -0,0 +1,77 @@ +import { Block } from "@blocknote/core"; +import { useComponentsContext } from "@blocknote/react"; +import { ReactNode, useEffect, useState } from "react"; + +import { useBlockNoteEditor } from "@blocknote/react"; +import { + mockAIInsertAfterSelection, + mockAIReplaceSelection, +} from "../../blocks/AIBlockContent/mockAIFunctions"; +import { AIInlineToolbarProps } from "./AIInlineToolbarProps"; +import { AcceptButton } from "./DefaultButtons/AcceptButton"; +import { RetryButton } from "./DefaultButtons/RetryButton"; +import { RevertButton } from "./DefaultButtons/RevertButton"; + +export const getAIInlineToolbarItems = ( + props: AIInlineToolbarProps & { + originalBlocks: Block[]; + updating: boolean; + setUpdating: (updating: boolean) => void; + } +): JSX.Element[] => [ + , + , + , +]; + +/** + * By default, the AIToolbar component will render with default buttons. + * However, you can override the selects/buttons to render by passing children. + * The children you pass should be: + * + * - Default buttons: Components found within the `/DefaultButtons` directory. + * - Custom buttons: Buttons made using the Components.AIToolbar.Button + * component from the component context. + */ +export const AIInlineToolbar = ( + props: AIInlineToolbarProps & { children?: ReactNode } +) => { + const Components = useComponentsContext()!; + + const editor = useBlockNoteEditor(); + + const [originalBlocks, setOriginalBlocks] = useState[]>( + [] + ); + const [updating, setUpdating] = useState(true); + + useEffect(() => { + // TODO: Throws an error when strict mode is active because the target + // blocks couldn't be found. Works fine otherwise. + if (props.operation === "replaceSelection") { + mockAIReplaceSelection(editor, props.prompt).then((originalBlocks) => { + setOriginalBlocks(originalBlocks); + setUpdating(false); + }); + } else { + mockAIInsertAfterSelection(editor, props.prompt).then( + (originalBlocks) => { + setOriginalBlocks(originalBlocks); + setUpdating(false); + } + ); + } + }, []); + + return ( + + {props.children || + getAIInlineToolbarItems({ + ...props, + originalBlocks, + updating, + setUpdating, + })} + + ); +}; diff --git a/packages/ai/src/components/AIInlineToolbar/AIInlineToolbarController.tsx b/packages/ai/src/components/AIInlineToolbar/AIInlineToolbarController.tsx new file mode 100644 index 000000000..4784bb27a --- /dev/null +++ b/packages/ai/src/components/AIInlineToolbar/AIInlineToolbarController.tsx @@ -0,0 +1,52 @@ +import { BlockSchema, InlineContentSchema, StyleSchema } from "@blocknote/core"; +import { useUIElementPositioning, useUIPluginState } from "@blocknote/react"; +import { flip, offset } from "@floating-ui/react"; +import { FC } from "react"; + +import { useBlockNoteEditor } from "@blocknote/react"; + +import { AIInlineToolbarProsemirrorPlugin } from "../../extensions/AIInlineToolbar/AIInlineToolbarPlugin"; +import { AIInlineToolbar } from "./AIInlineToolbar"; +import { AIInlineToolbarProps } from "./AIInlineToolbarProps"; + +export const AIInlineToolbarController = (props: { + aiToolbar?: FC; +}) => { + const editor = useBlockNoteEditor< + BlockSchema, + InlineContentSchema, + StyleSchema + >(); + + const state = useUIPluginState( + ( + editor.extensions.aiInlineToolbar as AIInlineToolbarProsemirrorPlugin + ).onUpdate.bind( + editor.extensions.aiInlineToolbar as AIInlineToolbarProsemirrorPlugin // TODO + ) + ); + + const { isMounted, ref, style, getFloatingProps } = useUIElementPositioning( + state?.show || false, + state?.referencePos || null, + 3000, + { + placement: "top-start", + middleware: [offset(10), flip()], + } + ); + + if (!isMounted || !state) { + return null; + } + + const { prompt, operation } = state; + + const Component = props.aiToolbar || AIInlineToolbar; + + return ( +
+ +
+ ); +}; diff --git a/packages/ai/src/components/AIInlineToolbar/AIInlineToolbarProps.ts b/packages/ai/src/components/AIInlineToolbar/AIInlineToolbarProps.ts new file mode 100644 index 000000000..4a25f0e80 --- /dev/null +++ b/packages/ai/src/components/AIInlineToolbar/AIInlineToolbarProps.ts @@ -0,0 +1,4 @@ +export type AIInlineToolbarProps = { + prompt: string; + operation: "replaceSelection" | "insertAfterSelection"; +}; diff --git a/packages/ai/src/components/AIInlineToolbar/DefaultButtons/AcceptButton.tsx b/packages/ai/src/components/AIInlineToolbar/DefaultButtons/AcceptButton.tsx new file mode 100644 index 000000000..a10143305 --- /dev/null +++ b/packages/ai/src/components/AIInlineToolbar/DefaultButtons/AcceptButton.tsx @@ -0,0 +1,30 @@ +import { useBlockNoteEditor, useComponentsContext } from "@blocknote/react"; +import { RiCheckFill } from "react-icons/ri"; + +import { AIInlineToolbarProsemirrorPlugin } from "../../../extensions/AIInlineToolbar/AIInlineToolbarPlugin"; +import { useAIDictionary } from "../../../i18n/useAIDictionary"; + +export const AcceptButton = () => { + const dict = useAIDictionary(); + const Components = useComponentsContext()!; + + const editor = useBlockNoteEditor(); + + if (!editor.isEditable) { + return null; + } + + return ( + } + mainTooltip={dict.ai_inline_toolbar.accept} + label={dict.ai_inline_toolbar.accept} + onClick={() => + ( + editor.extensions.aiInlineToolbar as AIInlineToolbarProsemirrorPlugin + ).close() + } // TODO + /> + ); +}; diff --git a/packages/ai/src/components/AIInlineToolbar/DefaultButtons/RetryButton.tsx b/packages/ai/src/components/AIInlineToolbar/DefaultButtons/RetryButton.tsx new file mode 100644 index 000000000..bcd0d5538 --- /dev/null +++ b/packages/ai/src/components/AIInlineToolbar/DefaultButtons/RetryButton.tsx @@ -0,0 +1,38 @@ +import { useBlockNoteEditor, useComponentsContext } from "@blocknote/react"; +import { RiLoopLeftFill } from "react-icons/ri"; + +import { mockAIReplaceSelection } from "../../../blocks/AIBlockContent/mockAIFunctions"; +import { useAIDictionary } from "../../../i18n/useAIDictionary"; +import { AIInlineToolbarProps } from "../AIInlineToolbarProps"; + +export const RetryButton = ( + props: AIInlineToolbarProps & { + updating: boolean; + setUpdating: (updating: boolean) => void; + } +) => { + const dict = useAIDictionary(); + const Components = useComponentsContext()!; + + const editor = useBlockNoteEditor(); + + if (!editor.isEditable) { + return null; + } + + return ( + } + mainTooltip={dict.ai_inline_toolbar.retry} + label={dict.ai_inline_toolbar.retry} + onClick={async () => { + props.setUpdating(true); + // editor.focus(); + await mockAIReplaceSelection(editor, props.prompt); + props.setUpdating(false); + }}> + {props.updating && dict.ai_inline_toolbar.updating} + + ); +}; diff --git a/packages/ai/src/components/AIInlineToolbar/DefaultButtons/RevertButton.tsx b/packages/ai/src/components/AIInlineToolbar/DefaultButtons/RevertButton.tsx new file mode 100644 index 000000000..0838beada --- /dev/null +++ b/packages/ai/src/components/AIInlineToolbar/DefaultButtons/RevertButton.tsx @@ -0,0 +1,63 @@ +import { Block } from "@blocknote/core"; +import { useBlockNoteEditor, useComponentsContext } from "@blocknote/react"; +import { TextSelection } from "prosemirror-state"; +import { RiArrowGoBackFill } from "react-icons/ri"; + +import { useAIDictionary } from "../../../i18n/useAIDictionary"; + +import { AIInlineToolbarProsemirrorPlugin } from "../../../extensions/AIInlineToolbar/AIInlineToolbarPlugin"; +import { AIInlineToolbarProps } from "../AIInlineToolbarProps"; + +export const RevertButton = ( + props: AIInlineToolbarProps & { + originalBlocks: Block[]; + } +) => { + const dict = useAIDictionary(); + const Components = useComponentsContext()!; + + const editor = useBlockNoteEditor(); + + // TODO: simplify? + const plugin = editor.extensions + .aiInlineToolbar as AIInlineToolbarProsemirrorPlugin; + + if (!editor.isEditable) { + return null; + } + + return ( + } + mainTooltip={dict.ai_inline_toolbar.revert} + label={dict.ai_inline_toolbar.revert} + onClick={() => { + plugin.close(); + + const oldDocSize = editor._tiptapEditor.state.doc.nodeSize; + const startPos = editor._tiptapEditor.state.selection.from; + const endPos = editor._tiptapEditor.state.selection.to; + const replacementBlocks = editor.getSelection()?.blocks || [ + editor.getTextCursorPosition().block, + ]; + + editor.replaceBlocks(replacementBlocks, props.originalBlocks as any[]); + + const newDocSize = editor._tiptapEditor.state.doc.nodeSize; + + editor._tiptapEditor.view.dispatch( + editor._tiptapEditor.state.tr.setSelection( + TextSelection.create( + editor._tiptapEditor.state.doc, + startPos, + endPos + newDocSize - oldDocSize + ) + ) + ); + + editor.focus(); + }} + /> + ); +}; diff --git a/packages/ai/src/components/AIMenu/AIMenu.tsx b/packages/ai/src/components/AIMenu/AIMenu.tsx new file mode 100644 index 000000000..4cb4efaad --- /dev/null +++ b/packages/ai/src/components/AIMenu/AIMenu.tsx @@ -0,0 +1,96 @@ +import { useBlockNoteEditor } from "@blocknote/react"; +import { useCallback, useMemo, useState } from "react"; +import { callLLMStreaming } from "../../api/api"; +// import { useAIDictionary } from "../../i18n/useAIDictionary"; +import { PromptSuggestionMenu } from "./PromptSuggestionMenu"; +import { + AIMenuSuggestionItem, + getDefaultAIActionMenuItems, + getDefaultAIAddMenuItems, + getDefaultAIEditMenuItems, +} from "./getDefaultAIMenuItems"; +import { + BlockNoteAIContextValue, + useBlockNoteAIContext, +} from "../BlockNoteAIContext"; +import { BlockNoteEditor } from "@blocknote/core"; +import { useAIDictionary } from "../../i18n/useAIDictionary"; + +export const AIMenu = (props: { + items?: ( + editor: BlockNoteEditor, + ctx: BlockNoteAIContextValue, + aiResponseStatus: "initial" | "generating" | "done" + ) => AIMenuSuggestionItem[]; + onManualPromptSubmit?: (prompt: string) => void; +}) => { + const editor = useBlockNoteEditor(); + const [prompt, setPrompt] = useState(""); + const [aiResponseStatus, setAIResponseStatus] = useState< + "initial" | "generating" | "done" + >("initial"); + const dict = useAIDictionary(); + + const ctx = useBlockNoteAIContext(); + + // note, technically there might be a bug with this useMemo when quickly changing the selection and opening the menu + // would not call getDefaultAIMenuItems with the correct selection, because the component is reused and the memo not retriggered + // practically this should not happen (you can test it by using a high transition duration in useUIElementPositioning) + const items = useMemo(() => { + let items: AIMenuSuggestionItem[] = []; + if (props.items) { + items = props.items(editor, ctx, aiResponseStatus); + } else { + if (aiResponseStatus === "initial") { + items = editor.getSelection() + ? getDefaultAIEditMenuItems(editor) + : getDefaultAIAddMenuItems(editor, ctx); + } else if (aiResponseStatus === "done") { + items = getDefaultAIActionMenuItems(editor, ctx); + } + } + + // map from AI items to React Items required by PromptSuggestionMenu + return items.map((item) => { + return { + ...item, + onItemClick: () => { + item.onItemClick(setPrompt, (aiResponseStatus) => { + setAIResponseStatus(aiResponseStatus); + if (aiResponseStatus === "initial") { + ctx.setAiMenuBlockID(undefined); + } + }); + }, + }; + }); + }, [props.items, aiResponseStatus, editor, ctx]); + + const onManualPromptSubmitDefault = useCallback( + async (prompt: string) => { + setAIResponseStatus("generating"); + await callLLMStreaming(editor, { + prompt, + }); + setAIResponseStatus("done"); + }, + [editor] + ); + + return ( + + ); +}; diff --git a/packages/ai/src/components/AIMenu/BlockPositioner.tsx b/packages/ai/src/components/AIMenu/BlockPositioner.tsx new file mode 100644 index 000000000..2d9376085 --- /dev/null +++ b/packages/ai/src/components/AIMenu/BlockPositioner.tsx @@ -0,0 +1,74 @@ +import { useUIElementPositioning } from "@blocknote/react"; +import { + OpenChangeReason, + autoUpdate, + flip, + offset, + size, +} from "@floating-ui/react"; +import { useMemo } from "react"; +// The block positioner automattically positions it's children below the block with `blockID` +export const BlockPositioner = (props: { + blockID?: string; + children: React.ReactNode; + onOpenChange?: ( + open: boolean, + event: Event, + reason: OpenChangeReason + ) => void; +}) => { + // TODO: desirable to do like this? + const element = document.querySelector( + `[data-id="${props.blockID}"]` + ) as HTMLElement; + + // Note that we can't pass element directly, because the useDismiss then doesn't work when clicking on the element + // (for that to work, we'd need to implement getReferenceProps(), but it's probably unsafe to attach those listeners to a prosemirror managed element) + const reference = useMemo(() => { + return element + ? { + getBoundingClientRect: () => element.getBoundingClientRect(), + contextElement: element, + } + : null; + }, [element]); + + const { isMounted, ref, style, getFloatingProps } = useUIElementPositioning( + element ? true : false, + + reference, + 3000, + { + placement: "bottom", + middleware: [ + offset(10), + flip(), + size({ + apply({ rects, elements }) { + Object.assign(elements.floating.style, { + width: `${rects.reference.width}px`, + }); + }, + }), + ], + onOpenChange: props.onOpenChange, + whileElementsMounted: autoUpdate, + } + ); + + if (!isMounted) { + return null; + } + + return ( +
+ {props.children} +
+ ); +}; diff --git a/packages/ai/src/components/AIMenu/PromptSuggestionMenu.tsx b/packages/ai/src/components/AIMenu/PromptSuggestionMenu.tsx new file mode 100644 index 000000000..a4a27bb1b --- /dev/null +++ b/packages/ai/src/components/AIMenu/PromptSuggestionMenu.tsx @@ -0,0 +1,130 @@ +import { filterSuggestionItems, mergeCSSClasses } from "@blocknote/core"; +import { + DefaultReactSuggestionItem, + useComponentsContext, + useSuggestionMenuKeyboardHandler, +} from "@blocknote/react"; +import { + ChangeEvent, + KeyboardEvent, + useCallback, + useEffect, + useMemo, + useState, +} from "react"; + +import { RiSparkling2Fill } from "react-icons/ri"; + +// import { useAIDictionary } from "../../i18n/useAIDictionary"; + +export type PromptSuggestionMenuProps = { + items: DefaultReactSuggestionItem[]; + onManualPromptSubmit: (prompt: string) => void; + promptText?: string; + onPromptTextChange?: (prompt: string) => void; + placeholder?: string; + disabled?: boolean; +}; + +export const PromptSuggestionMenu = (props: PromptSuggestionMenuProps) => { + // const dict = useAIDictionary(); + const Components = useComponentsContext()!; + + const { onManualPromptSubmit, promptText, onPromptTextChange } = props; + + // Only used internal state when `props.prompText` is undefined (i.e., uncontrolled mode) + const [internalPromptText, setInternalPromptText] = useState(""); + const promptTextToUse = promptText || internalPromptText; + + const handleEnter = useCallback( + async (event: KeyboardEvent) => { + if (event.key === "Enter") { + // console.log("ENTER", currentEditingPrompt); + onManualPromptSubmit(promptTextToUse); + } + }, + [promptTextToUse, onManualPromptSubmit] + ); + + const handleChange = useCallback( + (event: ChangeEvent) => { + const newValue = event.currentTarget.value; + if (onPromptTextChange) { + onPromptTextChange(newValue); + } + + // Only update internal state if it's uncontrolled + if (promptText === undefined) { + setInternalPromptText(newValue); + } + }, + [onPromptTextChange, setInternalPromptText, promptText] + ); + + const items: DefaultReactSuggestionItem[] = useMemo( + () => filterSuggestionItems(props.items, promptTextToUse), + [promptTextToUse, props.items] + ); + + const { selectedIndex, setSelectedIndex, handler } = + useSuggestionMenuKeyboardHandler(items, (item) => item.onItemClick()); + + const handleKeyDown = useCallback( + (event: KeyboardEvent) => { + // TODO: handle backspace to close + if (event.key === "Enter") { + if (items.length > 0) { + handler(event); + } else { + // TODO: check focus? + handleEnter(event); + } + } else { + handler(event); + } + }, + [handleEnter, handler, items.length] + ); + + // Resets index when items change + useEffect(() => { + setSelectedIndex(0); + }, [promptTextToUse, setSelectedIndex]); + + return ( +
+ + } + value={promptTextToUse || ""} + autoFocus={true} + placeholder={props.placeholder} + disabled={props.disabled} + onKeyDown={handleKeyDown} + onChange={handleChange} + autoComplete={"off"} + /> + + + {items.map((item, index) => ( + + ))} + +
+ ); +}; diff --git a/packages/ai/src/components/AIMenu/getDefaultAIMenuItems.tsx b/packages/ai/src/components/AIMenu/getDefaultAIMenuItems.tsx new file mode 100644 index 000000000..4d66d8277 --- /dev/null +++ b/packages/ai/src/components/AIMenu/getDefaultAIMenuItems.tsx @@ -0,0 +1,227 @@ +import { + BlockNoteEditor, + BlockSchema, + InlineContentSchema, + StyleSchema, +} from "@blocknote/core"; +import { DefaultReactSuggestionItem } from "@blocknote/react"; +import { + RiArrowGoBackFill, + RiBallPenLine, + RiCheckFill, + RiCheckLine, + RiEarthLine, + RiListCheck3, + RiLoopLeftFill, + RiMagicLine, + RiText, + RiTextWrap, +} from "react-icons/ri"; +import { callLLMStreaming } from "../../api/api"; +import { addFunction } from "../../api/functions/add"; +import { getAIDictionary } from "../../i18n/dictionary"; +import { BlockNoteAIContextValue } from "../BlockNoteAIContext"; + +export type AIMenuSuggestionItem = Omit< + DefaultReactSuggestionItem, + "onItemClick" +> & { + onItemClick: ( + setPrompt: (prompt: string) => void, + setAIResponseStatus: ( + aiResponseStatus: "initial" | "generating" | "done" + ) => void + ) => void; +}; + +export function getDefaultAIAddMenuItems< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +>( + editor: BlockNoteEditor, + contextValue: BlockNoteAIContextValue +): AIMenuSuggestionItem[] { + const dict = getAIDictionary(editor); + + return [ + { + name: "continue_writing", + title: dict.ai_menu.continue_writing.title, + aliases: dict.ai_menu.continue_writing.aliases, + icon: , + onItemClick: () => { + callLLMStreaming(editor, { + prompt: "Continue writing", + // By default, LLM will be able to add / update / delete blocks. For "continue writing", we only want to allow adding new blocks. + functions: [addFunction], + }); + }, + size: "small", + }, + + { + name: "summarize", + title: dict.ai_menu.summarize.title, + aliases: dict.ai_menu.summarize.aliases, + icon: , + onItemClick: async (_setPrompt, setAIResponseStatus) => { + // setPrompt(dict.ai_menu.summarize.prompt_placeholder); + contextValue.setPrevDocument(editor.document); + setAIResponseStatus("generating"); + await callLLMStreaming(editor, { + prompt: "Summarize", + // By default, LLM will be able to add / update / delete blocks. For "summarize", we only want to allow adding new blocks. + functions: [addFunction], + }); + setAIResponseStatus("done"); + }, + size: "small", + }, + { + name: "action_items", + title: dict.ai_menu.add_action_items.title, + aliases: dict.ai_menu.add_action_items.aliases, + icon: , + onItemClick: () => { + console.log("ADD ACTION ITEMS"); + }, + size: "small", + }, + { + name: "write_anything", + title: dict.ai_menu.write_anything.title, + aliases: dict.ai_menu.write_anything.aliases, + icon: , + onItemClick: (setPrompt) => { + setPrompt(dict.ai_menu.write_anything.prompt_placeholder); + }, + size: "small", + }, + ]; +} + +export function getDefaultAIEditMenuItems< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +>(editor: BlockNoteEditor): AIMenuSuggestionItem[] { + const dict = getAIDictionary(editor); + + return [ + { + name: "improve_writing", + title: dict.ai_menu.improve_writing.title, + aliases: dict.ai_menu.improve_writing.aliases, + icon: , + onItemClick: () => { + console.log("MAKE SHORTER"); + }, + size: "small", + }, + { + name: "fix_spelling", + title: dict.ai_menu.fix_spelling.title, + aliases: dict.ai_menu.fix_spelling.aliases, + icon: , + onItemClick: () => { + console.log("FIX SPELLING"); + }, + size: "small", + }, + { + name: "translate", + title: dict.ai_menu.translate.title, + aliases: dict.ai_menu.translate.aliases, + icon: , + onItemClick: (setPrompt) => { + setPrompt(dict.ai_menu.translate.prompt_placeholder); + }, + size: "small", + }, + { + name: "simplify", + title: dict.ai_menu.simplify.title, + aliases: dict.ai_menu.simplify.aliases, + icon: , + onItemClick: () => { + console.log("SIMPLIFY"); + }, + size: "small", + }, + ]; +} + +export function getDefaultAIActionMenuItems< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +>( + editor: BlockNoteEditor, + contextValue: BlockNoteAIContextValue +): AIMenuSuggestionItem[] { + const dict = getAIDictionary(editor); + + return [ + { + name: "accept", + title: dict.ai_menu.accept.title, + aliases: dict.ai_menu.accept.aliases, + icon: , + onItemClick: (_setPrompt) => { + contextValue.setAiMenuBlockID(undefined); + contextValue.setPrevDocument(undefined); + }, + size: "small", + }, + { + name: "retry", + title: dict.ai_menu.retry.title, + aliases: dict.ai_menu.retry.aliases, + icon: , + onItemClick: () => { + console.log("RETRY"); + }, + size: "small", + }, + { + name: "revert", + title: dict.ai_menu.revert.title, + aliases: dict.ai_menu.revert.aliases, + icon: , + onItemClick: () => { + editor.replaceBlocks(editor.document, contextValue.prevDocument as any); + contextValue.setAiMenuBlockID(undefined); + contextValue.setPrevDocument(undefined); + }, + size: "small", + }, + ]; +} + +/** +3 examples: + +input: +- pass schema / blocks / functions + +1) block -> markdown, markdown -> block +2) pass entire document +3) functions (updateBlock, insertBlock, deleteBlock) + + +response: +- markdown +- entire document (text stream) +- entire document (block call streams) + * + */ + +// const context = createAIExecutionContext(editor, prompt, () = { +// // add ai command +// // add context + +// // apply streaming response +// context.execute(); +// }); +// aitoolbar.open(context); diff --git a/packages/ai/src/components/BlockNoteAIContext.tsx b/packages/ai/src/components/BlockNoteAIContext.tsx new file mode 100644 index 000000000..3edc59bda --- /dev/null +++ b/packages/ai/src/components/BlockNoteAIContext.tsx @@ -0,0 +1,55 @@ +import { createContext, useContext, useState } from "react"; +import { Block } from "@blocknote/core"; +import { useBlockNoteEditor } from "@blocknote/react"; + +export type BlockNoteAIContextValue = { + aiMenuBlockID: ReturnType>[0]; + setAiMenuBlockID: ReturnType>[1]; + prevDocument: ReturnType< + typeof useState[] | undefined> + >[0]; + setPrevDocument: ReturnType< + typeof useState[] | undefined> + >[1]; +}; + +export const BlockNoteAIContext = createContext< + BlockNoteAIContextValue | undefined +>(undefined); + +export function useBlockNoteAIContext(): BlockNoteAIContextValue { + const context = useContext(BlockNoteAIContext); + + if (!context) { + throw new Error( + "useBlockNoteAIContext must be used within a BlockNoteAIContextProvider" + ); + } + + return context; +} + +export function BlockNoteAIContextProvider(props: { + children: React.ReactNode; +}) { + const editor = useBlockNoteEditor(); + + const [aiMenuBlockID, setAiMenuBlockID] = useState( + undefined + ); + const [prevDocument, setPrevDocument] = useState< + Block[] | undefined + >(editor.document); + + return ( + + {props.children} + + ); +} diff --git a/packages/ai/src/components/BlockNoteAIUI.tsx b/packages/ai/src/components/BlockNoteAIUI.tsx new file mode 100644 index 000000000..daa8e3c90 --- /dev/null +++ b/packages/ai/src/components/BlockNoteAIUI.tsx @@ -0,0 +1,50 @@ +import { useBlockNoteEditor } from "@blocknote/react"; +import { AIBlockToolbarController } from "./AIBlockToolbar/AIBlockToolbarController"; + +import { AIMenu } from "./AIMenu/AIMenu"; +import { BlockPositioner } from "./AIMenu/BlockPositioner"; +import { useBlockNoteAIContext } from "./BlockNoteAIContext"; + +export type BlockNoteAIUIProps = { + aiBlockToolbar?: boolean; + aiInlineToolbar?: boolean; + aiMenu?: boolean; +}; + +export function BlockNoteAIUI(props: BlockNoteAIUIProps) { + const editor = useBlockNoteEditor(); + + if (!editor) { + throw new Error( + "BlockNoteDefaultUI must be used within a BlockNoteContext.Provider" + ); + } + + return ( + <> + {editor.extensions.aiBlockToolbar && props.aiBlockToolbar !== false && ( + + )} + {props.aiMenu !== false && } + + ); +} + +const AIMenuController = () => { + const editor = useBlockNoteEditor(); + const ctx = useBlockNoteAIContext(); + + return ( + { + if (!open && ctx.aiMenuBlockID) { + ctx.setAiMenuBlockID(undefined); + editor.focus(); + // TODO: doesn't work with esc? + } + }}> + + + ); +}; diff --git a/packages/ai/src/components/FormattingToolbar/DefaultButtons/AIButton.tsx b/packages/ai/src/components/FormattingToolbar/DefaultButtons/AIButton.tsx new file mode 100644 index 000000000..22927e7d7 --- /dev/null +++ b/packages/ai/src/components/FormattingToolbar/DefaultButtons/AIButton.tsx @@ -0,0 +1,40 @@ +import { BlockSchema, InlineContentSchema, StyleSchema } from "@blocknote/core"; +import { useComponentsContext } from "@blocknote/react"; +import { RiSparkling2Fill } from "react-icons/ri"; + +import { useBlockNoteEditor } from "@blocknote/react"; + +import { useAIDictionary } from "../../../i18n/useAIDictionary"; +import { useBlockNoteAIContext } from "../../BlockNoteAIContext"; + +// TODO: name? +export const AIButton = () => { + const dict = useAIDictionary(); + const Components = useComponentsContext()!; + const ctx = useBlockNoteAIContext(); + const editor = useBlockNoteEditor< + BlockSchema, + InlineContentSchema, + StyleSchema + >(); + + const onClick = () => { + editor.formattingToolbar.closeMenu(); + const position = editor.getTextCursorPosition().block; + ctx.setAiMenuBlockID(position.id); + }; + + if (!editor.isEditable) { + return null; + } + + return ( + } + onClick={onClick} + /> + ); +}; diff --git a/packages/ai/src/components/FormattingToolbar/DefaultSelects/BlockTypeSelect.tsx b/packages/ai/src/components/FormattingToolbar/DefaultSelects/BlockTypeSelect.tsx new file mode 100644 index 000000000..d15bf40f1 --- /dev/null +++ b/packages/ai/src/components/FormattingToolbar/DefaultSelects/BlockTypeSelect.tsx @@ -0,0 +1,18 @@ +import { RiSparkling2Fill } from "react-icons/ri"; + +import { BlockTypeSelectItem } from "@blocknote/react"; +import { AIDictionary } from "../../../i18n/dictionary"; + +// TODO: rename? +export const aiBlockTypeSelectItems = ( + dict: AIDictionary +): BlockTypeSelectItem[] => [ + { + name: dict.slash_menu.ai_block.title, + type: "ai", + icon: RiSparkling2Fill, + isSelected: (block) => block.type === "ai", + showWhileSelected: true, + showWhileNotSelected: false, + }, +]; diff --git a/packages/ai/src/components/SideMenu/SideMenu.tsx b/packages/ai/src/components/SideMenu/SideMenu.tsx new file mode 100644 index 000000000..325d7b4eb --- /dev/null +++ b/packages/ai/src/components/SideMenu/SideMenu.tsx @@ -0,0 +1,36 @@ +import { + BlockSchema, + DefaultBlockSchema, + DefaultInlineContentSchema, + DefaultStyleSchema, + InlineContentSchema, + StyleSchema, +} from "@blocknote/core"; +import { ReactNode, useMemo } from "react"; +import { SideMenu as SideMenuCore, SideMenuProps } from "@blocknote/react"; + +export const SideMenu = < + BSchema extends BlockSchema = DefaultBlockSchema, + I extends InlineContentSchema = DefaultInlineContentSchema, + S extends StyleSchema = DefaultStyleSchema +>( + props: SideMenuProps & { children?: ReactNode } +) => { + const { children, ...rest } = props; + + const dataAttributes = useMemo(() => { + const attrs: Record = {}; + + if (props.block.type === "ai" && props.block.props.prompt) { + attrs["data-prompt"] = props.block.props.prompt.toString(); + } + + return attrs; + }, [props.block]); + + return ( + + {children} + + ); +}; diff --git a/packages/ai/src/components/SideMenu/SideMenuController.tsx b/packages/ai/src/components/SideMenu/SideMenuController.tsx new file mode 100644 index 000000000..b59139221 --- /dev/null +++ b/packages/ai/src/components/SideMenu/SideMenuController.tsx @@ -0,0 +1,22 @@ +import { + BlockSchema, + DefaultBlockSchema, + DefaultInlineContentSchema, + DefaultStyleSchema, + InlineContentSchema, + StyleSchema, +} from "@blocknote/core"; +import { FC } from "react"; +import { + SideMenuController as SideMenuCoreController, + SideMenuProps, +} from "@blocknote/react"; +import { SideMenu } from "./SideMenu"; + +export const SideMenuController = < + BSchema extends BlockSchema = DefaultBlockSchema, + I extends InlineContentSchema = DefaultInlineContentSchema, + S extends StyleSchema = DefaultStyleSchema +>(props: { + sideMenu?: FC>; +}) => ; diff --git a/packages/ai/src/components/SuggestionMenu/getAISlashMenuItems.tsx b/packages/ai/src/components/SuggestionMenu/getAISlashMenuItems.tsx new file mode 100644 index 000000000..89b96fa77 --- /dev/null +++ b/packages/ai/src/components/SuggestionMenu/getAISlashMenuItems.tsx @@ -0,0 +1,63 @@ +import { + BlockNoteEditor, + BlockSchema, + checkBlockTypeInSchema, + InlineContentSchema, + insertOrUpdateBlock, + StyleSchema, +} from "@blocknote/core"; +import { DefaultReactSuggestionItem } from "@blocknote/react"; +import { RiSparkling2Fill } from "react-icons/ri"; + +import { aiBlockConfig } from "../../blocks/AIBlockContent/AIBlockContent"; +import { getAIDictionary } from "../../i18n/dictionary"; +import { BlockNoteAIContextValue } from "../BlockNoteAIContext"; + +const Icons = { + AI: RiSparkling2Fill, +}; + +export function getAISlashMenuItems< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +>( + editor: BlockNoteEditor, + ctx: BlockNoteAIContextValue +): DefaultReactSuggestionItem[] { + const items = [ + { + name: "ai", + onItemClick: () => { + const cursor = editor.getTextCursorPosition(); + if ( + cursor.block.content && + Array.isArray(cursor.block.content) && // isarray check not ideal + cursor.block.content.length === 0 && + cursor.prevBlock + ) { + ctx.setAiMenuBlockID(cursor.prevBlock.id); + } else { + ctx.setAiMenuBlockID(cursor.block.id); + } + }, + ...getAIDictionary(editor).slash_menu.ai, + icon: , + }, + ]; + + if (checkBlockTypeInSchema(aiBlockConfig, editor)) { + items.push({ + name: "ai_block", + onItemClick: () => { + insertOrUpdateBlock(editor, { + type: "ai", + }); + }, + ...getAIDictionary(editor).slash_menu.ai_block, + icon: , + }); + } + + return items; +} diff --git a/packages/ai/src/extensions/AIBlockToolbar/AIBlockToolbarPlugin.ts b/packages/ai/src/extensions/AIBlockToolbar/AIBlockToolbarPlugin.ts new file mode 100644 index 000000000..a60ddac71 --- /dev/null +++ b/packages/ai/src/extensions/AIBlockToolbar/AIBlockToolbarPlugin.ts @@ -0,0 +1,169 @@ +import { + BlockInfo, + UiElementPosition, + getBlockInfoFromPos, + EventEmitter, +} from "@blocknote/core"; +import { Plugin, PluginKey, PluginView } from "prosemirror-state"; +import { EditorView } from "prosemirror-view"; + +export type AIBlockToolbarState = UiElementPosition & { prompt?: string }; + +export class AIBlockToolbarView implements PluginView { + public state?: AIBlockToolbarState; + public emitUpdate: () => void; + + public oldBlockInfo: BlockInfo | undefined; + public domElement: HTMLElement | undefined; + + constructor( + private readonly pmView: EditorView, + emitUpdate: (state: AIBlockToolbarState) => void + ) { + this.emitUpdate = () => { + if (!this.state) { + throw new Error("Attempting to update uninitialized AI toolbar"); + } + + emitUpdate(this.state); + }; + + pmView.dom.addEventListener("dragstart", this.dragHandler); + pmView.dom.addEventListener("dragover", this.dragHandler); + pmView.dom.addEventListener("blur", this.blurHandler); + + // Setting capture=true ensures that any parent container of the editor that + // gets scrolled will trigger the scroll event. Scroll events do not bubble + // and so won't propagate to the document by default. + pmView.root.addEventListener("scroll", this.scrollHandler, true); + } + + blurHandler = (event: FocusEvent) => { + const editorWrapper = this.pmView.dom.parentElement!; + + // Checks if the focus is moving to an element outside the editor. If it is, + // the toolbar is hidden. + if ( + // An element is clicked. + event && + event.relatedTarget && + // Element is inside the editor. + (editorWrapper === (event.relatedTarget as Node) || + editorWrapper.contains(event.relatedTarget as Node) || + (event.relatedTarget as HTMLElement).matches( + ".bn-container, .bn-container *" + )) + ) { + return; + } + + if (this.state?.show) { + this.state.show = false; + this.emitUpdate(); + } + }; + + // For dragging the whole editor. + dragHandler = () => { + if (this.state?.show) { + this.state.show = false; + this.emitUpdate(); + } + }; + + scrollHandler = () => { + if (this.state?.show) { + this.state.referencePos = this.domElement!.getBoundingClientRect(); + this.emitUpdate(); + } + }; + + update(view: EditorView) { + const blockInfo = getBlockInfoFromPos( + view.state.doc, + view.state.selection.from + ); + + // Return if the selection remains in a non-AI block. + if ( + blockInfo.contentType.name !== "ai" && + this.oldBlockInfo?.contentType.name !== "ai" + ) { + this.oldBlockInfo = blockInfo; + return; + } + + this.oldBlockInfo = blockInfo; + + // Selection is in an AI block that wasn't previously selected. + if ( + blockInfo.contentType.name === "ai" && + blockInfo.contentNode.attrs.prompt !== "" && + view.state.selection.$from.sameParent(view.state.selection.$to) + ) { + this.domElement = view.domAtPos(blockInfo.startPos).node + .firstChild as HTMLElement; + + this.state = { + prompt: blockInfo.contentNode.attrs.prompt, + show: true, + referencePos: this.domElement.getBoundingClientRect(), + }; + + this.emitUpdate(); + + return; + } + + // Selection is not in an AI block but previously was in one. + if (this.state?.show) { + this.state.show = false; + this.emitUpdate(); + } + } + + destroy() { + this.pmView.dom.removeEventListener("dragstart", this.dragHandler); + this.pmView.dom.removeEventListener("dragover", this.dragHandler); + this.pmView.dom.removeEventListener("blur", this.blurHandler); + + this.pmView.root.removeEventListener("scroll", this.scrollHandler, true); + } + + closeMenu = () => { + if (this.state?.show) { + this.state.show = false; + this.emitUpdate(); + } + }; +} + +export const aiBlockToolbarPluginKey = new PluginKey("AIBlockToolbarPlugin"); + +export class AIBlockToolbarProsemirrorPlugin extends EventEmitter { + private view: AIBlockToolbarView | undefined; + public readonly plugin: Plugin; + + constructor() { + super(); + this.plugin = new Plugin({ + key: aiBlockToolbarPluginKey, + view: (editorView) => { + this.view = new AIBlockToolbarView(editorView, (state) => { + this.emit("update", state); + }); + return this.view; + }, + }); + } + + public get shown() { + return this.view?.state?.show || false; + } + + public onUpdate(callback: (state: AIBlockToolbarState) => void) { + return this.on("update", callback); + } + + public closeMenu = () => this.view!.closeMenu(); +} diff --git a/packages/ai/src/extensions/AIInlineToolbar/AIInlineToolbarPlugin.ts b/packages/ai/src/extensions/AIInlineToolbar/AIInlineToolbarPlugin.ts new file mode 100644 index 000000000..b3dcc3771 --- /dev/null +++ b/packages/ai/src/extensions/AIInlineToolbar/AIInlineToolbarPlugin.ts @@ -0,0 +1,232 @@ +import { EventEmitter, UiElementPosition } from "@blocknote/core"; +import { isNodeSelection, posToDOMRect } from "@tiptap/core"; +import { Plugin, PluginKey, PluginView } from "prosemirror-state"; +import { EditorView } from "prosemirror-view"; + +export type AIInlineToolbarState = UiElementPosition & { + prompt: string; + operation: "replaceSelection" | "insertAfterSelection"; +}; + +export class AIInlineToolbarView implements PluginView { + public state?: AIInlineToolbarState; + public emitUpdate: () => void; + + constructor( + private readonly pmView: EditorView, + emitUpdate: (state: AIInlineToolbarState) => void + ) { + this.emitUpdate = () => { + if (!this.state) { + throw new Error("Attempting to update uninitialized AI toolbar"); + } + + emitUpdate(this.state); + }; + + pmView.dom.addEventListener("dragstart", this.dragHandler); + pmView.dom.addEventListener("dragover", this.dragHandler); + pmView.dom.addEventListener("blur", this.blurHandler); + // pmView.dom.addEventListener("mousedown", this.closeHandler, true); + // pmView.dom.addEventListener("keydown", this.closeHandler, true); + + // Setting capture=true ensures that any parent container of the editor that + // gets scrolled will trigger the scroll event. Scroll events do not bubble + // and so won't propagate to the document by default. + pmView.root.addEventListener("scroll", this.scrollHandler, true); + } + + blurHandler = (event: FocusEvent) => { + const editorWrapper = this.pmView.dom.parentElement!; + + // Checks if the focus is moving to an element outside the editor. If it is, + // the toolbar is hidden. + if ( + // An element is clicked. + event && + event.relatedTarget && + // Element is inside the editor. + (editorWrapper === (event.relatedTarget as Node) || + editorWrapper.contains(event.relatedTarget as Node) || + (event.relatedTarget as HTMLElement).matches( + ".bn-container, .bn-container *" + )) + ) { + return; + } + + if (this.state?.show) { + this.state.show = false; + this.emitUpdate(); + } + }; + + // For dragging the whole editor. + dragHandler = () => { + if (this.state?.show) { + this.state.show = false; + this.emitUpdate(); + } + }; + + closeHandler = () => this.close(); + + scrollHandler = () => { + if (this.state?.show) { + this.state.referencePos = this.getSelectionBoundingBox(); + this.emitUpdate(); + } + }; + + update(view: EditorView) { + const pluginState: AIInlineToolbarPluginState = + aiInlineToolbarPluginKey.getState(view.state); + + if (this.state && !this.state.show && !pluginState.open) { + return; + } + + if (pluginState.open) { + this.state = { + show: true, + referencePos: this.getSelectionBoundingBox(), + prompt: pluginState.prompt, + operation: pluginState.operation, + }; + + this.emitUpdate(); + + return; + } + + if (this.state?.show) { + this.state.show = false; + this.emitUpdate(); + } + } + + destroy() { + this.pmView.dom.removeEventListener("dragstart", this.dragHandler); + this.pmView.dom.removeEventListener("dragover", this.dragHandler); + this.pmView.dom.removeEventListener("blur", this.blurHandler); + // this.pmView.dom.removeEventListener("mousedown", this.closeHandler); + // this.pmView.dom.removeEventListener("keydown", this.closeHandler); + + this.pmView.root.removeEventListener("scroll", this.scrollHandler, true); + } + + open(prompt: string, operation: "replaceSelection" | "insertAfterSelection") { + this.pmView.dispatch( + this.pmView.state.tr.scrollIntoView().setMeta(aiInlineToolbarPluginKey, { + open: true, + prompt, + operation, + }) + ); + } + + close() { + this.pmView.focus(); + this.pmView.dispatch( + this.pmView.state.tr.scrollIntoView().setMeta(aiInlineToolbarPluginKey, { + open: false, + }) + ); + } + + closeMenu = () => { + if (this.state?.show) { + this.state.show = false; + this.emitUpdate(); + } + }; + + getSelectionBoundingBox() { + const { state } = this.pmView; + const { selection } = state; + + // support for CellSelections + const { ranges } = selection; + const from = Math.min(...ranges.map((range) => range.$from.pos)); + const to = Math.max(...ranges.map((range) => range.$to.pos)); + + if (isNodeSelection(selection)) { + const node = this.pmView.nodeDOM(from) as HTMLElement; + + if (node) { + return node.getBoundingClientRect(); + } + } + + return posToDOMRect(this.pmView, from, to); + } +} + +type AIInlineToolbarPluginState = + | { + open: true; + prompt: string; + operation: "replaceSelection" | "insertAfterSelection"; + } + | { open: false }; + +export const aiInlineToolbarPluginKey = new PluginKey("AIInlineToolbarPlugin"); + +export class AIInlineToolbarProsemirrorPlugin extends EventEmitter { + private view: AIInlineToolbarView | undefined; + public readonly plugin: Plugin; + constructor() { + super(); + + this.plugin = new Plugin({ + key: aiInlineToolbarPluginKey, + + view: (editorView) => { + this.view = new AIInlineToolbarView(editorView, (state) => { + this.emit("update", state); + }); + return this.view; + }, + + state: { + // Initialize the plugin's internal state. + init(): AIInlineToolbarPluginState { + return { open: false }; + }, + + // Apply changes to the plugin state from an editor transaction. + apply(transaction, prev) { + const meta: AIInlineToolbarPluginState | undefined = + transaction.getMeta(aiInlineToolbarPluginKey); + + if (meta === undefined) { + return prev; + } + + return meta; + }, + }, + }); + } + + public open( + prompt: string, + operation: "replaceSelection" | "insertAfterSelection" + ) { + this.view?.open(prompt, operation); + } + + public close() { + this.view?.close(); + } + + public get shown() { + return this.view?.state?.show || false; + } + + public onUpdate(callback: (state: AIInlineToolbarState) => void) { + return this.on("update", callback); + } + + public closeMenu = () => this.view!.closeMenu(); +} diff --git a/packages/ai/src/extensions/AIShowSelectionPlugin.ts b/packages/ai/src/extensions/AIShowSelectionPlugin.ts new file mode 100644 index 000000000..44e6fbb64 --- /dev/null +++ b/packages/ai/src/extensions/AIShowSelectionPlugin.ts @@ -0,0 +1,26 @@ +import type { BlockNoteEditor } from "@blocknote/core"; +import { Plugin, PluginKey } from "prosemirror-state"; +import { Decoration, DecorationSet } from "prosemirror-view"; + +const PLUGIN_KEY = new PluginKey(`blocknote-ai-show-selection`); + +export class AIShowSelectionPlugin { + public readonly plugin: Plugin; + + public constructor(_editor: BlockNoteEditor) { + this.plugin = new Plugin({ + key: PLUGIN_KEY, + props: { + decorations: (state) => { + const { doc, selection } = state; + + const dec = Decoration.inline(selection.from, selection.to, { + "data-ai-show-selection": "true", + }); + + return DecorationSet.create(doc, [dec]); + }, + }, + }); + } +} diff --git a/packages/ai/src/i18n/dictionary.ts b/packages/ai/src/i18n/dictionary.ts new file mode 100644 index 000000000..a199d0aeb --- /dev/null +++ b/packages/ai/src/i18n/dictionary.ts @@ -0,0 +1,27 @@ +// function scramble(dict: any) { +// const newDict: any = {} as any; + +import type { BlockNoteEditor } from "@blocknote/core"; +import type { en } from "./locales"; + +// for (const key in dict) { +// if (typeof dict[key] === "object") { +// newDict[key] = scramble(dict[key]); +// } else { +// newDict[key] = dict[key].split("").reverse().join(""); +// } +// } + +// return newDict; +// } + +export function getAIDictionary(editor: BlockNoteEditor) { + if (!(editor.dictionary as any).ai) { + throw new Error("AI dictionary not found"); + } + return (editor.dictionary as any).ai as AIDictionary; +} + +export type AIDictionary = typeof en; + +// TODO: make placeholder work diff --git a/packages/ai/src/i18n/locales/ar.ts b/packages/ai/src/i18n/locales/ar.ts new file mode 100644 index 000000000..3b66003d8 --- /dev/null +++ b/packages/ai/src/i18n/locales/ar.ts @@ -0,0 +1,54 @@ +import { ar as dict } from "@blocknote/core"; + +export const ar = { + ...dict, + formatting_toolbar: { + ...dict.formatting_toolbar, + ai: { + tooltip: "Generate content", + input_placeholder: "Enter a prompt", + }, + }, + slash_menu: { + ...dict.slash_menu, + ai_block: { + title: "AI Block", + subtext: "Block with AI generated content", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + ai: { + title: "Ask AI", + subtext: "Continue writing with AI", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + }, + placeholders: { + ...dict.placeholders, + ai: "Enter a prompt", + }, + ai_menu: { + custom_prompt: { + title: "Custom Prompt", + subtext: "Use your query as an AI prompt", + aliases: ["", "custom prompt"], + }, + make_longer: { + title: "Make Longer", + aliases: ["make longer"], + }, + }, + ai_block_toolbar: { + show_prompt: "Generated by AI", + show_prompt_datetime_tooltip: "Generated:", + update: "Update", + updating: "Updating…", + }, + ai_inline_toolbar: { + accept: "Accept", + retry: "Retry", + updating: "Updating…", + revert: "Revert", + }, +}; diff --git a/packages/ai/src/i18n/locales/en.ts b/packages/ai/src/i18n/locales/en.ts new file mode 100644 index 000000000..13c48816d --- /dev/null +++ b/packages/ai/src/i18n/locales/en.ts @@ -0,0 +1,96 @@ +export const en = { + formatting_toolbar: { + ai: { + tooltip: "Generate content", + input_placeholder: "Enter a prompt", + }, + }, + slash_menu: { + ai_block: { + title: "AI Block", + subtext: "Block with AI generated content", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + ai: { + title: "Ask AI", + subtext: "Continue writing with AI", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + }, + placeholders: { + ai: "Enter a prompt", + }, + ai_menu: { + // custom_prompt: { + // title: "Custom Prompt", + // subtext: "Use your query as an AI prompt", + // aliases: [ + // "", // TODO: add comment + // "custom prompt", + // ], + // }, + continue_writing: { + title: "Continue Writing", + aliases: undefined, + }, + summarize: { + title: "Summarize", + aliases: undefined, + }, + add_action_items: { + title: "Add Action Items", + aliases: undefined, + }, + write_anything: { + title: "Write Anything…", + aliases: undefined, + prompt_placeholder: "Write about ", + }, + make_longer: { + title: "Make Longer", + aliases: undefined, + }, + make_shorter: { + title: "Make Shorter", + aliases: undefined, + }, + rewrite: { + title: "Rewrite", + aliases: undefined, + }, + simplify: { + title: "Simplify", + aliases: undefined, + }, + translate: { + title: "Translate…", + aliases: undefined, + prompt_placeholder: "Translate into ", + }, + fix_spelling: { + title: "Fix Spelling", + aliases: undefined, + }, + improve_writing: { + title: "Improve Writing", + aliases: undefined, + }, + accept: { title: "Accept", aliases: undefined }, + retry: { title: "Retry", aliases: undefined }, + revert: { title: "Revert", aliases: undefined }, + }, + ai_block_toolbar: { + show_prompt: "Generated by AI", + show_prompt_datetime_tooltip: "Generated:", + update: "Update", + updating: "Updating…", + }, + ai_inline_toolbar: { + accept: "Accept", + retry: "Retry", + updating: "Updating…", + revert: "Revert", + }, +}; diff --git a/packages/ai/src/i18n/locales/fr.ts b/packages/ai/src/i18n/locales/fr.ts new file mode 100644 index 000000000..5f7d4f46e --- /dev/null +++ b/packages/ai/src/i18n/locales/fr.ts @@ -0,0 +1,54 @@ +import { fr as dict } from "@blocknote/core"; + +export const fr = { + ...dict, + formatting_toolbar: { + ...dict.formatting_toolbar, + ai: { + tooltip: "Generate content", + input_placeholder: "Enter a prompt", + }, + }, + slash_menu: { + ...dict.slash_menu, + ai_block: { + title: "AI Block", + subtext: "Block with AI generated content", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + ai: { + title: "Ask AI", + subtext: "Continue writing with AI", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + }, + placeholders: { + ...dict.placeholders, + ai: "Enter a prompt", + }, + ai_menu: { + custom_prompt: { + title: "Custom Prompt", + subtext: "Use your query as an AI prompt", + aliases: ["", "custom prompt"], + }, + make_longer: { + title: "Make Longer", + aliases: ["make longer"], + }, + }, + ai_block_toolbar: { + show_prompt: "Generated by AI", + show_prompt_datetime_tooltip: "Generated:", + update: "Update", + updating: "Updating…", + }, + ai_inline_toolbar: { + accept: "Accept", + retry: "Retry", + updating: "Updating…", + revert: "Revert", + }, +}; diff --git a/packages/ai/src/i18n/locales/index.ts b/packages/ai/src/i18n/locales/index.ts new file mode 100644 index 000000000..eb39fd008 --- /dev/null +++ b/packages/ai/src/i18n/locales/index.ts @@ -0,0 +1,12 @@ +export * from "./ar"; +export * from "./en"; +export * from "./fr"; +export * from "./is"; +export * from "./ja"; +export * from "./ko"; +export * from "./nl"; +export * from "./pl"; +export * from "./pt"; +export * from "./vi"; +export * from "./zh"; +export * from "./ru"; diff --git a/packages/ai/src/i18n/locales/is.ts b/packages/ai/src/i18n/locales/is.ts new file mode 100644 index 000000000..55ed4a9cc --- /dev/null +++ b/packages/ai/src/i18n/locales/is.ts @@ -0,0 +1,54 @@ +import { is as dict } from "@blocknote/core"; + +export const is = { + ...dict, + formatting_toolbar: { + ...dict.formatting_toolbar, + ai: { + tooltip: "Generate content", + input_placeholder: "Enter a prompt", + }, + }, + slash_menu: { + ...dict.slash_menu, + ai_block: { + title: "AI Block", + subtext: "Block with AI generated content", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + ai: { + title: "Ask AI", + subtext: "Continue writing with AI", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + }, + placeholders: { + ...dict.placeholders, + ai: "Enter a prompt", + }, + ai_menu: { + custom_prompt: { + title: "Custom Prompt", + subtext: "Use your query as an AI prompt", + aliases: ["", "custom prompt"], + }, + make_longer: { + title: "Make Longer", + aliases: ["make longer"], + }, + }, + ai_block_toolbar: { + show_prompt: "Generated by AI", + show_prompt_datetime_tooltip: "Generated:", + update: "Update", + updating: "Updating…", + }, + ai_inline_toolbar: { + accept: "Accept", + retry: "Retry", + updating: "Updating…", + revert: "Revert", + }, +}; diff --git a/packages/ai/src/i18n/locales/ja.ts b/packages/ai/src/i18n/locales/ja.ts new file mode 100644 index 000000000..47d4e4396 --- /dev/null +++ b/packages/ai/src/i18n/locales/ja.ts @@ -0,0 +1,54 @@ +import { ja as dict } from "@blocknote/core"; + +export const ja = { + ...dict, + formatting_toolbar: { + ...dict.formatting_toolbar, + ai: { + tooltip: "Generate content", + input_placeholder: "Enter a prompt", + }, + }, + slash_menu: { + ...dict.slash_menu, + ai_block: { + title: "AI Block", + subtext: "Block with AI generated content", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + ai: { + title: "Ask AI", + subtext: "Continue writing with AI", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + }, + placeholders: { + ...dict.placeholders, + ai: "Enter a prompt", + }, + ai_menu: { + custom_prompt: { + title: "Custom Prompt", + subtext: "Use your query as an AI prompt", + aliases: ["", "custom prompt"], + }, + make_longer: { + title: "Make Longer", + aliases: ["make longer"], + }, + }, + ai_block_toolbar: { + show_prompt: "Generated by AI", + show_prompt_datetime_tooltip: "Generated:", + update: "Update", + updating: "Updating…", + }, + ai_inline_toolbar: { + accept: "Accept", + retry: "Retry", + updating: "Updating…", + revert: "Revert", + }, +}; diff --git a/packages/ai/src/i18n/locales/ko.ts b/packages/ai/src/i18n/locales/ko.ts new file mode 100644 index 000000000..b8fe73a6d --- /dev/null +++ b/packages/ai/src/i18n/locales/ko.ts @@ -0,0 +1,54 @@ +import { ko as dict } from "@blocknote/core"; + +export const ko = { + ...dict, + formatting_toolbar: { + ...dict.formatting_toolbar, + ai: { + tooltip: "Generate content", + input_placeholder: "Enter a prompt", + }, + }, + slash_menu: { + ...dict.slash_menu, + ai_block: { + title: "AI Block", + subtext: "Block with AI generated content", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + ai: { + title: "Ask AI", + subtext: "Continue writing with AI", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + }, + placeholders: { + ...dict.placeholders, + ai: "Enter a prompt", + }, + ai_menu: { + custom_prompt: { + title: "Custom Prompt", + subtext: "Use your query as an AI prompt", + aliases: ["", "custom prompt"], + }, + make_longer: { + title: "Make Longer", + aliases: ["make longer"], + }, + }, + ai_block_toolbar: { + show_prompt: "Generated by AI", + show_prompt_datetime_tooltip: "Generated:", + update: "Update", + updating: "Updating…", + }, + ai_inline_toolbar: { + accept: "Accept", + retry: "Retry", + updating: "Updating…", + revert: "Revert", + }, +}; diff --git a/packages/ai/src/i18n/locales/nl.ts b/packages/ai/src/i18n/locales/nl.ts new file mode 100644 index 000000000..66f6958c2 --- /dev/null +++ b/packages/ai/src/i18n/locales/nl.ts @@ -0,0 +1,54 @@ +import { nl as dict } from "@blocknote/core"; + +export const nl = { + ...dict, + formatting_toolbar: { + ...dict.formatting_toolbar, + ai: { + tooltip: "Generate content", + input_placeholder: "Enter a prompt", + }, + }, + slash_menu: { + ...dict.slash_menu, + ai_block: { + title: "AI Block", + subtext: "Block with AI generated content", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + ai: { + title: "Ask AI", + subtext: "Continue writing with AI", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + }, + placeholders: { + ...dict.placeholders, + ai: "Enter a prompt", + }, + ai_menu: { + custom_prompt: { + title: "Custom Prompt", + subtext: "Use your query as an AI prompt", + aliases: ["", "custom prompt"], + }, + make_longer: { + title: "Make Longer", + aliases: ["make longer"], + }, + }, + ai_block_toolbar: { + show_prompt: "Generated by AI", + show_prompt_datetime_tooltip: "Generated:", + update: "Update", + updating: "Updating…", + }, + ai_inline_toolbar: { + accept: "Accept", + retry: "Retry", + updating: "Updating…", + revert: "Revert", + }, +}; diff --git a/packages/ai/src/i18n/locales/pl.ts b/packages/ai/src/i18n/locales/pl.ts new file mode 100644 index 000000000..d83ad4693 --- /dev/null +++ b/packages/ai/src/i18n/locales/pl.ts @@ -0,0 +1,54 @@ +import { pl as dict } from "@blocknote/core"; + +export const pl = { + ...dict, + formatting_toolbar: { + ...dict.formatting_toolbar, + ai: { + tooltip: "Generate content", + input_placeholder: "Enter a prompt", + }, + }, + slash_menu: { + ...dict.slash_menu, + ai_block: { + title: "AI Block", + subtext: "Block with AI generated content", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + ai: { + title: "Ask AI", + subtext: "Continue writing with AI", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + }, + placeholders: { + ...dict.placeholders, + ai: "Enter a prompt", + }, + ai_menu: { + custom_prompt: { + title: "Custom Prompt", + subtext: "Use your query as an AI prompt", + aliases: ["", "custom prompt"], + }, + make_longer: { + title: "Make Longer", + aliases: ["make longer"], + }, + }, + ai_block_toolbar: { + show_prompt: "Generated by AI", + show_prompt_datetime_tooltip: "Generated:", + update: "Update", + updating: "Updating…", + }, + ai_inline_toolbar: { + accept: "Accept", + retry: "Retry", + updating: "Updating…", + revert: "Revert", + }, +}; diff --git a/packages/ai/src/i18n/locales/pt.ts b/packages/ai/src/i18n/locales/pt.ts new file mode 100644 index 000000000..e8024ce41 --- /dev/null +++ b/packages/ai/src/i18n/locales/pt.ts @@ -0,0 +1,54 @@ +import { pt as dict } from "@blocknote/core"; + +export const pt = { + ...dict, + formatting_toolbar: { + ...dict.formatting_toolbar, + ai: { + tooltip: "Generate content", + input_placeholder: "Enter a prompt", + }, + }, + slash_menu: { + ...dict.slash_menu, + ai_block: { + title: "AI Block", + subtext: "Block with AI generated content", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + ai: { + title: "Ask AI", + subtext: "Continue writing with AI", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + }, + placeholders: { + ...dict.placeholders, + ai: "Enter a prompt", + }, + ai_menu: { + custom_prompt: { + title: "Custom Prompt", + subtext: "Use your query as an AI prompt", + aliases: ["", "custom prompt"], + }, + make_longer: { + title: "Make Longer", + aliases: ["make longer"], + }, + }, + ai_block_toolbar: { + show_prompt: "Generated by AI", + show_prompt_datetime_tooltip: "Generated:", + update: "Update", + updating: "Updating…", + }, + ai_inline_toolbar: { + accept: "Accept", + retry: "Retry", + updating: "Updating…", + revert: "Revert", + }, +}; diff --git a/packages/ai/src/i18n/locales/ru.ts b/packages/ai/src/i18n/locales/ru.ts new file mode 100644 index 000000000..4b89ed14c --- /dev/null +++ b/packages/ai/src/i18n/locales/ru.ts @@ -0,0 +1,54 @@ +import { ru as dict } from "@blocknote/core"; + +export const ru = { + ...dict, + formatting_toolbar: { + ...dict.formatting_toolbar, + ai: { + tooltip: "Generate content", + input_placeholder: "Enter a prompt", + }, + }, + slash_menu: { + ...dict.slash_menu, + ai_block: { + title: "AI Block", + subtext: "Block with AI generated content", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + ai: { + title: "Ask AI", + subtext: "Continue writing with AI", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + }, + placeholders: { + ...dict.placeholders, + ai: "Enter a prompt", + }, + ai_menu: { + custom_prompt: { + title: "Custom Prompt", + subtext: "Use your query as an AI prompt", + aliases: ["", "custom prompt"], + }, + make_longer: { + title: "Make Longer", + aliases: ["make longer"], + }, + }, + ai_block_toolbar: { + show_prompt: "Generated by AI", + show_prompt_datetime_tooltip: "Generated:", + update: "Update", + updating: "Updating…", + }, + ai_inline_toolbar: { + accept: "Accept", + retry: "Retry", + updating: "Updating…", + revert: "Revert", + }, +}; diff --git a/packages/ai/src/i18n/locales/vi.ts b/packages/ai/src/i18n/locales/vi.ts new file mode 100644 index 000000000..2b75f9097 --- /dev/null +++ b/packages/ai/src/i18n/locales/vi.ts @@ -0,0 +1,54 @@ +import { vi as dict } from "@blocknote/core"; + +export const vi = { + ...dict, + formatting_toolbar: { + ...dict.formatting_toolbar, + ai: { + tooltip: "Generate content", + input_placeholder: "Enter a prompt", + }, + }, + slash_menu: { + ...dict.slash_menu, + ai_block: { + title: "AI Block", + subtext: "Block with AI generated content", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + ai: { + title: "Ask AI", + subtext: "Continue writing with AI", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + }, + placeholders: { + ...dict.placeholders, + ai: "Enter a prompt", + }, + ai_menu: { + custom_prompt: { + title: "Custom Prompt", + subtext: "Use your query as an AI prompt", + aliases: ["", "custom prompt"], + }, + make_longer: { + title: "Make Longer", + aliases: ["make longer"], + }, + }, + ai_block_toolbar: { + show_prompt: "Generated by AI", + show_prompt_datetime_tooltip: "Generated:", + update: "Update", + updating: "Updating…", + }, + ai_inline_toolbar: { + accept: "Accept", + retry: "Retry", + updating: "Updating…", + revert: "Revert", + }, +}; diff --git a/packages/ai/src/i18n/locales/zh.ts b/packages/ai/src/i18n/locales/zh.ts new file mode 100644 index 000000000..1cb2bb191 --- /dev/null +++ b/packages/ai/src/i18n/locales/zh.ts @@ -0,0 +1,54 @@ +import { zh as dict } from "@blocknote/core"; + +export const zh = { + ...dict, + formatting_toolbar: { + ...dict.formatting_toolbar, + ai: { + tooltip: "Generate content", + input_placeholder: "Enter a prompt", + }, + }, + slash_menu: { + ...dict.slash_menu, + ai_block: { + title: "AI Block", + subtext: "Block with AI generated content", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + ai: { + title: "Ask AI", + subtext: "Continue writing with AI", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + }, + placeholders: { + ...dict.placeholders, + ai: "Enter a prompt", + }, + ai_menu: { + custom_prompt: { + title: "Custom Prompt", + subtext: "Use your query as an AI prompt", + aliases: ["", "custom prompt"], + }, + make_longer: { + title: "Make Longer", + aliases: ["make longer"], + }, + }, + ai_block_toolbar: { + show_prompt: "Generated by AI", + show_prompt_datetime_tooltip: "Generated:", + update: "Update", + updating: "Updating…", + }, + ai_inline_toolbar: { + accept: "Accept", + retry: "Retry", + updating: "Updating…", + revert: "Revert", + }, +}; diff --git a/packages/ai/src/i18n/useAIDictionary.ts b/packages/ai/src/i18n/useAIDictionary.ts new file mode 100644 index 000000000..993231cd7 --- /dev/null +++ b/packages/ai/src/i18n/useAIDictionary.ts @@ -0,0 +1,8 @@ +import { useBlockNoteContext } from "@blocknote/react"; + +import { getAIDictionary } from "./dictionary"; + +export function useAIDictionary() { + const ctx = useBlockNoteContext(); + return getAIDictionary(ctx!.editor!); +} diff --git a/packages/ai/src/index.ts b/packages/ai/src/index.ts new file mode 100644 index 000000000..59ed25124 --- /dev/null +++ b/packages/ai/src/index.ts @@ -0,0 +1,30 @@ +import "./style.css"; + +export * from "./blocks/AIBlockContent/AIBlockContent"; +export * from "./blocks/AIBlockContent/mockAIFunctions"; +export * from "./extensions/AIBlockToolbar/AIBlockToolbarPlugin"; +export * from "./extensions/AIShowSelectionPlugin"; + +export * from "./components/AIBlockToolbar/AIBlockToolbar"; +export * from "./components/AIBlockToolbar/AIBlockToolbarController"; +export * from "./components/AIBlockToolbar/AIBlockToolbarProps"; +export * from "./components/AIBlockToolbar/DefaultButtons/ShowPromptButton"; +export * from "./components/AIBlockToolbar/DefaultButtons/UpdateButton"; +export * from "./components/BlockNoteAIContext"; + +export * from "./components/AIInlineToolbar/AIInlineToolbar"; +export * from "./components/AIInlineToolbar/AIInlineToolbarController"; +export * from "./components/AIInlineToolbar/AIInlineToolbarProps"; +export * from "./components/AIInlineToolbar/DefaultButtons/AcceptButton"; +export * from "./components/AIInlineToolbar/DefaultButtons/RetryButton"; +export * from "./components/AIInlineToolbar/DefaultButtons/RevertButton"; + +export * from "./components/FormattingToolbar/DefaultButtons/AIButton"; +export * from "./components/FormattingToolbar/DefaultSelects/BlockTypeSelect"; + +export * from "./components/SuggestionMenu/getAISlashMenuItems"; + +export * from "./components/BlockNoteAIUI"; + +export * from "./i18n/dictionary"; +export * from "./i18n/locales"; diff --git a/packages/ai/src/style.css b/packages/ai/src/style.css new file mode 100644 index 000000000..ff80cdfbe --- /dev/null +++ b/packages/ai/src/style.css @@ -0,0 +1,84 @@ +/* AI Block */ +[data-content-type="ai"] .bn-ai-prompt-box { + align-items: center; + border-radius: 8px; + display: flex; + flex-direction: row; + gap: 10px; + outline: solid 3px rgba(154, 56, 173, 0.2); + padding: 12px; + width: 100%; +} + +[data-content-type="ai"] .bn-ai-prompt-box svg { + color: rgba(154, 56, 173, 0.2); + width: 24px; + height: 24px; +} + +[data-content-type="ai"] .bn-ai-prompt-box span { + flex: 1; +} + +[data-content-type="ai"] .bn-ai-prompt-box button { + background-color: transparent; + border: solid 1px rgba(120, 120, 120, 0.3); + border-radius: 4px; + color: rgba(154, 56, 173, 0.5); + cursor: pointer; + user-select: none; +} + +[data-content-type="ai"][data-prompt] p { + border-radius: 4px; +} + +.bn-editor[contenteditable="true"] + [data-content-type="ai"][data-prompt] + p:hover { + outline: solid 3px rgba(154, 56, 173, 0.1); +} + +.bn-editor[contenteditable="true"] + [data-content-type="ai"][data-prompt][data-is-focused] + p { + outline: solid 3px rgba(154, 56, 173, 0.2); +} + +.bn-side-menu[data-block-type="ai"]:not([data-prompt]) { + height: 58px; +} + +.bn-combobox { + display: flex; + flex-direction: column; + gap: 4px; + width: 100%; +} + +div:not(.bn-popover-content) > .bn-combobox-input, +div:not(.bn-popover-content) > .bn-combobox-items:not(:empty) { + background-color: var(--bn-colors-menu-background); + border: var(--bn-border); + border-radius: var(--bn-border-radius-medium); + box-shadow: var(--bn-shadow-medium); + color: var(--bn-colors-menu-text); + gap: 4px; + min-width: 145px; + padding: 2px; +} + +.bn-combobox-items { + max-width: 50%; +} + +/* Mantine (TODO) */ +/*.bn-toolbar .mantine-Button-root.bn-show-prompt-button,*/ +/*.bn-toolbar .mantine-Button-root.bn-show-prompt-button:hover {*/ +/* color: rgba(154, 56, 173, 0.5);*/ +/*}*/ + +[data-ai-show-selection] { + background-color: highlight; + padding: 2px 0; +} diff --git a/packages/ai/src/testUtil/cases/defaultSchema.ts b/packages/ai/src/testUtil/cases/defaultSchema.ts new file mode 100644 index 000000000..6161ed05c --- /dev/null +++ b/packages/ai/src/testUtil/cases/defaultSchema.ts @@ -0,0 +1,591 @@ +import { + BlockNoteEditor, + DefaultBlockSchema, + DefaultInlineContentSchema, + DefaultStyleSchema, +} from "@blocknote/core"; +import { EditorTestCases } from "../index"; + +export const defaultSchemaTestCases: EditorTestCases< + DefaultBlockSchema, + DefaultInlineContentSchema, + DefaultStyleSchema +> = { + name: "default schema", + createEditor: () => { + return BlockNoteEditor.create({ + // uploadFile: uploadToTmpFilesDotOrg_DEV_ONLY, + }); + }, + documents: [ + { + name: "paragraph/empty", + blocks: [ + { + type: "paragraph", + }, + ], + }, + { + name: "paragraph/hello-world", + blocks: [ + { + type: "paragraph", + content: "Hello", + }, + { + type: "paragraph", + content: "World", + }, + ], + }, + { + name: "paragraph/styled", + blocks: [ + { + type: "paragraph", + props: { + textAlignment: "center", + textColor: "orange", + backgroundColor: "pink", + }, + content: [ + { + type: "text", + styles: {}, + text: "Plain ", + }, + { + type: "text", + styles: { + textColor: "red", + }, + text: "Red Text ", + }, + { + type: "text", + styles: { + backgroundColor: "blue", + }, + text: "Blue Background ", + }, + { + type: "text", + styles: { + textColor: "red", + backgroundColor: "blue", + }, + text: "Mixed Colors", + }, + ], + }, + ], + }, + { + name: "paragraph/nested", + blocks: [ + { + type: "paragraph", + content: "Paragraph", + children: [ + { + type: "paragraph", + content: "Nested Paragraph 1", + }, + { + type: "paragraph", + content: "Nested Paragraph 2", + }, + ], + }, + ], + }, + { + name: "paragraph/lineBreaks", + blocks: [ + { + type: "paragraph", + content: "Line 1\nLine 2", + }, + ], + }, + { + name: "lists/basic", + blocks: [ + { + type: "bulletListItem", + content: "Bullet List Item 1", + }, + { + type: "bulletListItem", + content: "Bullet List Item 2", + }, + { + type: "numberedListItem", + content: "Numbered List Item 1", + }, + { + type: "numberedListItem", + content: "Numbered List Item 2", + }, + { + type: "checkListItem", + content: "Check List Item 1", + }, + { + type: "checkListItem", + props: { + checked: true, + }, + content: "Check List Item 2", + }, + ], + }, + { + name: "lists/nested", + blocks: [ + { + type: "bulletListItem", + content: "Bullet List Item 1", + }, + { + type: "bulletListItem", + content: "Bullet List Item 2", + children: [ + { + type: "numberedListItem", + content: "Numbered List Item 1", + }, + { + type: "numberedListItem", + content: "Numbered List Item 2", + children: [ + { + type: "checkListItem", + content: "Check List Item 1", + }, + { + type: "checkListItem", + props: { + checked: true, + }, + content: "Check List Item 2", + }, + ], + }, + ], + }, + ], + }, + { + name: "file/button", + blocks: [ + { + type: "file", + }, + ], + }, + { + name: "file/basic", + blocks: [ + { + type: "file", + props: { + name: "example", + url: "exampleURL", + caption: "Caption", + }, + }, + ], + }, + { + name: "file/noName", + blocks: [ + { + type: "file", + props: { + url: "exampleURL", + caption: "Caption", + }, + }, + ], + }, + { + name: "file/noCaption", + blocks: [ + { + type: "file", + props: { + name: "example", + url: "exampleURL", + }, + }, + ], + }, + { + name: "file/nested", + blocks: [ + { + type: "file", + props: { + name: "example", + url: "exampleURL", + caption: "Caption", + }, + children: [ + { + type: "file", + props: { + name: "example", + url: "exampleURL", + caption: "Caption", + }, + }, + ], + }, + ], + }, + // Because images need to fetch the download URL async, their internal HTML + // is initially rendered without a `src` attribute, which is reflected in + // the tests. + { + name: "image/button", + blocks: [ + { + type: "image", + }, + ], + }, + { + name: "image/basic", + blocks: [ + { + type: "image", + props: { + name: "example", + url: "exampleURL", + caption: "Caption", + previewWidth: 256, + }, + }, + ], + }, + { + name: "image/noName", + blocks: [ + { + type: "image", + props: { + url: "exampleURL", + caption: "Caption", + previewWidth: 256, + }, + }, + ], + }, + { + name: "image/noCaption", + blocks: [ + { + type: "image", + props: { + name: "example", + url: "exampleURL", + previewWidth: 256, + }, + }, + ], + }, + { + name: "image/noPreview", + blocks: [ + { + type: "image", + props: { + name: "example", + url: "exampleURL", + caption: "Caption", + showPreview: false, + previewWidth: 256, + }, + }, + ], + }, + { + name: "image/nested", + blocks: [ + { + type: "image", + props: { + url: "exampleURL", + caption: "Caption", + previewWidth: 256, + }, + children: [ + { + type: "image", + props: { + url: "exampleURL", + caption: "Caption", + previewWidth: 256, + }, + }, + ], + }, + ], + }, + { + name: "link/basic", + blocks: [ + { + // id: UniqueID.options.generateID(), + type: "paragraph", + content: [ + { + type: "link", + href: "https://www.website.com", + content: "Website", + }, + ], + }, + ], + }, + { + name: "link/styled", + blocks: [ + { + // id: UniqueID.options.generateID(), + type: "paragraph", + content: [ + { + type: "link", + href: "https://www.website.com", + content: [ + { + type: "text", + text: "Web", + styles: { + bold: true, + }, + }, + { + type: "text", + text: "site", + styles: {}, + }, + ], + }, + ], + }, + ], + }, + { + name: "link/adjacent", + blocks: [ + { + // id: UniqueID.options.generateID(), + type: "paragraph", + content: [ + { + type: "link", + href: "https://www.website.com", + content: "Website", + }, + { + type: "link", + href: "https://www.website2.com", + content: "Website2", + }, + ], + }, + ], + }, + { + name: "hardbreak/basic", + blocks: [ + { + // id: UniqueID.options.generateID(), + type: "paragraph", + content: [ + { + type: "text", + text: "Text1\nText2", + styles: {}, + }, + ], + }, + ], + }, + { + name: "hardbreak/multiple", + blocks: [ + { + // id: UniqueID.options.generateID(), + type: "paragraph", + content: [ + { + type: "text", + text: "Text1\nText2\nText3", + styles: {}, + }, + ], + }, + ], + }, + { + name: "hardbreak/start", + blocks: [ + { + // id: UniqueID.options.generateID(), + type: "paragraph", + content: [ + { + type: "text", + text: "\nText1", + styles: {}, + }, + ], + }, + ], + }, + { + name: "hardbreak/end", + blocks: [ + { + // id: UniqueID.options.generateID(), + type: "paragraph", + content: [ + { + type: "text", + text: "Text1\n", + styles: {}, + }, + ], + }, + ], + }, + { + name: "hardbreak/only", + blocks: [ + { + // id: UniqueID.options.generateID(), + type: "paragraph", + content: [ + { + type: "text", + text: "\n", + styles: {}, + }, + ], + }, + ], + }, + { + name: "hardbreak/styles", + blocks: [ + { + // id: UniqueID.options.generateID(), + type: "paragraph", + content: [ + { + type: "text", + text: "Text1\n", + styles: {}, + }, + { + type: "text", + text: "Text2", + styles: { bold: true }, + }, + ], + }, + ], + }, + { + name: "hardbreak/link", + blocks: [ + { + // id: UniqueID.options.generateID(), + type: "paragraph", + content: [ + { + type: "link", + href: "https://www.website.com", + content: "Link1\nLink1", + }, + ], + }, + ], + }, + { + name: "hardbreak/between-links", + blocks: [ + { + // id: UniqueID.options.generateID(), + type: "paragraph", + content: [ + { + type: "link", + href: "https://www.website.com", + content: "Link1\n", + }, + { + type: "link", + href: "https://www.website2.com", + content: "Link2", + }, + ], + }, + ], + }, + { + name: "complex/misc", + blocks: [ + { + // id: UniqueID.options.generateID(), + type: "heading", + props: { + backgroundColor: "blue", + textColor: "yellow", + textAlignment: "right", + level: 2, + }, + content: [ + { + type: "text", + text: "Heading ", + styles: { + bold: true, + underline: true, + }, + }, + { + type: "text", + text: "2", + styles: { + italic: true, + strike: true, + }, + }, + ], + children: [ + { + // id: UniqueID.options.generateID(), + type: "paragraph", + props: { + backgroundColor: "red", + }, + content: "Paragraph", + children: [], + }, + { + // id: UniqueID.options.generateID(), + type: "bulletListItem", + props: {}, + }, + ], + }, + ], + }, + ], +}; diff --git a/packages/ai/src/testUtil/index.ts b/packages/ai/src/testUtil/index.ts new file mode 100644 index 000000000..69031648c --- /dev/null +++ b/packages/ai/src/testUtil/index.ts @@ -0,0 +1,20 @@ +import { + BlockNoteEditor, + BlockSchema, + InlineContentSchema, + PartialBlock, + StyleSchema, +} from "@blocknote/core"; + +export type EditorTestCases< + B extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +> = { + name: string; + createEditor: () => BlockNoteEditor; + documents: Array<{ + name: string; + blocks: PartialBlock, NoInfer, NoInfer>[]; + }>; +}; diff --git a/packages/ai/tsconfig.json b/packages/ai/tsconfig.json new file mode 100644 index 000000000..607ad93cf --- /dev/null +++ b/packages/ai/tsconfig.json @@ -0,0 +1,32 @@ +{ + "compilerOptions": { + "target": "ESNext", + "useDefineForClassFields": true, + "module": "ESNext", + "lib": ["ESNext", "DOM"], + "moduleResolution": "Node", + "jsx": "react-jsx", + "strict": true, + "sourceMap": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "noEmit": false, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noImplicitReturns": true, + "outDir": "dist", + "declaration": true, + "declarationDir": "types", + "composite": true, + "skipLibCheck": true, + }, + "include": ["src"], + "references": [ + { + "path": "../core" + }, + { + "path": "../react" + } + ] +} diff --git a/packages/ai/vite.config.ts b/packages/ai/vite.config.ts new file mode 100644 index 000000000..49c73d3d7 --- /dev/null +++ b/packages/ai/vite.config.ts @@ -0,0 +1,53 @@ +import react from "@vitejs/plugin-react"; +import * as path from "path"; +import { webpackStats } from "rollup-plugin-webpack-stats"; +import { defineConfig } from "vite"; +import pkg from "./package.json"; +// import eslintPlugin from "vite-plugin-eslint"; + +// https://vitejs.dev/config/ +export default defineConfig((conf) => ({ + test: { + environment: "jsdom", + setupFiles: ["./vitestSetup.ts"], + }, + plugins: [react(), webpackStats()], + // used so that vitest resolves the core package from the sources instead of the built version + resolve: { + alias: + conf.command === "build" + ? ({} as Record) + : ({ + // load live from sources with live reload working + "@blocknote/core": path.resolve(__dirname, "../core/src/"), + "@blocknote/mantine": path.resolve(__dirname, "../mantine/src/"), + "@blocknote/react": path.resolve(__dirname, "../react/src/"), + } as Record), + }, + build: { + sourcemap: true, + lib: { + entry: path.resolve(__dirname, "src/index.ts"), + name: "blocknote-ai", + fileName: "blocknote-ai", + }, + rollupOptions: { + // make sure to externalize deps that shouldn't be bundled + // into your library + external: Object.keys({ + ...pkg.dependencies, + ...pkg.peerDependencies, + ...pkg.devDependencies, + }), + output: { + // Provide global variables to use in the UMD build + // for externalized deps + globals: { + react: "React", + "react-dom": "ReactDOM", + }, + interop: "compat", // https://rollupjs.org/migration/#changed-defaults + }, + }, + }, +})); diff --git a/packages/ai/vitestSetup.ts b/packages/ai/vitestSetup.ts new file mode 100644 index 000000000..9a869521e --- /dev/null +++ b/packages/ai/vitestSetup.ts @@ -0,0 +1,35 @@ +import { afterEach, beforeEach } from "vitest"; + +beforeEach(() => { + (window as Window & { __TEST_OPTIONS?: any }).__TEST_OPTIONS = {}; +}); + +afterEach(() => { + delete (window as Window & { __TEST_OPTIONS?: any }).__TEST_OPTIONS; +}); + +// Mock ClipboardEvent +class ClipboardEventMock extends Event { + public clipboardData = { + getData: () => { + // + }, + setData: () => { + // + }, + }; +} +(global as any).ClipboardEvent = ClipboardEventMock; + +// Mock DragEvent +class DragEventMock extends Event { + public dataTransfer = { + getData: () => { + // + }, + setData: () => { + // + }, + }; +} +(global as any).DragEvent = DragEventMock; diff --git a/packages/ariakit/src/index.tsx b/packages/ariakit/src/index.tsx index e766e2c65..3b7581d3d 100644 --- a/packages/ariakit/src/index.tsx +++ b/packages/ariakit/src/index.tsx @@ -46,7 +46,7 @@ import { ToolbarSelect } from "./toolbar/ToolbarSelect"; import "./style.css"; export const components: Components = { - FormattingToolbar: { + Toolbar: { Root: Toolbar, Button: ToolbarButton, Select: ToolbarSelect, @@ -64,10 +64,6 @@ export const components: Components = { EmptyItem: GridSuggestionMenuEmptyItem, Loader: GridSuggestionMenuLoader, }, - LinkToolbar: { - Root: Toolbar, - Button: ToolbarButton, - }, SideMenu: { Root: SideMenu, Button: SideMenuButton, diff --git a/packages/ariakit/src/input/TextInput.tsx b/packages/ariakit/src/input/TextInput.tsx index 9da81c8f1..233ed74f4 100644 --- a/packages/ariakit/src/input/TextInput.tsx +++ b/packages/ariakit/src/input/TextInput.tsx @@ -15,13 +15,16 @@ export const TextInput = forwardRef< className, name, label, + variant, icon, value, autoFocus, placeholder, + disabled, onKeyDown, onChange, onSubmit, + autoComplete, ...rest } = props; @@ -33,15 +36,21 @@ export const TextInput = forwardRef<
{icon}
diff --git a/packages/ariakit/src/style.css b/packages/ariakit/src/style.css index 213f4d5cd..31c45d5e5 100644 --- a/packages/ariakit/src/style.css +++ b/packages/ariakit/src/style.css @@ -70,14 +70,29 @@ flex: 1; } +.bn-suggestion-menu-item-small .bn-ak-suggestion-menu-item-title { + font-size: 0.875rem +} + .bn-ak-suggestion-menu-item-subtitle { font-size: 0.7rem; } +.bn-suggestion-menu-item-small .bn-ak-suggestion-menu-item-subtitle { + display: none; +} + .bn-ak-suggestion-menu-item-section[data-position="left"] { + align-items: center; + display: flex; + justify-content: center; padding: 8px; } +.bn-suggestion-menu-item-small .bn-ak-suggestion-menu-item-section[data-position="left"] { + padding: 0; +} + .bn-ak-suggestion-menu-item-section[data-position="right"] { --border: rgb(0 0 0/13%); --highlight: rgb(255 255 255/20%); diff --git a/packages/ariakit/src/suggestionMenu/SuggestionMenuItem.tsx b/packages/ariakit/src/suggestionMenu/SuggestionMenuItem.tsx index 8acf330c3..a44ce0318 100644 --- a/packages/ariakit/src/suggestionMenu/SuggestionMenuItem.tsx +++ b/packages/ariakit/src/suggestionMenu/SuggestionMenuItem.tsx @@ -19,7 +19,7 @@ export const SuggestionMenuItem = forwardRef< const overflow = elementOverflow( itemRef.current, - document.querySelector(".bn-suggestion-menu")! + document.querySelector(".bn-suggestion-menu, #ai-suggestion-menu")! // TODO ); if (overflow === "top") { @@ -34,6 +34,7 @@ export const SuggestionMenuItem = forwardRef< className={mergeCSSClasses("bn-ak-menu-item", className || "")} ref={mergeRefs([ref, itemRef])} id={id} + onMouseDown={(event) => event.preventDefault()} onClick={onClick} role="option" aria-selected={isSelected || undefined}> diff --git a/packages/ariakit/src/toolbar/Toolbar.tsx b/packages/ariakit/src/toolbar/Toolbar.tsx index 20b588b4e..6afa56131 100644 --- a/packages/ariakit/src/toolbar/Toolbar.tsx +++ b/packages/ariakit/src/toolbar/Toolbar.tsx @@ -4,8 +4,7 @@ import { assertEmpty, mergeCSSClasses } from "@blocknote/core"; import { ComponentProps } from "@blocknote/react"; import { forwardRef } from "react"; -type ToolbarProps = ComponentProps["FormattingToolbar"]["Root"] & - ComponentProps["LinkToolbar"]["Root"]; +type ToolbarProps = ComponentProps["Toolbar"]["Root"]; export const Toolbar = forwardRef( (props, ref) => { diff --git a/packages/ariakit/src/toolbar/ToolbarButton.tsx b/packages/ariakit/src/toolbar/ToolbarButton.tsx index f19b2f9ca..a2e273ab3 100644 --- a/packages/ariakit/src/toolbar/ToolbarButton.tsx +++ b/packages/ariakit/src/toolbar/ToolbarButton.tsx @@ -9,8 +9,7 @@ import { assertEmpty, isSafari, mergeCSSClasses } from "@blocknote/core"; import { ComponentProps } from "@blocknote/react"; import { forwardRef } from "react"; -type ToolbarButtonProps = ComponentProps["FormattingToolbar"]["Button"] & - ComponentProps["LinkToolbar"]["Button"]; +type ToolbarButtonProps = ComponentProps["Toolbar"]["Button"]; /** * Helper for basic buttons that show in the formatting toolbar. @@ -34,45 +33,49 @@ export const ToolbarButton = forwardRef( // assertEmpty in this case is only used at typescript level, not runtime level assertEmpty(rest, false); - return ( - - { - if (isSafari()) { - (e.currentTarget as HTMLButtonElement).focus(); - } - }} - onClick={onClick} - aria-pressed={isSelected} - data-selected={isSelected ? "true" : undefined} - data-test={ - props.mainTooltip.slice(0, 1).toLowerCase() + - props.mainTooltip.replace(/\s+/g, "").slice(1) - } - // size={"xs"} - disabled={isDisabled || false} - ref={ref} - {...rest}> - {icon} - {children} - + const Button = ( + { + if (isSafari()) { + (e.currentTarget as HTMLButtonElement).focus(); } - /> - - {mainTooltip} - {secondaryTooltip && {secondaryTooltip}} - - + }} + onClick={onClick} + aria-pressed={isSelected} + data-selected={isSelected ? "true" : undefined} + data-test={ + mainTooltip && + mainTooltip.slice(0, 1).toLowerCase() + + mainTooltip.replace(/\s+/g, "").slice(1) + } + // size={"xs"} + disabled={isDisabled || false} + ref={ref} + {...rest}> + {icon} + {children} + ); + + if (mainTooltip) { + return ( + + + + {mainTooltip} + {secondaryTooltip && {secondaryTooltip}} + + + ); + } + + return Button; } ); diff --git a/packages/ariakit/src/toolbar/ToolbarSelect.tsx b/packages/ariakit/src/toolbar/ToolbarSelect.tsx index 83d0cf8bd..101bfcf02 100644 --- a/packages/ariakit/src/toolbar/ToolbarSelect.tsx +++ b/packages/ariakit/src/toolbar/ToolbarSelect.tsx @@ -14,7 +14,7 @@ import { forwardRef } from "react"; export const ToolbarSelect = forwardRef< HTMLDivElement, - ComponentProps["FormattingToolbar"]["Select"] + ComponentProps["Toolbar"]["Select"] >((props, ref) => { const { className, items, isDisabled, ...rest } = props; diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childToParent.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childToParent.json new file mode 100644 index 000000000..213c4c088 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childToParent.json @@ -0,0 +1,48 @@ +{ + "blocks": [ + { + "block": { + "id": "0", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Heading 1", + "styles": {} + } + ], + "children": [ + { + "block": { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childrenToNextParent.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childrenToNextParent.json new file mode 100644 index 000000000..97c49ed9e --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childrenToNextParent.json @@ -0,0 +1,89 @@ +{ + "blocks": [ + { + "block": { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "2", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "3", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "4", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Heading 2", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childrenToNextParentsChildren.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childrenToNextParentsChildren.json new file mode 100644 index 000000000..0a50a9285 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childrenToNextParentsChildren.json @@ -0,0 +1,153 @@ +{ + "blocks": [ + { + "block": { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "2", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "3", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "4", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Heading 2", + "styles": {} + } + ], + "children": [ + { + "block": { + "id": "5", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "6", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "7", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/image.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/image.json new file mode 100644 index 000000000..29fa8a873 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/image.json @@ -0,0 +1,22 @@ +{ + "blocks": [ + { + "block": { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": true + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/move_end.txt b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/move_end.txt new file mode 100644 index 000000000..d3158de23 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/move_end.txt @@ -0,0 +1,276 @@ +{"blocks":[]} +{"blocks":[]} +{"blocks":[]} +{"blocks":[]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"H","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"He","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Hea","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Head","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headi","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headin","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"H","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"He","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Hea","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Head","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headi","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headin","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"B","styles":{"bold":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bo","styles":{"bold":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bol","styles":{"bold":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"I","styles":{"italic":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"It","styles":{"italic":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ita","styles":{"italic":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ital","styles":{"italic":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Itali","styles":{"italic":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"R","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Re","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Reg","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regu","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regul","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regula","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"T","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Ta","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Tab","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Tabl","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table ","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table C","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Ce","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cel","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"T","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Ta","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tab","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tabl","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table ","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table C","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Ce","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cel","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"T","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Ta","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Tab","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Tabl","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table ","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table C","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Ce","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cel","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"T","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Ta","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tab","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tabl","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table ","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table C","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Ce","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cel","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/move_start.txt b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/move_start.txt new file mode 100644 index 000000000..6f9932f29 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/move_start.txt @@ -0,0 +1,276 @@ +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"eading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ding 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ing 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ng 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"g 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":" 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"eading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ding 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ing 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ng 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"g 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":" 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"old","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ld","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"d","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"talic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"alic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"lic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"c","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"egular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"gular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"lar","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ar","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"r","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"able Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"ble Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"le Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"e Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":" Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"ell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"ll","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"l","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"able Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"ble Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"le Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"e Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":" Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"ell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"ll","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"l","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"able Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"ble Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"le Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"e Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":" Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"ell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"ll","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"l","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"able Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"ble Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"le Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"e Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":" Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"ell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"ll","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"l","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[]} +{"blocks":[]} diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/multipleChildren.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/multipleChildren.json new file mode 100644 index 000000000..f94d3f294 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/multipleChildren.json @@ -0,0 +1,67 @@ +{ + "blocks": [ + { + "block": { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "2", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "3", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/multipleStyledText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/multipleStyledText.json new file mode 100644 index 000000000..0bfa9e865 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/multipleStyledText.json @@ -0,0 +1,40 @@ +{ + "blocks": [ + { + "block": { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Bold", + "styles": { + "bold": true + } + }, + { + "type": "text", + "text": "Italic", + "styles": { + "italic": true + } + }, + { + "type": "text", + "text": "Regular", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/nestedImage.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/nestedImage.json new file mode 100644 index 000000000..a1cc58dc2 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/nestedImage.json @@ -0,0 +1,81 @@ +{ + "blocks": [ + { + "block": { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Bold", + "styles": { + "bold": true + } + }, + { + "type": "text", + "text": "Italic", + "styles": { + "italic": true + } + }, + { + "type": "text", + "text": "Regular", + "styles": {} + } + ], + "children": [ + { + "block": { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [ + { + "block": { + "id": "10", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/partialChildToParent.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/partialChildToParent.json new file mode 100644 index 000000000..b0510276a --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/partialChildToParent.json @@ -0,0 +1,48 @@ +{ + "blocks": [ + { + "block": { + "id": "0", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "ding 1", + "styles": {} + } + ], + "children": [ + { + "block": { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested ", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": true + } + ] + }, + "contentCutAtStart": true, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/styledText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/styledText.json new file mode 100644 index 000000000..6c21f8936 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/styledText.json @@ -0,0 +1,28 @@ +{ + "blocks": [ + { + "block": { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Italic", + "styles": { + "italic": true + } + } + ], + "children": [] + }, + "contentCutAtStart": true, + "contentCutAtEnd": true + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableAllCells.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableAllCells.json new file mode 100644 index 000000000..9554058cd --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableAllCells.json @@ -0,0 +1,33 @@ +{ + "blocks": [ + { + "block": { + "id": "11", + "type": "table", + "props": { + "textColor": "default", + "backgroundColor": "default" + }, + "content": { + "type": "tableContent", + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + }, + "contentCutAtStart": true, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableCell.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableCell.json new file mode 100644 index 000000000..dd4fb84e9 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableCell.json @@ -0,0 +1,33 @@ +{ + "blocks": [ + { + "block": { + "id": "11", + "type": "table", + "props": { + "textColor": "default", + "backgroundColor": "default" + }, + "content": { + "type": "tableContent", + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": true + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableCellText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableCellText.json new file mode 100644 index 000000000..dd4fb84e9 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableCellText.json @@ -0,0 +1,33 @@ +{ + "blocks": [ + { + "block": { + "id": "11", + "type": "table", + "props": { + "textColor": "default", + "backgroundColor": "default" + }, + "content": { + "type": "tableContent", + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": true + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableRow.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableRow.json new file mode 100644 index 000000000..4374b9640 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableRow.json @@ -0,0 +1,33 @@ +{ + "blocks": [ + { + "block": { + "id": "11", + "type": "table", + "props": { + "textColor": "default", + "backgroundColor": "default" + }, + "content": { + "type": "tableContent", + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + }, + "contentCutAtStart": true, + "contentCutAtEnd": true + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/unstyledText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/unstyledText.json new file mode 100644 index 000000000..f8f6265c9 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/unstyledText.json @@ -0,0 +1,26 @@ +{ + "blocks": [ + { + "block": { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Regular", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": true, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childToParent.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childToParent.json new file mode 100644 index 000000000..5386baa8b --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childToParent.json @@ -0,0 +1,38 @@ +[ + { + "id": "0", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "[$!Heading 1", + "styles": {} + } + ], + "children": [ + { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1!$]", + "styles": {} + } + ], + "children": [] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childrenToNextParent.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childrenToNextParent.json new file mode 100644 index 000000000..439c3f373 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childrenToNextParent.json @@ -0,0 +1,123 @@ +[ + { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "[$!Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + { + "id": "2", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + { + "id": "3", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + }, + { + "id": "4", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Heading 2!$]", + "styles": {} + } + ], + "children": [ + { + "id": "5", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + { + "id": "6", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + { + "id": "7", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childrenToNextParentsChildren.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childrenToNextParentsChildren.json new file mode 100644 index 000000000..0b3f6b2b2 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childrenToNextParentsChildren.json @@ -0,0 +1,123 @@ +[ + { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "[$!Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + { + "id": "2", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + { + "id": "3", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + }, + { + "id": "4", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Heading 2", + "styles": {} + } + ], + "children": [ + { + "id": "5", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + { + "id": "6", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + { + "id": "7", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3!$]", + "styles": {} + } + ], + "children": [] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/image.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/image.json new file mode 100644 index 000000000..3d321c032 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/image.json @@ -0,0 +1,80 @@ +[ + { + "id": "9", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "[$!", + "styles": {} + } + ], + "children": [] + }, + { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [ + { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "!$]", + "styles": {} + } + ], + "children": [] + } + ] + }, + { + "id": "9", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [], + "children": [ + { + "id": "10", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph", + "styles": {} + } + ], + "children": [] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/move_end.txt b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/move_end.txt new file mode 100644 index 000000000..92ded9384 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/move_end.txt @@ -0,0 +1,212 @@ +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!H!$]eading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!He!$]ading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Hea!$]ding 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Head!$]ing 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Headi!$]ng 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Headin!$]g 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading!$] 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading !$]1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1!$]","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$] 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph !$]1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1!$]","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$] 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph !$]2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2!$]","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$] 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph !$]3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3!$]","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"!$]Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"H!$]eading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"He!$]ading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Hea!$]ding 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Head!$]ing 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headi!$]ng 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headin!$]g 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading!$] 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading !$]2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2!$]","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$] 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph !$]1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1!$]","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$] 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph !$]2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2!$]","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$] 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph !$]3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3!$]","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"!$]Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"B!$]old","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bo!$]ld","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bol!$]d","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold!$]","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"I!$]talic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"It!$]alic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ita!$]lic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ital!$]ic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Itali!$]c","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic!$]","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"R!$]egular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Re!$]gular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Reg!$]ular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regu!$]lar","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regul!$]ar","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regula!$]r","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular!$]","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$]","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1!$]","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"T!$]able Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Ta!$]ble Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Tab!$]le Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Tabl!$]e Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table!$] Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table !$]Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table C!$]ell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Ce!$]ll","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cel!$]l","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell!$]","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1!$]","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"T!$]able Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Ta!$]ble Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tab!$]le Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tabl!$]e Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table!$] Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table !$]Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table C!$]ell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Ce!$]ll","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cel!$]l","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1!$]","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"T!$]able Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Ta!$]ble Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Tab!$]le Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Tabl!$]e Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table!$] Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table !$]Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table C!$]ell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Ce!$]ll","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cel!$]l","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell!$]","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1!$]","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"T!$]able Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Ta!$]ble Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tab!$]le Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tabl!$]e Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table!$] Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table !$]Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table C!$]ell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Ce!$]ll","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cel!$]l","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/move_start.txt b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/move_start.txt new file mode 100644 index 000000000..b76eac29f --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/move_start.txt @@ -0,0 +1,212 @@ +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"H[$!eading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"He[$!ading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Hea[$!ding 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Head[$!ing 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headi[$!ng 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headin[$!g 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading[$! 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading [$!1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1[$!","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$! 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph [$!1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1[$!","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$! 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph [$!2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2[$!","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$! 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph [$!3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3[$!","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"H[$!eading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"He[$!ading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Hea[$!ding 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Head[$!ing 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headi[$!ng 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headin[$!g 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading[$! 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading [$!2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2[$!","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$! 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph [$!1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1[$!","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$! 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph [$!2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2[$!","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$! 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph [$!3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3[$!","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"B[$!old","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bo[$!ld","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bol[$!d","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold[$!","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"I[$!talic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"It[$!alic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ita[$!lic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ital[$!ic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Itali[$!c","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic[$!","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"R[$!egular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Re[$!gular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Reg[$!ular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regu[$!lar","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regul[$!ar","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regula[$!r","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular[$!","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$!","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"[$!Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"T[$!able Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Ta[$!ble Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Tab[$!le Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Tabl[$!e Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table[$! Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table [$!Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table C[$!ell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Ce[$!ll","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cel[$!l","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell[$!","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"[$!Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"T[$!able Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Ta[$!ble Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tab[$!le Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tabl[$!e Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table[$! Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table [$!Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table C[$!ell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Ce[$!ll","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cel[$!l","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell[$!","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"[$!Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"T[$!able Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Ta[$!ble Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Tab[$!le Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Tabl[$!e Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table[$! Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table [$!Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table C[$!ell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Ce[$!ll","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cel[$!l","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell[$!","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"[$!Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"T[$!able Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Ta[$!ble Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tab[$!le Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tabl[$!e Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table[$! Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table [$!Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table C[$!ell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Ce[$!ll!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default","backgroundColor":"default"},"content":{"type":"tableContent","rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cel[$!l!$]","styles":{}}]]}]},"children":[]}] diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/multipleChildren.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/multipleChildren.json new file mode 100644 index 000000000..0474de6ac --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/multipleChildren.json @@ -0,0 +1,53 @@ +[ + { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "[$!Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + { + "id": "2", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + { + "id": "3", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3!$]", + "styles": {} + } + ], + "children": [] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/multipleStyledText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/multipleStyledText.json new file mode 100644 index 000000000..79fade4aa --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/multipleStyledText.json @@ -0,0 +1,67 @@ +[ + { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "[$!Bold", + "styles": { + "bold": true + } + }, + { + "type": "text", + "text": "Italic", + "styles": { + "italic": true + } + }, + { + "type": "text", + "text": "Regular!$]", + "styles": {} + } + ], + "children": [ + { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [ + { + "id": "10", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph", + "styles": {} + } + ], + "children": [] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/nestedImage.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/nestedImage.json new file mode 100644 index 000000000..7caba1239 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/nestedImage.json @@ -0,0 +1,67 @@ +[ + { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "[$!Bold", + "styles": { + "bold": true + } + }, + { + "type": "text", + "text": "Italic", + "styles": { + "italic": true + } + }, + { + "type": "text", + "text": "Regular", + "styles": {} + } + ], + "children": [ + { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [ + { + "id": "10", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph!$]", + "styles": {} + } + ], + "children": [] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/partialChildToParent.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/partialChildToParent.json new file mode 100644 index 000000000..96184b9f0 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/partialChildToParent.json @@ -0,0 +1,38 @@ +[ + { + "id": "0", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Hea[$!ding 1", + "styles": {} + } + ], + "children": [ + { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested !$]Paragraph 1", + "styles": {} + } + ], + "children": [] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/styledText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/styledText.json new file mode 100644 index 000000000..d87036d63 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/styledText.json @@ -0,0 +1,67 @@ +[ + { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Bold[$!", + "styles": { + "bold": true + } + }, + { + "type": "text", + "text": "Italic!$]", + "styles": { + "italic": true + } + }, + { + "type": "text", + "text": "Regular", + "styles": {} + } + ], + "children": [ + { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [ + { + "id": "10", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph", + "styles": {} + } + ], + "children": [] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableAllCells.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableAllCells.json new file mode 100644 index 000000000..d7c4e336e --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableAllCells.json @@ -0,0 +1,66 @@ +[ + { + "id": "11", + "type": "table", + "props": { + "textColor": "default", + "backgroundColor": "default" + }, + "content": { + "type": "tableContent", + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + }, + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "[$!", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "!$]", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableCell.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableCell.json new file mode 100644 index 000000000..1036eb560 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableCell.json @@ -0,0 +1,66 @@ +[ + { + "id": "11", + "type": "table", + "props": { + "textColor": "default", + "backgroundColor": "default" + }, + "content": { + "type": "tableContent", + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "[$!", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "!$]", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + }, + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableCellText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableCellText.json new file mode 100644 index 000000000..a019a81fc --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableCellText.json @@ -0,0 +1,52 @@ +[ + { + "id": "11", + "type": "table", + "props": { + "textColor": "default", + "backgroundColor": "default" + }, + "content": { + "type": "tableContent", + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "[$!Table Cell!$]", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + }, + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableRow.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableRow.json new file mode 100644 index 000000000..da6f24a71 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableRow.json @@ -0,0 +1,66 @@ +[ + { + "id": "11", + "type": "table", + "props": { + "textColor": "default", + "backgroundColor": "default" + }, + "content": { + "type": "tableContent", + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "[$!", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "!$]", + "styles": {} + } + ] + ] + }, + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/unstyledText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/unstyledText.json new file mode 100644 index 000000000..dc9eb6593 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/unstyledText.json @@ -0,0 +1,67 @@ +[ + { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Bold", + "styles": { + "bold": true + } + }, + { + "type": "text", + "text": "Italic[$!", + "styles": { + "italic": true + } + }, + { + "type": "text", + "text": "Regular!$]", + "styles": {} + } + ], + "children": [ + { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [ + { + "id": "10", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph", + "styles": {} + } + ], + "children": [] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/nodeConversions.ts b/packages/core/src/api/nodeConversions/nodeConversions.ts index 9d76b4e84..f8f6dbb1c 100644 --- a/packages/core/src/api/nodeConversions/nodeConversions.ts +++ b/packages/core/src/api/nodeConversions/nodeConversions.ts @@ -1,4 +1,4 @@ -import { Mark, Node, Schema } from "@tiptap/pm/model"; +import { Mark, Node, Schema, Slice } from "@tiptap/pm/model"; import UniqueID from "../../extensions/UniqueID/UniqueID"; import type { @@ -17,8 +17,10 @@ import type { Styles, TableContent, } from "../../schema"; -import { getBlockInfo } from "../getBlockInfoFromPos"; +import { getBlockInfo, getBlockInfoFromPos } from "../getBlockInfoFromPos"; +import { EditorState, Transaction } from "prosemirror-state"; +import { ReplaceAroundStep, ReplaceStep } from "prosemirror-transform"; import type { Block, PartialBlock } from "../../blocks/defaultBlocks"; import { isLinkInlineContent, @@ -38,7 +40,7 @@ function styledTextToNodes( ): Node[] { const marks: Mark[] = []; - for (const [style, value] of Object.entries(styledText.styles)) { + for (const [style, value] of Object.entries(styledText.styles || {})) { const config = styleSchema[style]; if (!config) { throw new Error(`style ${style} not found in styleSchema`); @@ -283,11 +285,13 @@ function contentNodeToTableContent< rowNode.content.forEach((cellNode) => { row.cells.push( - contentNodeToInlineContent( - cellNode.firstChild!, - inlineContentSchema, - styleSchema - ) + cellNode.firstChild + ? contentNodeToInlineContent( + cellNode.firstChild, + inlineContentSchema, + styleSchema + ) + : [] ); }); @@ -642,3 +646,283 @@ export function nodeToBlock< return block; } + +export type SlicedBlock< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +> = { + block: Block & { + children: SlicedBlock[]; + }; + contentCutAtStart: boolean; + contentCutAtEnd: boolean; +}; + +export function selectionToInsertionEnd(tr: Transaction, startLen: number) { + const last = tr.steps.length - 1; + + if (last < startLen) { + return; + } + + const step = tr.steps[last]; + + if (!(step instanceof ReplaceStep || step instanceof ReplaceAroundStep)) { + return; + } + + const map = tr.mapping.maps[last]; + let end = 0; + + map.forEach((_from, _to, _newFrom, newTo) => { + if (end === 0) { + end = newTo; + } + }); + + return end; +} + +export function withSelectionMarkers< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +>( + state: EditorState, + from: number, + to: number, + blockSchema: BSchema, + inlineContentSchema: I, + styleSchema: S, + blockCache?: WeakMap> +) { + if (from >= to) { + throw new Error("from must be less than to"); + } + let tr = state.tr.insertText("!$]", to); + let newEnd = selectionToInsertionEnd(tr, tr.steps.length - 1)!; + + tr = tr.insertText("[$!", from); + + newEnd = tr.mapping.maps[tr.mapping.maps.length - 1].map(newEnd); + + if (!tr.docChanged || tr.steps.length !== 2) { + throw new Error( + "tr.docChanged is false or insertText was not applied. Was a valid textselection passed?" + ); + } + + return getBlocksBetween( + from, + newEnd, + tr.doc, + blockSchema, + inlineContentSchema, + styleSchema, + blockCache + ); +} + +/** + * Returns all blocks between two positions in a document, but without automatically including parent blocks + */ +function getBlocksBetween< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +>( + start: number, + end: number, + doc: Node, + blockSchema: BSchema, + inlineContentSchema: I, + styleSchema: S, + blockCache?: WeakMap> +) { + const startNode = getBlockInfoFromPos(doc, start); + const endNode = getBlockInfoFromPos(doc, end); + + const slice = doc.slice(startNode.startPos, endNode.endPos, true); + + const bnSelection = prosemirrorSliceToSlicedBlocks( + slice, + blockSchema, + inlineContentSchema, + styleSchema, + blockCache + ); + + // we don't care about the slice metadata, because our slice is based on complete blocks, the + return withoutSliceMetadata(bnSelection.blocks); +} + +export function withoutSliceMetadata< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +>(blocks: SlicedBlock[]): Block[] { + return blocks.map((block) => { + return { + ...block.block, + children: withoutSliceMetadata(block.block.children), + }; + }); +} + +/** + * + * Parse a Prosemirror Slice into a BlockNote selection. The prosemirror schema looks like this: + * + * + * (main content of block) + * + * (only if blocks has children) + * (child block) + * + * + * (child block 2) + * + * + * + * + * + * + * Examples, + * + * for slice: + * + * {"content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"1","textColor":"yellow","backgroundColor":"blue"},"content":[{"type":"heading","attrs":{"textAlignment":"right","level":2},"content":[{"type":"text","marks":[{"type":"bold"},{"type":"underline"}],"text":"ding "},{"type":"text","marks":[{"type":"italic"},{"type":"strike"}],"text":"2"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"2","textColor":"default","backgroundColor":"red"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Par"}]}]}]}]}]}],"openStart":3,"openEnd":5} + * + * should return: + * + * [ + * { + * block: { + * nodeToBlock(first blockContainer node), + * children: [ + * { + * block: nodeToBlock(second blockContainer node), + * contentCutAtEnd: true, + * childrenCutAtEnd: false, + * }, + * ], + * }, + * contentCutAtStart: true, + * contentCutAtEnd: false, + * childrenCutAtEnd: true, + * }, + * ] + */ +export function prosemirrorSliceToSlicedBlocks< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +>( + slice: Slice, + blockSchema: BSchema, + inlineContentSchema: I, + styleSchema: S, + blockCache?: WeakMap> +): { + blocks: SlicedBlock[]; +} { + // console.log(JSON.stringify(slice.toJSON())); + function processNode( + node: Node, + openStart: number, + openEnd: number + ): SlicedBlock[] { + if (node.type.name !== "blockGroup") { + throw new Error("unexpected"); + } + const blocks: SlicedBlock[] = []; + + node.forEach((blockContainer, _offset, index) => { + if (blockContainer.type.name !== "blockContainer") { + throw new Error("unexpected"); + } + if (blockContainer.childCount === 0) { + return; + } + if (blockContainer.childCount === 0 || blockContainer.childCount > 2) { + throw new Error( + "unexpected, blockContainer.childCount: " + blockContainer.childCount + ); + } + + const isFirstBlock = index === 0; + const isLastBlock = index === node.childCount - 1; + + if (blockContainer.firstChild!.type.name === "blockGroup") { + // this is the parent where a selection starts within one of its children, + // e.g.: + // A + // ├── B + // selection starts within B, then this blockContainer is A, but we don't care about A + // so let's descend into B and continue processing + if (!isFirstBlock) { + throw new Error("unexpected"); + } + blocks.push( + ...processNode( + blockContainer.firstChild!, + Math.max(0, openStart - 1), + isLastBlock ? Math.max(0, openEnd - 1) : 0 + ) + ); + return; + } + + const block = nodeToBlock( + blockContainer, + blockSchema, + inlineContentSchema, + styleSchema, + blockCache + ); + const childGroup = + blockContainer.childCount > 1 ? blockContainer.child(1) : undefined; + + let childBlocks: SlicedBlock[] = []; + if (childGroup) { + childBlocks = processNode( + childGroup, + 0, // TODO: can this be anything other than 0? + isLastBlock ? Math.max(0, openEnd - 1) : 0 + ); + } + + blocks.push({ + block: { + ...(block as any), + children: childBlocks, + }, + contentCutAtStart: openStart > 1 && isFirstBlock, + contentCutAtEnd: !!(openEnd > 1 && isLastBlock && !childGroup), + }); + }); + + return blocks; + } + + if (slice.content.childCount === 0) { + return { + blocks: [], + }; + } + + if (slice.content.childCount !== 1) { + throw new Error( + "slice must be a single block, did you forget includeParents=true?" + ); + } + + return { + blocks: processNode( + slice.content.firstChild!, + Math.max(slice.openStart - 1, 0), + Math.max(slice.openEnd - 1, 0) + ), + }; +} diff --git a/packages/core/src/api/nodeConversions/selectionMarkers.test.ts b/packages/core/src/api/nodeConversions/selectionMarkers.test.ts new file mode 100644 index 000000000..3c4fd4b2b --- /dev/null +++ b/packages/core/src/api/nodeConversions/selectionMarkers.test.ts @@ -0,0 +1,349 @@ +import { Node } from "prosemirror-model"; +import { Selection, TextSelection } from "prosemirror-state"; +import { afterAll, beforeAll, describe, expect, it } from "vitest"; +import { BlockNoteEditor } from "../../editor/BlockNoteEditor"; + +import { PartialBlock } from "../../blocks/defaultBlocks"; + +// These tests are meant to test the copying of user selections in the editor. +// The test cases used for the other HTML conversion tests are not suitable here +// as they are represented in the BlockNote API, whereas here we want to test +// ProseMirror/TipTap selections directly. +describe("Test ProseMirror selection HTML conversion", () => { + const initialContent: PartialBlock[] = [ + { + type: "heading", + props: { + level: 2, + textColor: "red", + }, + content: "Heading 1", + children: [ + { + type: "paragraph", + content: "Nested Paragraph 1", + }, + { + type: "paragraph", + content: "Nested Paragraph 2", + }, + { + type: "paragraph", + content: "Nested Paragraph 3", + }, + ], + }, + { + type: "heading", + props: { + level: 2, + textColor: "red", + }, + content: "Heading 2", + children: [ + { + type: "paragraph", + content: "Nested Paragraph 1", + }, + { + type: "paragraph", + content: "Nested Paragraph 2", + }, + { + type: "paragraph", + content: "Nested Paragraph 3", + }, + ], + }, + { + type: "heading", + props: { + level: 2, + textColor: "red", + }, + content: [ + { + type: "text", + text: "Bold", + styles: { + bold: true, + }, + }, + { + type: "text", + text: "Italic", + styles: { + italic: true, + }, + }, + { + type: "text", + text: "Regular", + styles: {}, + }, + ], + children: [ + { + type: "image", + props: { + url: "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + }, + children: [ + { + type: "paragraph", + content: "Nested Paragraph", + }, + ], + }, + ], + }, + { + type: "table", + content: { + type: "tableContent", + rows: [ + { + cells: ["Table Cell", "Table Cell"], + }, + { + cells: ["Table Cell", "Table Cell"], + }, + ], + }, + // Not needed as selections starting in table cells will get snapped to + // the table boundaries. + // children: [ + // { + // type: "table", + // content: { + // type: "tableContent", + // rows: [ + // { + // cells: ["Table Cell", "Table Cell"], + // }, + // { + // cells: ["Table Cell", "Table Cell"], + // }, + // ], + // }, + // }, + // ], + }, + ]; + + let editor: BlockNoteEditor; + + const div = document.createElement("div"); + + beforeAll(async () => { + (window as any).__TEST_OPTIONS = (window as any).__TEST_OPTIONS || {}; + editor = BlockNoteEditor.create({ initialContent }); + editor.mount(div); + }); + + afterAll(() => { + editor.mount(undefined); + editor._tiptapEditor.destroy(); + editor = undefined as any; + + delete (window as Window & { __TEST_OPTIONS?: any }).__TEST_OPTIONS; + }); + + // Sets the editor selection to the given start and end positions, then + // exports the selected content to HTML and compares it to a snapshot. + function testSelection(testName: string, startPos: number, endPos: number) { + editor.dispatch( + editor._tiptapEditor.state.tr.setSelection( + TextSelection.create(editor._tiptapEditor.state.doc, startPos, endPos) + ) + ); + + // const slice = editor._tiptapEditor.state.selection.content(); + + const blockNoteSelection = editor.getSelectionWithMarkers(); + + expect( + JSON.stringify(blockNoteSelection, undefined, 2) + ).toMatchFileSnapshot( + `./__snapshots_selection_markers_json__/${testName}.json` + ); + } + + const testCases: { testName: string; startPos: number; endPos: number }[] = [ + // Selection spans all of first heading's children. + { + testName: "multipleChildren", + startPos: 16, + endPos: 78, + }, + // Selection spans from start of first heading to end of its first child. + { + testName: "childToParent", + startPos: 3, + endPos: 34, + }, + // Selection spans from middle of first heading to the middle of its first + // child. + { + testName: "partialChildToParent", + startPos: 6, + endPos: 23, + }, + // Selection spans from start of first heading's first child to end of + // second heading's content (does not include second heading's children). + { + testName: "childrenToNextParent", + startPos: 16, + endPos: 93, + }, + // Selection spans from start of first heading's first child to end of + // second heading's last child. + { + testName: "childrenToNextParentsChildren", + startPos: 16, + endPos: 159, + }, + // Selection spans "Regular" text inside third heading. + { + testName: "unstyledText", + startPos: 175, + endPos: 182, + }, + // Selection spans "Italic" text inside third heading. + { + testName: "styledText", + startPos: 169, + endPos: 175, + }, + // Selection spans third heading's content (does not include third heading's + // children). + { + testName: "multipleStyledText", + startPos: 165, + endPos: 182, + }, + // Selection spans the image block content. + { + testName: "image", + startPos: 185, + endPos: 186, + }, + // Selection spans from start of third heading to end of it's last + // descendant. + { + testName: "nestedImage", + startPos: 165, + endPos: 205, + }, + // Selection spans text in first cell of the table. + { + testName: "tableCellText", + startPos: 216, + endPos: 226, + }, + // Selection spans first cell of the table. + { + testName: "tableCell", + startPos: 215, + endPos: 227, + }, + // Selection spans first row of the table. + { + testName: "tableRow", + startPos: 229, + endPos: 241, + }, + // Selection spans all cells of the table. + { + testName: "tableAllCells", + startPos: 259, + endPos: 271, + }, + ]; + // const testCase = testCases.find((testCase) => testCase.testName === "image"); + // it.only(testCase.testName, () => { + // testSelection(testCase.testName, testCase.startPos, testCase.endPos); + // }); + + for (const testCase of testCases) { + it(testCase.testName, () => { + testSelection(testCase.testName, testCase.startPos, testCase.endPos); + }); + } + + it("move end", () => { + let ret = ""; + + loopTextSelections(editor._tiptapEditor.state.doc, "end", (selection) => { + if (selection.empty) { + return; + } + editor.dispatch(editor._tiptapEditor.state.tr.setSelection(selection)); + + const blockNoteSelection = editor.getSelectionWithMarkers(); + const JSONString = JSON.stringify(blockNoteSelection); + ret += JSONString + "\n"; + }); + + expect(ret).toMatchFileSnapshot( + `./__snapshots_selection_markers_json__/move_end.txt` + ); + }); + + it("move start", () => { + let ret = ""; + + loopTextSelections(editor._tiptapEditor.state.doc, "start", (selection) => { + if (selection.empty) { + return; + } + editor.dispatch(editor._tiptapEditor.state.tr.setSelection(selection)); + + const blockNoteSelection = editor.getSelectionWithMarkers(); + const JSONString = JSON.stringify(blockNoteSelection); + ret += JSONString + "\n"; + }); + + expect(ret).toMatchFileSnapshot( + `./__snapshots_selection_markers_json__/move_start.txt` + ); + }); +}); + +function loopTextSelections( + doc: Node, + move: "start" | "end", + cb: (selection: Selection) => void +) { + const size = doc.content.size; + + for (let i = 0; i < size; i++) { + const selection = TextSelection.between( + move === "start" ? doc.resolve(i) : doc.resolve(0), + move === "start" ? doc.resolve(size - 1) : doc.resolve(i) + ); + if ( + (move === "start" && selection.from !== i) || + (move === "end" && selection.to !== i) + ) { + // The TextSelection.between has moved the position to a valid text position. + // In this case we just skip it. + // (we either have seen this text selection already or it's coming up as we iterate further) + continue; + } + cb(selection); + } +} +/** + * + * Insert $#$ markers around the selection + * + * respond with regular update / remove add blocks + * + * just apply updates + * (possibly: check if updates only affect selection) + * + * + * post partial "slice" blocks that are selected + * respond with similar slice + */ diff --git a/packages/core/src/api/nodeConversions/selections.test.ts b/packages/core/src/api/nodeConversions/selections.test.ts new file mode 100644 index 000000000..f6547ac6e --- /dev/null +++ b/packages/core/src/api/nodeConversions/selections.test.ts @@ -0,0 +1,323 @@ +import { TextSelection } from "prosemirror-state"; +import { afterAll, beforeAll, describe, expect, it } from "vitest"; +import { BlockNoteEditor } from "../../editor/BlockNoteEditor"; + +import { PartialBlock } from "../../blocks/defaultBlocks"; + +// These tests are meant to test the copying of user selections in the editor. +// The test cases used for the other HTML conversion tests are not suitable here +// as they are represented in the BlockNote API, whereas here we want to test +// ProseMirror/TipTap selections directly. +describe("Test ProseMirror selection HTML conversion", () => { + const initialContent: PartialBlock[] = [ + { + type: "heading", + props: { + level: 2, + textColor: "red", + }, + content: "Heading 1", + children: [ + { + type: "paragraph", + content: "Nested Paragraph 1", + }, + { + type: "paragraph", + content: "Nested Paragraph 2", + }, + { + type: "paragraph", + content: "Nested Paragraph 3", + }, + ], + }, + { + type: "heading", + props: { + level: 2, + textColor: "red", + }, + content: "Heading 2", + children: [ + { + type: "paragraph", + content: "Nested Paragraph 1", + }, + { + type: "paragraph", + content: "Nested Paragraph 2", + }, + { + type: "paragraph", + content: "Nested Paragraph 3", + }, + ], + }, + { + type: "heading", + props: { + level: 2, + textColor: "red", + }, + content: [ + { + type: "text", + text: "Bold", + styles: { + bold: true, + }, + }, + { + type: "text", + text: "Italic", + styles: { + italic: true, + }, + }, + { + type: "text", + text: "Regular", + styles: {}, + }, + ], + children: [ + { + type: "image", + props: { + url: "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + }, + children: [ + { + type: "paragraph", + content: "Nested Paragraph", + }, + ], + }, + ], + }, + { + type: "table", + content: { + type: "tableContent", + rows: [ + { + cells: ["Table Cell", "Table Cell"], + }, + { + cells: ["Table Cell", "Table Cell"], + }, + ], + }, + // Not needed as selections starting in table cells will get snapped to + // the table boundaries. + // children: [ + // { + // type: "table", + // content: { + // type: "tableContent", + // rows: [ + // { + // cells: ["Table Cell", "Table Cell"], + // }, + // { + // cells: ["Table Cell", "Table Cell"], + // }, + // ], + // }, + // }, + // ], + }, + ]; + + let editor: BlockNoteEditor; + + const div = document.createElement("div"); + + beforeAll(async () => { + (window as any).__TEST_OPTIONS = (window as any).__TEST_OPTIONS || {}; + editor = BlockNoteEditor.create({ initialContent }); + editor.mount(div); + }); + + afterAll(() => { + editor.mount(undefined); + editor._tiptapEditor.destroy(); + editor = undefined as any; + + delete (window as Window & { __TEST_OPTIONS?: any }).__TEST_OPTIONS; + }); + + // Sets the editor selection to the given start and end positions, then + // exports the selected content to HTML and compares it to a snapshot. + function testSelection(testName: string, startPos: number, endPos: number) { + editor.dispatch( + editor._tiptapEditor.state.tr.setSelection( + TextSelection.create(editor._tiptapEditor.state.doc, startPos, endPos) + ) + ); + + // const slice = editor._tiptapEditor.state.selection.content(); + + const blockNoteSelection = editor.getSelection2(); + + expect( + JSON.stringify(blockNoteSelection, undefined, 2) + ).toMatchFileSnapshot(`./__snapshots_selection_json__/${testName}.json`); + } + + const testCases: { testName: string; startPos: number; endPos: number }[] = [ + // Selection spans all of first heading's children. + { + testName: "multipleChildren", + startPos: 16, + endPos: 78, + }, + // Selection spans from start of first heading to end of its first child. + { + testName: "childToParent", + startPos: 3, + endPos: 34, + }, + // Selection spans from middle of first heading to the middle of its first + // child. + { + testName: "partialChildToParent", + startPos: 6, + endPos: 23, + }, + // Selection spans from start of first heading's first child to end of + // second heading's content (does not include second heading's children). + { + testName: "childrenToNextParent", + startPos: 16, + endPos: 93, + }, + // Selection spans from start of first heading's first child to end of + // second heading's last child. + { + testName: "childrenToNextParentsChildren", + startPos: 16, + endPos: 159, + }, + // Selection spans "Regular" text inside third heading. + { + testName: "unstyledText", + startPos: 175, + endPos: 182, + }, + // Selection spans "Italic" text inside third heading. + { + testName: "styledText", + startPos: 169, + endPos: 175, + }, + // Selection spans third heading's content (does not include third heading's + // children). + { + testName: "multipleStyledText", + startPos: 165, + endPos: 182, + }, + // Selection spans the image block content. + { + testName: "image", + startPos: 185, + endPos: 186, + }, + // Selection spans from start of third heading to end of it's last + // descendant. + { + testName: "nestedImage", + startPos: 165, + endPos: 205, + }, + // Selection spans text in first cell of the table. + { + testName: "tableCellText", + startPos: 216, + endPos: 226, + }, + // Selection spans first cell of the table. + { + testName: "tableCell", + startPos: 215, + endPos: 227, + }, + // Selection spans first row of the table. + { + testName: "tableRow", + startPos: 229, + endPos: 241, + }, + // Selection spans all cells of the table. + { + testName: "tableAllCells", + startPos: 259, + endPos: 271, + }, + ]; + + for (const testCase of testCases) { + it(testCase.testName, () => { + testSelection(testCase.testName, testCase.startPos, testCase.endPos); + }); + } + + it("move end", () => { + const size = editor._tiptapEditor.state.doc.content.size; + + let ret = ""; + + for (let i = 0; i < size; i++) { + editor.dispatch( + editor._tiptapEditor.state.tr.setSelection( + TextSelection.create(editor._tiptapEditor.state.doc, 0, i) + ) + ); + const blockNoteSelection = editor.getSelection2(); + const JSONString = JSON.stringify(blockNoteSelection); + ret += JSONString + "\n"; + } + + expect(ret).toMatchFileSnapshot( + `./__snapshots_selection_json__/move_end.txt` + ); + }); + + it("move start", () => { + const size = editor._tiptapEditor.state.doc.content.size; + + let ret = ""; + + for (let i = 0; i < size; i++) { + editor.dispatch( + editor._tiptapEditor.state.tr.setSelection( + TextSelection.create(editor._tiptapEditor.state.doc, i, size - 1) + ) + ); + + const blockNoteSelection = editor.getSelection2(); + const JSONString = JSON.stringify(blockNoteSelection); + ret += JSONString + "\n"; + } + + expect(ret).toMatchFileSnapshot( + `./__snapshots_selection_json__/move_start.txt` + ); + }); +}); + +/** + * + * Insert $#$ markers around the selection + * + * respond with regular update / remove add blocks + * + * just apply updates + * (possibly: check if updates only affect selection) + * + * + * post partial "slice" blocks that are selected + * respond with similar slice + */ diff --git a/packages/core/src/blocks/defaultBlockTypeGuards.ts b/packages/core/src/blocks/defaultBlockTypeGuards.ts index d16bddd67..bc3f484a6 100644 --- a/packages/core/src/blocks/defaultBlockTypeGuards.ts +++ b/packages/core/src/blocks/defaultBlockTypeGuards.ts @@ -1,5 +1,6 @@ import type { BlockNoteEditor } from "../editor/BlockNoteEditor"; import { + BlockConfig, BlockFromConfig, BlockSchema, FileBlockConfig, @@ -9,12 +10,28 @@ import { import { Block, DefaultBlockSchema, + DefaultInlineContentSchema, defaultBlockSchema, defaultInlineContentSchema, - DefaultInlineContentSchema, } from "./defaultBlocks"; import { defaultProps } from "./defaultProps"; +// TODO: check +export function checkBlockTypeInSchema< + Config extends BlockConfig, + I extends InlineContentSchema, + S extends StyleSchema +>( + blockConfig: Config, + editor: BlockNoteEditor +): editor is BlockNoteEditor<{ Type: Config }, I, S> { + return ( + blockConfig.type in editor.schema.blockSchema && + editor.schema.blockSchema[blockConfig.type] === blockConfig + ); +} + +// TODO: can we reuse checkBlockTypeInSchema? export function checkDefaultBlockTypeInSchema< BlockType extends keyof DefaultBlockSchema, I extends InlineContentSchema, diff --git a/packages/core/src/editor/Block.css b/packages/core/src/editor/Block.css index cc9df706d..24cd9ee3d 100644 --- a/packages/core/src/editor/Block.css +++ b/packages/core/src/editor/Block.css @@ -371,7 +371,6 @@ NESTED BLOCKS position: absolute; font-style: italic; } - /* TODO: should this be here? */ /* TEXT COLORS */ diff --git a/packages/core/src/editor/BlockNoteEditor.ts b/packages/core/src/editor/BlockNoteEditor.ts index 73462768a..5f53a7527 100644 --- a/packages/core/src/editor/BlockNoteEditor.ts +++ b/packages/core/src/editor/BlockNoteEditor.ts @@ -1,4 +1,11 @@ -import { EditorOptions, Extension, getSchema } from "@tiptap/core"; +import { + AnyExtension, + EditorOptions, + Extension, + Mark, + Node as TipTapNode, + getSchema, +} from "@tiptap/core"; import { Node, Schema } from "prosemirror-model"; // import "./blocknote.css"; import * as Y from "yjs"; @@ -15,6 +22,8 @@ import { getBlockInfoFromPos } from "../api/getBlockInfoFromPos"; import { inlineContentToNodes, nodeToBlock, + prosemirrorSliceToSlicedBlocks, + withSelectionMarkers, } from "../api/nodeConversions/nodeConversions"; import { getNodeById } from "../api/nodeUtil"; import { HTMLToBlocks } from "../api/parsers/html/parseHTML"; @@ -41,9 +50,9 @@ import { InlineContentSchema, InlineContentSpecs, PartialInlineContent, - Styles, StyleSchema, StyleSpecs, + Styles, } from "../schema"; import { mergeCSSClasses } from "../util/browser"; import { NoInfer, UnreachableCaseError } from "../util/typescript"; @@ -61,13 +70,11 @@ import { BlockNoteTipTapEditorOptions, } from "./BlockNoteTipTapEditor"; -import { PlaceholderPlugin } from "../extensions/Placeholder/PlaceholderPlugin"; import { Dictionary } from "../i18n/dictionary"; import { en } from "../i18n/locales"; -import { Transaction } from "@tiptap/pm/state"; +import { Plugin, Transaction } from "@tiptap/pm/state"; import { createInternalHTMLSerializer } from "../api/exporters/html/internalHTMLSerializer"; -import { PreviousBlockTypePlugin } from "../extensions/PreviousBlockType/PreviousBlockTypePlugin"; import "../style.css"; import { initializeESMDependencies } from "../util/esmDependencies"; @@ -169,6 +176,8 @@ export type BlockNoteEditorOptions< trailingBlock?: boolean; + extensions: Record; + /** * Boolean indicating whether the editor is in headless mode. * Headless mode means we can use features like importing / exporting blocks, @@ -195,6 +204,12 @@ const blockNoteTipTapOptions = { enableCoreExtensions: false, }; +export type BlockNoteExtension = + | AnyExtension + | { + plugin: Plugin; + }; + export class BlockNoteEditor< BSchema extends BlockSchema = DefaultBlockSchema, ISchema extends InlineContentSchema = DefaultInlineContentSchema, @@ -202,6 +217,8 @@ export class BlockNoteEditor< > { private readonly _pmSchema: Schema; + public readonly extensions: Record = {}; + /** * Boolean indicating whether the editor is in headless mode. * Headless mode means we can use features like importing / exporting blocks, @@ -244,27 +261,45 @@ export class BlockNoteEditor< public readonly inlineContentImplementations: InlineContentSpecs; public readonly styleImplementations: StyleSpecs; - public readonly formattingToolbar: FormattingToolbarProsemirrorPlugin; - public readonly linkToolbar: LinkToolbarProsemirrorPlugin< - BSchema, - ISchema, - SSchema - >; - public readonly sideMenu: SideMenuProsemirrorPlugin< - BSchema, - ISchema, - SSchema - >; - public readonly suggestionMenus: SuggestionMenuProseMirrorPlugin< - BSchema, - ISchema, - SSchema - >; - public readonly filePanel?: FilePanelProsemirrorPlugin; - public readonly tableHandles?: TableHandlesProsemirrorPlugin< - ISchema, - SSchema - >; + public get formattingToolbar() { + return this.extensions[ + "formattingToolbar" + ] as FormattingToolbarProsemirrorPlugin; + } + + public get linkToolbar() { + return this.extensions["linkToolbar"] as LinkToolbarProsemirrorPlugin< + BSchema, + ISchema, + SSchema + >; + } + + public get sideMenu() { + return this.extensions["sideMenu"] as SideMenuProsemirrorPlugin< + BSchema, + ISchema, + SSchema + >; + } + + public get suggestionMenus() { + return this.extensions[ + "suggestionMenus" + ] as SuggestionMenuProseMirrorPlugin; + } + + public get filePanel() { + return this.extensions["filePanel"] as + | FilePanelProsemirrorPlugin + | undefined; + } + + public get tableHandles() { + return this.extensions["tableHandles"] as + | TableHandlesProsemirrorPlugin + | undefined; + } /** * The `uploadFile` method is what the editor uses when files need to be uploaded (for example when selecting an image to upload). @@ -344,17 +379,7 @@ export class BlockNoteEditor< this.inlineContentImplementations = newOptions.schema.inlineContentSpecs; this.styleImplementations = newOptions.schema.styleSpecs; - this.formattingToolbar = new FormattingToolbarProsemirrorPlugin(this); - this.linkToolbar = new LinkToolbarProsemirrorPlugin(this); - this.sideMenu = new SideMenuProsemirrorPlugin(this); - this.suggestionMenus = new SuggestionMenuProseMirrorPlugin(this); - this.filePanel = new FilePanelProsemirrorPlugin(this as any); - - if (checkDefaultBlockTypeInSchema("table", this)) { - this.tableHandles = new TableHandlesProsemirrorPlugin(this as any); - } - - const extensions = getBlockNoteExtensions({ + this.extensions = getBlockNoteExtensions({ editor: this, domAttributes: newOptions.domAttributes || {}, blockSpecs: this.schema.blockSpecs, @@ -364,27 +389,20 @@ export class BlockNoteEditor< trailingBlock: newOptions.trailingBlock, disableExtensions: newOptions.disableExtensions, setIdAttribute: newOptions.setIdAttribute, + tableHandles: checkDefaultBlockTypeInSchema("table", this), + placeholders: newOptions.placeholders, + animations: newOptions.animations ?? true, }); - const blockNoteUIExtension = Extension.create({ - name: "BlockNoteUIExtension", - - addProseMirrorPlugins: () => { - return [ - this.formattingToolbar.plugin, - this.linkToolbar.plugin, - this.sideMenu.plugin, - this.suggestionMenus.plugin, - ...(this.filePanel ? [this.filePanel.plugin] : []), - ...(this.tableHandles ? [this.tableHandles.plugin] : []), - PlaceholderPlugin(this, newOptions.placeholders), - ...(this.options.animations ?? true - ? [PreviousBlockTypePlugin()] - : []), - ]; - }, + // add extensions from _tiptapOptions + (newOptions._tiptapOptions?.extensions || []).forEach((ext) => { + this.extensions[ext.name] = ext; + }); + + // add extensions from options + Object.entries(newOptions.extensions || {}).forEach(([key, ext]) => { + this.extensions[key] = ext; }); - extensions.push(blockNoteUIExtension); if (newOptions.uploadFile) { const uploadFile = newOptions.uploadFile; @@ -440,8 +458,22 @@ export class BlockNoteEditor< ...newOptions._tiptapOptions, content: initialContent, extensions: [ - ...(newOptions._tiptapOptions?.extensions || []), - ...extensions, + ...Object.entries(this.extensions).map(([key, ext]) => { + if ( + ext instanceof Extension || + ext instanceof TipTapNode || + ext instanceof Mark + ) { + // tiptap extension + return ext; + } + + // "blocknote" extensions (prosemirror plugins) + return Extension.create({ + name: key, + addProseMirrorPlugins: () => [ext.plugin], + }); + }), ], editorProps: { ...newOptions._tiptapOptions?.editorProps, @@ -766,6 +798,76 @@ export class BlockNoteEditor< } } + // TODO: what about node selections? + public getSelectionWithMarkers() { + let start = this._tiptapEditor.state.selection.$from; + let end = this._tiptapEditor.state.selection.$to; + + // if the end is at the end of a node (|

) move it forward so we include all closing tags (

|) + // while (end.parentOffset >= end.parent.nodeSize - 2 && end.depth > 0) { + // end = this._tiptapEditor.state.doc.resolve(end.pos + 1); + // } + + // // if the end is at the start of an empty node (

|) move it backwards so we drop empty start tags (

|) + // while (end.parentOffset === 0 && end.depth > 0) { + // end = this._tiptapEditor.state.doc.resolve(end.pos - 1); + // } + + // // if the start is at the start of a node (

|) move it backwards so we include all open tags (|

) + // while (start.parentOffset === 0 && start.depth > 0) { + // start = this._tiptapEditor.state.doc.resolve(start.pos - 1); + // } + + // // if the start is at the end of a node (|

) move it forwards so we drop all closing tags (|

) + // while (start.parentOffset >= start.parent.nodeSize - 2 && start.depth > 0) { + // start = this._tiptapEditor.state.doc.resolve(start.pos + 1); + // } + + return withSelectionMarkers( + this._tiptapEditor.state, + start.pos, + end.pos, + this.schema.blockSchema, + this.schema.inlineContentSchema, + this.schema.styleSchema + ); + } + + // TODO: fix image node selection + public getSelection2() { + let start = this._tiptapEditor.state.selection.$from; + let end = this._tiptapEditor.state.selection.$to; + + // if the end is at the end of a node (|

) move it forward so we include all closing tags (

|) + while (end.parentOffset >= end.parent.nodeSize - 2 && end.depth > 0) { + end = this._tiptapEditor.state.doc.resolve(end.pos + 1); + } + + // if the end is at the start of an empty node (

|) move it backwards so we drop empty start tags (

|) + while (end.parentOffset === 0 && end.depth > 0) { + end = this._tiptapEditor.state.doc.resolve(end.pos - 1); + } + + // if the start is at the start of a node (

|) move it backwards so we include all open tags (|

) + while (start.parentOffset === 0 && start.depth > 0) { + start = this._tiptapEditor.state.doc.resolve(start.pos - 1); + } + + // if the start is at the end of a node (|

|) move it forwards so we drop all closing tags (|

) + while (start.parentOffset >= start.parent.nodeSize - 2 && start.depth > 0) { + start = this._tiptapEditor.state.doc.resolve(start.pos + 1); + } + + // console.log(start.pos, end.pos); + return prosemirrorSliceToSlicedBlocks( + this._tiptapEditor.state.doc.slice(start.pos, end.pos, true), + this.schema.blockSchema, + this.schema.inlineContentSchema, + this.schema.styleSchema, + this.blockCache + ); + } + /** * Gets a snapshot of the current selection. */ diff --git a/packages/core/src/editor/BlockNoteExtensions.ts b/packages/core/src/editor/BlockNoteExtensions.ts index fca81fb5a..24451d58a 100644 --- a/packages/core/src/editor/BlockNoteExtensions.ts +++ b/packages/core/src/editor/BlockNoteExtensions.ts @@ -1,6 +1,6 @@ -import { Extension, Extensions, extensions } from "@tiptap/core"; +import { AnyExtension, Extension, extensions } from "@tiptap/core"; -import type { BlockNoteEditor } from "./BlockNoteEditor"; +import type { BlockNoteEditor, BlockNoteExtension } from "./BlockNoteEditor"; import Collaboration from "@tiptap/extension-collaboration"; import CollaborationCursor from "@tiptap/extension-collaboration-cursor"; @@ -14,7 +14,16 @@ import * as Y from "yjs"; import { createCopyToClipboardExtension } from "../api/exporters/copyExtension"; import { createDropFileExtension } from "../api/parsers/fileDropExtension"; import { createPasteFromClipboardExtension } from "../api/parsers/pasteExtension"; +import { checkDefaultBlockTypeInSchema } from "../blocks/defaultBlockTypeGuards"; import { BackgroundColorExtension } from "../extensions/BackgroundColor/BackgroundColorExtension"; +import { FilePanelProsemirrorPlugin } from "../extensions/FilePanel/FilePanelPlugin"; +import { FormattingToolbarProsemirrorPlugin } from "../extensions/FormattingToolbar/FormattingToolbarPlugin"; +import { LinkToolbarProsemirrorPlugin } from "../extensions/LinkToolbar/LinkToolbarPlugin"; +import { PlaceholderPlugin } from "../extensions/Placeholder/PlaceholderPlugin"; +import { PreviousBlockTypePlugin } from "../extensions/PreviousBlockType/PreviousBlockTypePlugin"; +import { SideMenuProsemirrorPlugin } from "../extensions/SideMenu/SideMenuPlugin"; +import { SuggestionMenuProseMirrorPlugin } from "../extensions/SuggestionMenu/SuggestionPlugin"; +import { TableHandlesProsemirrorPlugin } from "../extensions/TableHandles/TableHandlesPlugin"; import { TextAlignmentExtension } from "../extensions/TextAlignment/TextAlignmentExtension"; import { TextColorExtension } from "../extensions/TextColor/TextColorExtension"; import { TrailingNode } from "../extensions/TrailingNode/TrailingNodeExtension"; @@ -55,9 +64,12 @@ export const getBlockNoteExtensions = < renderCursor?: (user: any) => HTMLElement; }; disableExtensions: string[] | undefined; + tableHandles: boolean; + placeholders: Record; setIdAttribute?: boolean; + animations: boolean; }) => { - const ret: Extensions = [ + const tiptapExtensions: AnyExtension[] = [ extensions.ClipboardTextSerializer, extensions.Commands, extensions.Editable, @@ -160,7 +172,7 @@ export const getBlockNoteExtensions = < ]; if (opts.collaboration) { - ret.push( + tiptapExtensions.push( Collaboration.configure({ fragment: opts.collaboration.fragment, }) @@ -185,7 +197,7 @@ export const getBlockNoteExtensions = < cursor.insertBefore(nonbreakingSpace2, null); return cursor; }; - ret.push( + tiptapExtensions.push( CollaborationCursor.configure({ user: opts.collaboration.user, render: opts.collaboration.renderCursor || defaultRender, @@ -195,9 +207,36 @@ export const getBlockNoteExtensions = < } } else { // disable history extension when collaboration is enabled as Yjs takes care of undo / redo - ret.push(History); + tiptapExtensions.push(History); + } + + const ret: Record = {}; + + for (const ext of tiptapExtensions) { + ret[ext.name] = ext; + } + + // TODO: things will break when user provides different keys. Define name on plugins instead? + ret["formattingToolbar"] = new FormattingToolbarProsemirrorPlugin( + opts.editor + ); + ret["linkToolbar"] = new LinkToolbarProsemirrorPlugin(opts.editor); + ret["sideMenu"] = new SideMenuProsemirrorPlugin(opts.editor); + ret["suggestionMenus"] = new SuggestionMenuProseMirrorPlugin(opts.editor); + ret["filePanel"] = new FilePanelProsemirrorPlugin(opts.editor as any); + ret["placeholder"] = new PlaceholderPlugin(opts.editor, opts.placeholders); + + if (opts.animations ?? true) { + ret["animations"] = new PreviousBlockTypePlugin(); + } + + if (checkDefaultBlockTypeInSchema("table", opts.editor)) { + ret["tableHandles"] = new TableHandlesProsemirrorPlugin(opts.editor as any); } const disableExtensions: string[] = opts.disableExtensions || []; - return ret.filter((ex) => !disableExtensions.includes(ex.name)); + for (const ext of Object.keys(disableExtensions)) { + delete ret[ext]; + } + return ret; }; diff --git a/packages/core/src/extensions/Placeholder/PlaceholderPlugin.ts b/packages/core/src/extensions/Placeholder/PlaceholderPlugin.ts index 35259d432..ce1d0e0d3 100644 --- a/packages/core/src/extensions/Placeholder/PlaceholderPlugin.ts +++ b/packages/core/src/extensions/Placeholder/PlaceholderPlugin.ts @@ -4,105 +4,116 @@ import type { BlockNoteEditor } from "../../editor/BlockNoteEditor"; const PLUGIN_KEY = new PluginKey(`blocknote-placeholder`); -export const PlaceholderPlugin = ( - editor: BlockNoteEditor, - placeholders: Record -) => { - return new Plugin({ - key: PLUGIN_KEY, - view: () => { - const styleEl = document.createElement("style"); - const nonce = editor._tiptapEditor.options.injectNonce; - if (nonce) { - styleEl.setAttribute("nonce", nonce); - } - if (editor._tiptapEditor.view.root instanceof ShadowRoot) { - editor._tiptapEditor.view.root.append(styleEl); - } else { - editor._tiptapEditor.view.root.head.appendChild(styleEl); - } - - const styleSheet = styleEl.sheet!; - - const getBaseSelector = (additionalSelectors = "") => - `.bn-block-content${additionalSelectors} .bn-inline-content:has(> .ProseMirror-trailingBreak:only-child):before`; - - const getSelector = ( - blockType: string | "default", - mustBeFocused = true - ) => { - const mustBeFocusedSelector = mustBeFocused - ? `[data-is-empty-and-focused]` - : ``; - - if (blockType === "default") { - return getBaseSelector(mustBeFocusedSelector); +export class PlaceholderPlugin { + public readonly plugin: Plugin; + + public constructor( + editor: BlockNoteEditor, + placeholders: Record + ) { + this.plugin = new Plugin({ + key: PLUGIN_KEY, + view: () => { + const styleEl = document.createElement("style"); + const nonce = editor._tiptapEditor.options.injectNonce; + if (nonce) { + styleEl.setAttribute("nonce", nonce); } + if (editor._tiptapEditor.view.root instanceof ShadowRoot) { + editor._tiptapEditor.view.root.append(styleEl); + } else { + editor._tiptapEditor.view.root.head.appendChild(styleEl); + } + + const styleSheet = styleEl.sheet!; + + const getBaseSelector = (additionalSelectors = "") => + `.bn-block-content${additionalSelectors} .bn-inline-content:has(> .ProseMirror-trailingBreak:only-child):before`; - const blockTypeSelector = `[data-content-type="${blockType}"]`; - return getBaseSelector(mustBeFocusedSelector + blockTypeSelector); - }; + const getSelector = ( + blockType: string | "default", + mustBeFocused = true + ) => { + const mustBeFocusedSelector = mustBeFocused + ? `[data-is-empty-and-focused]` + : ``; + + if (blockType === "default") { + return getBaseSelector(mustBeFocusedSelector); + } - for (const [blockType, placeholder] of Object.entries(placeholders)) { - const mustBeFocused = blockType === "default"; + const blockTypeSelector = `[data-content-type="${blockType}"]`; + return getBaseSelector(mustBeFocusedSelector + blockTypeSelector); + }; - styleSheet.insertRule( - `${getSelector(blockType, mustBeFocused)}{ content: ${JSON.stringify( - placeholder - )}; }` - ); + for (const [blockType, placeholder] of Object.entries(placeholders)) { + const mustBeFocused = blockType === "default"; - // For some reason, the placeholders which show when the block is focused - // take priority over ones which show depending on block type, so we need - // to make sure the block specific ones are also used when the block is - // focused. - if (!mustBeFocused) { styleSheet.insertRule( - `${getSelector(blockType, true)}{ content: ${JSON.stringify( - placeholder - )}; }` + `${getSelector( + blockType, + mustBeFocused + )}{ content: ${JSON.stringify(placeholder)}; }` ); - } - } - - return { - destroy: () => { - if (editor._tiptapEditor.view.root instanceof ShadowRoot) { - editor._tiptapEditor.view.root.removeChild(styleEl); - } else { - editor._tiptapEditor.view.root.head.removeChild(styleEl); + + // For some reason, the placeholders which show when the block is focused + // take priority over ones which show depending on block type, so we need + // to make sure the block specific ones are also used when the block is + // focused. + if (!mustBeFocused) { + styleSheet.insertRule( + `${getSelector(blockType, true)}{ content: ${JSON.stringify( + placeholder + )}; }` + ); } - }, - }; - }, - props: { - // TODO: maybe also add placeholder for empty document ("e.g.: start writing..") - decorations: (state) => { - const { doc, selection } = state; - - if (!editor.isEditable) { - return; } - if (!selection.empty) { - return; - } + return { + destroy: () => { + if (editor._tiptapEditor.view.root instanceof ShadowRoot) { + editor._tiptapEditor.view.root.removeChild(styleEl); + } else { + editor._tiptapEditor.view.root.head.removeChild(styleEl); + } + }, + }; + }, + props: { + // TODO: maybe also add placeholder for empty document ("e.g.: start writing..") + decorations: (state) => { + const { doc, selection } = state; - const $pos = selection.$anchor; - const node = $pos.parent; + if (!editor.isEditable) { + return; + } - if (node.content.size > 0) { - return null; - } + if (!selection.empty) { + return; + } - const before = $pos.before(); + const $pos = selection.$anchor; + const node = $pos.parent; - const dec = Decoration.node(before, before + node.nodeSize, { - "data-is-empty-and-focused": "true", - }); + if ($pos.pos === 0) { + return; + } - return DecorationSet.create(doc, [dec]); + const before = $pos.before(); + + const dec = Decoration.node( + before, + before + node.nodeSize, + node.content.size > 0 + ? { "data-is-focused": "true" } + : { + "data-is-empty-and-focused": "true", + } + ); + + return DecorationSet.create(doc, [dec]); + }, }, - }, - }); -}; + }); + } +} diff --git a/packages/core/src/extensions/PreviousBlockType/PreviousBlockTypePlugin.ts b/packages/core/src/extensions/PreviousBlockType/PreviousBlockTypePlugin.ts index b71eeb50f..d10ac1665 100644 --- a/packages/core/src/extensions/PreviousBlockType/PreviousBlockTypePlugin.ts +++ b/packages/core/src/extensions/PreviousBlockType/PreviousBlockTypePlugin.ts @@ -23,195 +23,200 @@ const nodeAttributes: Record = { * * Solution: When attributes change on a node, this plugin sets a data-* attribute with the "previous" value. This way we can still use CSS transitions. (See block.module.css) */ -export const PreviousBlockTypePlugin = () => { - let timeout: any; - return new Plugin({ - key: PLUGIN_KEY, - view(_editorView) { - return { - update: async (view, _prevState) => { - if (this.key?.getState(view.state).updatedBlocks.size > 0) { - // use setTimeout 0 to clear the decorations so that at least - // for one DOM-render the decorations have been applied - timeout = setTimeout(() => { - view.dispatch( - view.state.tr.setMeta(PLUGIN_KEY, { clearUpdate: true }) - ); - }, 0); - } - }, - destroy: () => { - if (timeout) { - clearTimeout(timeout); - } - }, - }; - }, - state: { - init() { +export class PreviousBlockTypePlugin { + public readonly plugin: Plugin; + + constructor() { + let timeout: ReturnType | undefined; + this.plugin = new Plugin({ + key: PLUGIN_KEY, + view(_editorView) { return { - // Block attributes, by block ID, from just before the previous transaction. - prevTransactionOldBlockAttrs: {} as any, - // Block attributes, by block ID, from just before the current transaction. - currentTransactionOldBlockAttrs: {} as any, - // Set of IDs of blocks whose attributes changed from the current transaction. - updatedBlocks: new Set(), + update: async (view, _prevState) => { + if (this.key?.getState(view.state).updatedBlocks.size > 0) { + // use setTimeout 0 to clear the decorations so that at least + // for one DOM-render the decorations have been applied + timeout = setTimeout(() => { + view.dispatch( + view.state.tr.setMeta(PLUGIN_KEY, { clearUpdate: true }) + ); + }, 0); + } + }, + destroy: () => { + if (timeout) { + clearTimeout(timeout); + } + }, }; }, + state: { + init() { + return { + // Block attributes, by block ID, from just before the previous transaction. + prevTransactionOldBlockAttrs: {} as any, + // Block attributes, by block ID, from just before the current transaction. + currentTransactionOldBlockAttrs: {} as any, + // Set of IDs of blocks whose attributes changed from the current transaction. + updatedBlocks: new Set(), + }; + }, - apply(transaction, prev, oldState, newState) { - prev.currentTransactionOldBlockAttrs = {}; - prev.updatedBlocks.clear(); + apply(transaction, prev, oldState, newState) { + prev.currentTransactionOldBlockAttrs = {}; + prev.updatedBlocks.clear(); - if (!transaction.docChanged || oldState.doc.eq(newState.doc)) { - return prev; - } - - // TODO: Instead of iterating through the entire document, only check nodes affected by the transactions. Will - // also probably require checking nodes affected by the previous transaction too. - // We didn't get this to work yet: - // const transform = combineTransactionSteps(oldState.doc, [transaction]); - // // const { mapping } = transform; - // const changes = getChangedRanges(transform); - // - // changes.forEach(({ oldRange, newRange }) => { - // const oldNodes = findChildrenInRange( - // oldState.doc, - // oldRange, - // (node) => node.attrs.id - // ); - // - // const newNodes = findChildrenInRange( - // newState.doc, - // newRange, - // (node) => node.attrs.id - // ); - - const currentTransactionOriginalOldBlockAttrs = {} as any; - - const oldNodes = findChildren(oldState.doc, (node) => node.attrs.id); - const oldNodesById = new Map( - oldNodes.map((node) => [node.node.attrs.id, node]) - ); - const newNodes = findChildren(newState.doc, (node) => node.attrs.id); - - // Traverses all block containers in the new editor state. - for (const node of newNodes) { - const oldNode = oldNodesById.get(node.node.attrs.id); - - const oldContentNode = oldNode?.node.firstChild; - const newContentNode = node.node.firstChild; - - if (oldNode && oldContentNode && newContentNode) { - const newAttrs = { - index: newContentNode.attrs.index, - level: newContentNode.attrs.level, - type: newContentNode.type.name, - depth: newState.doc.resolve(node.pos).depth, - }; - - let oldAttrs = { - index: oldContentNode.attrs.index, - level: oldContentNode.attrs.level, - type: oldContentNode.type.name, - depth: oldState.doc.resolve(oldNode.pos).depth, - }; - - currentTransactionOriginalOldBlockAttrs[node.node.attrs.id] = - oldAttrs; - - // Whenever a transaction is appended by the OrderedListItemIndexPlugin, it's given the metadata: - // { "orderedListIndexing": true } - // These appended transactions happen immediately after any transaction which causes ordered list item - // indices to require updating, including those which trigger animations. Therefore, these animations are - // immediately overridden when the PreviousBlockTypePlugin processes the appended transaction, despite only - // the listItemIndex attribute changing. To solve this, oldAttrs must be edited for transactions with the - // "orderedListIndexing" metadata, so the correct animation can be re-triggered. - if (transaction.getMeta("numberedListIndexing")) { - // If the block existed before the transaction, gets the attributes from before the previous transaction - // (i.e. the transaction that caused list item indices to need updating). - if (node.node.attrs.id in prev.prevTransactionOldBlockAttrs) { - oldAttrs = - prev.prevTransactionOldBlockAttrs[node.node.attrs.id]; + if (!transaction.docChanged || oldState.doc.eq(newState.doc)) { + return prev; + } + + // TODO: Instead of iterating through the entire document, only check nodes affected by the transactions. Will + // also probably require checking nodes affected by the previous transaction too. + // We didn't get this to work yet: + // const transform = combineTransactionSteps(oldState.doc, [transaction]); + // // const { mapping } = transform; + // const changes = getChangedRanges(transform); + // + // changes.forEach(({ oldRange, newRange }) => { + // const oldNodes = findChildrenInRange( + // oldState.doc, + // oldRange, + // (node) => node.attrs.id + // ); + // + // const newNodes = findChildrenInRange( + // newState.doc, + // newRange, + // (node) => node.attrs.id + // ); + + const currentTransactionOriginalOldBlockAttrs = {} as any; + + const oldNodes = findChildren(oldState.doc, (node) => node.attrs.id); + const oldNodesById = new Map( + oldNodes.map((node) => [node.node.attrs.id, node]) + ); + const newNodes = findChildren(newState.doc, (node) => node.attrs.id); + + // Traverses all block containers in the new editor state. + for (const node of newNodes) { + const oldNode = oldNodesById.get(node.node.attrs.id); + + const oldContentNode = oldNode?.node.firstChild; + const newContentNode = node.node.firstChild; + + if (oldNode && oldContentNode && newContentNode) { + const newAttrs = { + index: newContentNode.attrs.index, + level: newContentNode.attrs.level, + type: newContentNode.type.name, + depth: newState.doc.resolve(node.pos).depth, + }; + + let oldAttrs = { + index: oldContentNode.attrs.index, + level: oldContentNode.attrs.level, + type: oldContentNode.type.name, + depth: oldState.doc.resolve(oldNode.pos).depth, + }; + + currentTransactionOriginalOldBlockAttrs[node.node.attrs.id] = + oldAttrs; + + // Whenever a transaction is appended by the OrderedListItemIndexPlugin, it's given the metadata: + // { "orderedListIndexing": true } + // These appended transactions happen immediately after any transaction which causes ordered list item + // indices to require updating, including those which trigger animations. Therefore, these animations are + // immediately overridden when the PreviousBlockTypePlugin processes the appended transaction, despite only + // the listItemIndex attribute changing. To solve this, oldAttrs must be edited for transactions with the + // "orderedListIndexing" metadata, so the correct animation can be re-triggered. + if (transaction.getMeta("numberedListIndexing")) { + // If the block existed before the transaction, gets the attributes from before the previous transaction + // (i.e. the transaction that caused list item indices to need updating). + if (node.node.attrs.id in prev.prevTransactionOldBlockAttrs) { + oldAttrs = + prev.prevTransactionOldBlockAttrs[node.node.attrs.id]; + } + + // Stops list item indices themselves being animated (looks smoother), unless the block's content type is + // changing from a numbered list item to something else. + if (newAttrs.type === "numberedListItem") { + oldAttrs.index = newAttrs.index; + } } - // Stops list item indices themselves being animated (looks smoother), unless the block's content type is - // changing from a numbered list item to something else. - if (newAttrs.type === "numberedListItem") { - oldAttrs.index = newAttrs.index; + prev.currentTransactionOldBlockAttrs[node.node.attrs.id] = + oldAttrs; + + // TODO: faster deep equal? + if (JSON.stringify(oldAttrs) !== JSON.stringify(newAttrs)) { + (oldAttrs as any)["depth-change"] = + oldAttrs.depth - newAttrs.depth; + + // for debugging: + // console.log( + // "id:", + // node.node.attrs.id, + // "previousBlockTypePlugin changes detected, oldAttrs", + // oldAttrs, + // "new", + // newAttrs + // ); + + prev.updatedBlocks.add(node.node.attrs.id); } } + } - prev.currentTransactionOldBlockAttrs[node.node.attrs.id] = oldAttrs; + prev.prevTransactionOldBlockAttrs = + currentTransactionOriginalOldBlockAttrs; - // TODO: faster deep equal? - if (JSON.stringify(oldAttrs) !== JSON.stringify(newAttrs)) { - (oldAttrs as any)["depth-change"] = - oldAttrs.depth - newAttrs.depth; + return prev; + }, + }, + props: { + decorations(state) { + const pluginState = (this as Plugin).getState(state); + if (pluginState.updatedBlocks.size === 0) { + return undefined; + } - // for debugging: - // console.log( - // "id:", - // node.node.attrs.id, - // "previousBlockTypePlugin changes detected, oldAttrs", - // oldAttrs, - // "new", - // newAttrs - // ); + const decorations: Decoration[] = []; - prev.updatedBlocks.add(node.node.attrs.id); + state.doc.descendants((node, pos) => { + if (!node.attrs.id) { + return; } - } - } - prev.prevTransactionOldBlockAttrs = - currentTransactionOriginalOldBlockAttrs; + if (!pluginState.updatedBlocks.has(node.attrs.id)) { + return; + } - return prev; - }, - }, - props: { - decorations(state) { - const pluginState = (this as Plugin).getState(state); - if (pluginState.updatedBlocks.size === 0) { - return undefined; - } - - const decorations: Decoration[] = []; - - state.doc.descendants((node, pos) => { - if (!node.attrs.id) { - return; - } + const prevAttrs = + pluginState.currentTransactionOldBlockAttrs[node.attrs.id]; + const decorationAttrs: any = {}; - if (!pluginState.updatedBlocks.has(node.attrs.id)) { - return; - } - - const prevAttrs = - pluginState.currentTransactionOldBlockAttrs[node.attrs.id]; - const decorationAttrs: any = {}; + for (const [nodeAttr, val] of Object.entries(prevAttrs)) { + decorationAttrs["data-prev-" + nodeAttributes[nodeAttr]] = + val || "none"; + } - for (const [nodeAttr, val] of Object.entries(prevAttrs)) { - decorationAttrs["data-prev-" + nodeAttributes[nodeAttr]] = - val || "none"; - } + // for debugging: + // console.log( + // "previousBlockTypePlugin committing decorations", + // decorationAttrs + // ); - // for debugging: - // console.log( - // "previousBlockTypePlugin committing decorations", - // decorationAttrs - // ); + const decoration = Decoration.node(pos, pos + node.nodeSize, { + ...decorationAttrs, + }); - const decoration = Decoration.node(pos, pos + node.nodeSize, { - ...decorationAttrs, + decorations.push(decoration); }); - decorations.push(decoration); - }); - - return DecorationSet.create(state.doc, decorations); + return DecorationSet.create(state.doc, decorations); + }, }, - }, - }); -}; + }); + } +} diff --git a/packages/core/src/extensions/SuggestionMenu/DefaultSuggestionItem.ts b/packages/core/src/extensions/SuggestionMenu/DefaultSuggestionItem.ts index 874c7e318..b4471d936 100644 --- a/packages/core/src/extensions/SuggestionMenu/DefaultSuggestionItem.ts +++ b/packages/core/src/extensions/SuggestionMenu/DefaultSuggestionItem.ts @@ -1,7 +1,5 @@ -import type { Dictionary } from "../../i18n/dictionary"; - export type DefaultSuggestionItem = { - key: keyof Dictionary["slash_menu"]; + name: string; title: string; onItemClick: () => void; subtext?: string; diff --git a/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts b/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts index def4536cd..df5d073ac 100644 --- a/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts +++ b/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts @@ -91,7 +91,7 @@ export function getDefaultSlashMenuItems< }); }, badge: formatKeyboardShortcut("Mod-Alt-1"), - key: "heading", + name: "heading", ...editor.dictionary.slash_menu.heading, }, { @@ -102,7 +102,7 @@ export function getDefaultSlashMenuItems< }); }, badge: formatKeyboardShortcut("Mod-Alt-2"), - key: "heading_2", + name: "heading_2", ...editor.dictionary.slash_menu.heading_2, }, { @@ -113,7 +113,7 @@ export function getDefaultSlashMenuItems< }); }, badge: formatKeyboardShortcut("Mod-Alt-3"), - key: "heading_3", + name: "heading_3", ...editor.dictionary.slash_menu.heading_3, } ); @@ -127,7 +127,7 @@ export function getDefaultSlashMenuItems< }); }, badge: formatKeyboardShortcut("Mod-Shift-7"), - key: "numbered_list", + name: "numbered_list", ...editor.dictionary.slash_menu.numbered_list, }); } @@ -140,7 +140,7 @@ export function getDefaultSlashMenuItems< }); }, badge: formatKeyboardShortcut("Mod-Shift-8"), - key: "bullet_list", + name: "bullet_list", ...editor.dictionary.slash_menu.bullet_list, }); } @@ -153,7 +153,7 @@ export function getDefaultSlashMenuItems< }); }, badge: formatKeyboardShortcut("Mod-Shift-9"), - key: "check_list", + name: "check_list", ...editor.dictionary.slash_menu.check_list, }); } @@ -166,7 +166,7 @@ export function getDefaultSlashMenuItems< }); }, badge: formatKeyboardShortcut("Mod-Alt-0"), - key: "paragraph", + name: "paragraph", ...editor.dictionary.slash_menu.paragraph, }); } @@ -190,7 +190,7 @@ export function getDefaultSlashMenuItems< }); }, badge: undefined, - key: "table", + name: "table", ...editor.dictionary.slash_menu.table, }); } @@ -209,7 +209,7 @@ export function getDefaultSlashMenuItems< }) ); }, - key: "image", + name: "image", ...editor.dictionary.slash_menu.image, }); } @@ -228,7 +228,7 @@ export function getDefaultSlashMenuItems< }) ); }, - key: "video", + name: "video", ...editor.dictionary.slash_menu.video, }); } @@ -247,7 +247,7 @@ export function getDefaultSlashMenuItems< }) ); }, - key: "audio", + name: "audio", ...editor.dictionary.slash_menu.audio, }); } @@ -266,7 +266,7 @@ export function getDefaultSlashMenuItems< }) ); }, - key: "image", + name: "image", ...editor.dictionary.slash_menu.file, }); } @@ -278,7 +278,7 @@ export function getDefaultSlashMenuItems< ignoreQueryLength: true, }); }, - key: "emoji", + name: "emoji", ...editor.dictionary.slash_menu.emoji, }); @@ -292,8 +292,9 @@ export function filterSuggestionItems< ({ title, aliases }) => title.toLowerCase().includes(query.toLowerCase()) || (aliases && - aliases.filter((alias) => - alias.toLowerCase().includes(query.toLowerCase()) + aliases.filter( + (alias) => + alias === "" || alias.toLowerCase().includes(query.toLowerCase()) ).length !== 0) ); } diff --git a/packages/core/src/index.ts b/packages/core/src/index.ts index 9f352e54b..04b860e2e 100644 --- a/packages/core/src/index.ts +++ b/packages/core/src/index.ts @@ -1,6 +1,7 @@ import * as locales from "./i18n/locales"; export * from "./api/exporters/html/externalHTMLExporter"; export * from "./api/exporters/html/internalHTMLSerializer"; +export * from "./api/getBlockInfoFromPos"; export * from "./api/getCurrentBlockContentType"; export * from "./api/testUtil"; export * from "./blocks/AudioBlockContent/AudioBlockContent"; @@ -30,7 +31,9 @@ export * from "./extensions/SuggestionMenu/getDefaultEmojiPickerItems"; export * from "./extensions/SuggestionMenu/getDefaultSlashMenuItems"; export * from "./extensions/TableHandles/TableHandlesPlugin"; export * from "./i18n/dictionary"; +export * from "./i18n/locales"; export * from "./schema"; +export * from "./util/EventEmitter"; export * from "./util/browser"; export * from "./util/esmDependencies"; export * from "./util/string"; diff --git a/packages/core/src/pm-nodes/BlockContainer.ts b/packages/core/src/pm-nodes/BlockContainer.ts index aa476f2ea..dd60e5a5a 100644 --- a/packages/core/src/pm-nodes/BlockContainer.ts +++ b/packages/core/src/pm-nodes/BlockContainer.ts @@ -286,7 +286,7 @@ export const BlockContainer = Node.create<{ state.tr .replaceWith( startPos, - endPos, + startPos + contentNode.nodeSize, state.schema.nodes[newType].create( { ...contentNode.attrs, @@ -317,7 +317,7 @@ export const BlockContainer = Node.create<{ ...block.props, }); } - + // state.tr.setMeta("addToHistory", false); return true; }, // Appends the text contents of a block to the nearest previous block, given a position between them. Children of diff --git a/packages/mantine/src/form/TextInput.tsx b/packages/mantine/src/form/TextInput.tsx index e741deb46..c4b4a5334 100644 --- a/packages/mantine/src/form/TextInput.tsx +++ b/packages/mantine/src/form/TextInput.tsx @@ -1,6 +1,6 @@ import { TextInput as MantineTextInput } from "@mantine/core"; -import { assertEmpty } from "@blocknote/core"; +import { assertEmpty, mergeCSSClasses } from "@blocknote/core"; import { ComponentProps } from "@blocknote/react"; import { forwardRef } from "react"; @@ -12,13 +12,16 @@ export const TextInput = forwardRef< className, name, label, + variant, icon, value, autoFocus, placeholder, + disabled, onKeyDown, onChange, onSubmit, + autoComplete, ...rest } = props; @@ -27,7 +30,10 @@ export const TextInput = forwardRef< return ( ); }); diff --git a/packages/mantine/src/index.tsx b/packages/mantine/src/index.tsx index 94c423ff2..fee4ca9e4 100644 --- a/packages/mantine/src/index.tsx +++ b/packages/mantine/src/index.tsx @@ -55,7 +55,7 @@ export * from "./BlockNoteTheme"; export * from "./defaultThemes"; export const components: Components = { - FormattingToolbar: { + Toolbar: { Root: Toolbar, Button: ToolbarButton, Select: ToolbarSelect, @@ -73,10 +73,6 @@ export const components: Components = { EmptyItem: GridSuggestionMenuEmptyItem, Loader: GridSuggestionMenuLoader, }, - LinkToolbar: { - Root: Toolbar, - Button: ToolbarButton, - }, SideMenu: { Root: SideMenu, Button: SideMenuButton, diff --git a/packages/mantine/src/style.css b/packages/mantine/src/style.css index ee8b2e60f..7c76de356 100644 --- a/packages/mantine/src/style.css +++ b/packages/mantine/src/style.css @@ -118,6 +118,12 @@ height: 32px; } +.bn-mantine .bn-mt-input-large .mantine-TextInput-input { + border: none; + font-size: 14px; + height: 52px; +} + /* Mantine Tooltip component base styles */ .bn-mantine .mantine-Tooltip-tooltip { background-color: transparent; @@ -310,6 +316,12 @@ height: 52px; } +.bn-mantine .bn-suggestion-menu-item-small { + height: fit-content; + /* Made to match with labels */ + padding: calc(var(--mantine-spacing-xs) / 2) var(--mantine-spacing-sm); +} + .bn-mantine .bn-suggestion-menu-item[aria-selected="true"], .bn-mantine .bn-suggestion-menu-item:hover { background-color: var(--bn-colors-hovered-background); @@ -325,6 +337,16 @@ padding: 8px; } +.bn-suggestion-menu-item-small .bn-mt-suggestion-menu-item-section[data-position="left"] { + background-color: transparent; + padding: 0; +} + +.bn-suggestion-menu-item-small .bn-mt-suggestion-menu-item-section[data-position="left"] svg { + height: 14px; + width: 14px; +} + .bn-mt-suggestion-menu-item-body { align-items: stretch; display: flex; @@ -343,6 +365,10 @@ padding: 0; } +.bn-suggestion-menu-item-small .bn-mt-suggestion-menu-item-title { + font-size: 12px; +} + .bn-mt-suggestion-menu-item-subtitle { color: var(--bn-colors-menu-text); line-height: 16px; @@ -351,8 +377,13 @@ padding: 0; } +.bn-suggestion-menu-item-small .bn-mt-suggestion-menu-item-subtitle { + display: none; +} + .bn-mantine .bn-suggestion-menu-label { color: var(--bn-colors-hovered-text); + font-weight: bold; } .bn-mantine .bn-suggestion-menu-loader { diff --git a/packages/mantine/src/suggestionMenu/SuggestionMenuItem.tsx b/packages/mantine/src/suggestionMenu/SuggestionMenuItem.tsx index c7db27e38..a758c39da 100644 --- a/packages/mantine/src/suggestionMenu/SuggestionMenuItem.tsx +++ b/packages/mantine/src/suggestionMenu/SuggestionMenuItem.tsx @@ -27,7 +27,7 @@ export const SuggestionMenuItem = forwardRef< const overflow = elementOverflow( itemRef.current, - document.querySelector(".bn-suggestion-menu")! + document.querySelector(".bn-suggestion-menu, #ai-suggestion-menu")! // TODO ); if (overflow === "top") { @@ -44,6 +44,7 @@ export const SuggestionMenuItem = forwardRef< ref={mergeRefs(ref, itemRef)} id={id} role="option" + onMouseDown={(event) => event.preventDefault()} onClick={onClick} aria-selected={isSelected || undefined}> {item.icon && ( diff --git a/packages/mantine/src/toolbar/Toolbar.tsx b/packages/mantine/src/toolbar/Toolbar.tsx index 9ad042e85..a9c2b07d2 100644 --- a/packages/mantine/src/toolbar/Toolbar.tsx +++ b/packages/mantine/src/toolbar/Toolbar.tsx @@ -5,8 +5,7 @@ import { ComponentProps } from "@blocknote/react"; import { mergeRefs, useFocusTrap, useFocusWithin } from "@mantine/hooks"; import { forwardRef } from "react"; -type ToolbarProps = ComponentProps["FormattingToolbar"]["Root"] & - ComponentProps["LinkToolbar"]["Root"]; +type ToolbarProps = ComponentProps["Toolbar"]["Root"]; export const Toolbar = forwardRef( (props, ref) => { diff --git a/packages/mantine/src/toolbar/ToolbarButton.tsx b/packages/mantine/src/toolbar/ToolbarButton.tsx index bd22f0411..6ba92931d 100644 --- a/packages/mantine/src/toolbar/ToolbarButton.tsx +++ b/packages/mantine/src/toolbar/ToolbarButton.tsx @@ -22,8 +22,7 @@ export const TooltipContent = (props: { ); -type ToolbarButtonProps = ComponentProps["FormattingToolbar"]["Button"] & - ComponentProps["LinkToolbar"]["Button"]; +type ToolbarButtonProps = ComponentProps["Toolbar"]["Button"]; /** * Helper for basic buttons that show in the formatting toolbar. @@ -51,10 +50,12 @@ export const ToolbarButton = forwardRef( + mainTooltip && ( + + ) }> {/*Creates an ActionIcon instead of a Button if only an icon is provided as content.*/} {children ? ( @@ -69,11 +70,13 @@ export const ToolbarButton = forwardRef( } }} onClick={onClick} + leftSection={icon} aria-pressed={isSelected} data-selected={isSelected || undefined} data-test={ + mainTooltip && mainTooltip.slice(0, 1).toLowerCase() + - mainTooltip.replace(/\s+/g, "").slice(1) + mainTooltip.replace(/\s+/g, "").slice(1) } size={"xs"} disabled={isDisabled || false} @@ -96,8 +99,9 @@ export const ToolbarButton = forwardRef( aria-pressed={isSelected} data-selected={isSelected || undefined} data-test={ + mainTooltip && mainTooltip.slice(0, 1).toLowerCase() + - mainTooltip.replace(/\s+/g, "").slice(1) + mainTooltip.replace(/\s+/g, "").slice(1) } size={30} disabled={isDisabled || false} diff --git a/packages/mantine/src/toolbar/ToolbarSelect.tsx b/packages/mantine/src/toolbar/ToolbarSelect.tsx index 32638ca5a..6e57b178b 100644 --- a/packages/mantine/src/toolbar/ToolbarSelect.tsx +++ b/packages/mantine/src/toolbar/ToolbarSelect.tsx @@ -12,7 +12,7 @@ import { HiChevronDown } from "react-icons/hi"; // TODO: Turn into select? export const ToolbarSelect = forwardRef< HTMLDivElement, - ComponentProps["FormattingToolbar"]["Select"] + ComponentProps["Toolbar"]["Select"] >((props, ref) => { const { className, items, isDisabled, ...rest } = props; diff --git a/packages/react/src/components/FormattingToolbar/DefaultButtons/BasicTextStyleButton.tsx b/packages/react/src/components/FormattingToolbar/DefaultButtons/BasicTextStyleButton.tsx index 1be42b3ee..a8af0d144 100644 --- a/packages/react/src/components/FormattingToolbar/DefaultButtons/BasicTextStyleButton.tsx +++ b/packages/react/src/components/FormattingToolbar/DefaultButtons/BasicTextStyleButton.tsx @@ -107,7 +107,7 @@ export const BasicTextStyleButton =