diff --git a/.vscode/settings.json b/.vscode/settings.json index 7c24081186..79a37e7587 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,6 +1,9 @@ { "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true, + "editor.codeActionsOnSave": { + "source.addMissingImports": "explicit" + }, "[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[typescriptreact]": { "editor.defaultFormatter": "esbenp.prettier-vscode" diff --git a/examples/01-basic/01-minimal/package.json b/examples/01-basic/01-minimal/package.json index bbf86f0736..c44135bd8f 100644 --- a/examples/01-basic/01-minimal/package.json +++ b/examples/01-basic/01-minimal/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/01-basic/02-block-objects/package.json b/examples/01-basic/02-block-objects/package.json index 39c9a0307b..7039e7673b 100644 --- a/examples/01-basic/02-block-objects/package.json +++ b/examples/01-basic/02-block-objects/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/01-basic/03-multi-column/package.json b/examples/01-basic/03-multi-column/package.json index e0326a2f50..6f47510954 100644 --- a/examples/01-basic/03-multi-column/package.json +++ b/examples/01-basic/03-multi-column/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "@blocknote/xl-multi-column": "latest" diff --git a/examples/01-basic/04-default-blocks/package.json b/examples/01-basic/04-default-blocks/package.json index 546687894e..07bd550965 100644 --- a/examples/01-basic/04-default-blocks/package.json +++ b/examples/01-basic/04-default-blocks/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/01-basic/05-removing-default-blocks/package.json b/examples/01-basic/05-removing-default-blocks/package.json index 192f80ec02..84bea27041 100644 --- a/examples/01-basic/05-removing-default-blocks/package.json +++ b/examples/01-basic/05-removing-default-blocks/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/01-basic/06-block-manipulation/package.json b/examples/01-basic/06-block-manipulation/package.json index 977f2d333d..aa5d3d3660 100644 --- a/examples/01-basic/06-block-manipulation/package.json +++ b/examples/01-basic/06-block-manipulation/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/01-basic/07-selection-blocks/package.json b/examples/01-basic/07-selection-blocks/package.json index b9721da77c..0ad8dcd672 100644 --- a/examples/01-basic/07-selection-blocks/package.json +++ b/examples/01-basic/07-selection-blocks/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/01-basic/08-ariakit/package.json b/examples/01-basic/08-ariakit/package.json index 1d246711f8..5b3b14ccbe 100644 --- a/examples/01-basic/08-ariakit/package.json +++ b/examples/01-basic/08-ariakit/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/01-basic/09-shadcn/package.json b/examples/01-basic/09-shadcn/package.json index 65e0647624..8d842252d1 100644 --- a/examples/01-basic/09-shadcn/package.json +++ b/examples/01-basic/09-shadcn/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tailwindcss": "^4.1.14", diff --git a/examples/01-basic/10-localization/package.json b/examples/01-basic/10-localization/package.json index 3df0f75296..839e85bc1a 100644 --- a/examples/01-basic/10-localization/package.json +++ b/examples/01-basic/10-localization/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/01-basic/11-custom-placeholder/package.json b/examples/01-basic/11-custom-placeholder/package.json index fe75d85dae..8eea656745 100644 --- a/examples/01-basic/11-custom-placeholder/package.json +++ b/examples/01-basic/11-custom-placeholder/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/01-basic/12-multi-editor/package.json b/examples/01-basic/12-multi-editor/package.json index 531ec98b2c..01d46a5515 100644 --- a/examples/01-basic/12-multi-editor/package.json +++ b/examples/01-basic/12-multi-editor/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/01-basic/13-custom-paste-handler/package.json b/examples/01-basic/13-custom-paste-handler/package.json index bfcea4ce3d..047bc04b60 100644 --- a/examples/01-basic/13-custom-paste-handler/package.json +++ b/examples/01-basic/13-custom-paste-handler/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/01-basic/testing/package.json b/examples/01-basic/testing/package.json index e9ee6710fa..1d7ad1ef14 100644 --- a/examples/01-basic/testing/package.json +++ b/examples/01-basic/testing/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/02-backend/01-file-uploading/package.json b/examples/02-backend/01-file-uploading/package.json index 4421054008..8fa3abe662 100644 --- a/examples/02-backend/01-file-uploading/package.json +++ b/examples/02-backend/01-file-uploading/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/02-backend/02-saving-loading/package.json b/examples/02-backend/02-saving-loading/package.json index b8af2de7f2..33c35e1db5 100644 --- a/examples/02-backend/02-saving-loading/package.json +++ b/examples/02-backend/02-saving-loading/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/02-backend/03-s3/package.json b/examples/02-backend/03-s3/package.json index 4e75860468..4f0aea247d 100644 --- a/examples/02-backend/03-s3/package.json +++ b/examples/02-backend/03-s3/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "@aws-sdk/client-s3": "^3.609.0", diff --git a/examples/02-backend/04-rendering-static-documents/package.json b/examples/02-backend/04-rendering-static-documents/package.json index ed960b24d2..bf5f3099d8 100644 --- a/examples/02-backend/04-rendering-static-documents/package.json +++ b/examples/02-backend/04-rendering-static-documents/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "@blocknote/server-util": "latest" diff --git a/examples/03-ui-components/01-ui-elements-remove/package.json b/examples/03-ui-components/01-ui-elements-remove/package.json index bc949a4c77..88cb38e4ba 100644 --- a/examples/03-ui-components/01-ui-elements-remove/package.json +++ b/examples/03-ui-components/01-ui-elements-remove/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/03-ui-components/02-formatting-toolbar-buttons/package.json b/examples/03-ui-components/02-formatting-toolbar-buttons/package.json index 359e17aa52..a799ee1920 100644 --- a/examples/03-ui-components/02-formatting-toolbar-buttons/package.json +++ b/examples/03-ui-components/02-formatting-toolbar-buttons/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/03-ui-components/03-formatting-toolbar-block-type-items/package.json b/examples/03-ui-components/03-formatting-toolbar-block-type-items/package.json index 36ec799996..dd7baf25c5 100644 --- a/examples/03-ui-components/03-formatting-toolbar-block-type-items/package.json +++ b/examples/03-ui-components/03-formatting-toolbar-block-type-items/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "react-icons": "^5.2.1" diff --git a/examples/03-ui-components/03-formatting-toolbar-block-type-items/src/Alert.tsx b/examples/03-ui-components/03-formatting-toolbar-block-type-items/src/Alert.tsx index 4b2af03fbe..535e6b0d77 100644 --- a/examples/03-ui-components/03-formatting-toolbar-block-type-items/src/Alert.tsx +++ b/examples/03-ui-components/03-formatting-toolbar-block-type-items/src/Alert.tsx @@ -1,8 +1,9 @@ -import { defaultProps } from "@blocknote/core"; import { createReactBlockSpec } from "@blocknote/react"; import { Menu } from "@mantine/core"; import { MdCancel, MdCheckCircle, MdError, MdInfo } from "react-icons/md"; +import { z } from "zod/v4"; +import { createPropSchemaFromZod, defaultZodPropSchema } from "@blocknote/core"; import "./styles.css"; // The types of alerts that users can choose from. @@ -53,14 +54,18 @@ export const alertTypes = [ export const Alert = createReactBlockSpec( { type: "alert", - propSchema: { - textAlignment: defaultProps.textAlignment, - textColor: defaultProps.textColor, - type: { - default: "warning", - values: ["warning", "error", "info", "success"], - }, - }, + propSchema: createPropSchemaFromZod( + defaultZodPropSchema + .pick({ + textAlignment: true, + textColor: true, + }) + .extend({ + type: z + .enum(["warning", "error", "info", "success"]) + .default("warning"), + }), + ), content: "inline", }, { diff --git a/examples/03-ui-components/04-side-menu-buttons/package.json b/examples/03-ui-components/04-side-menu-buttons/package.json index 29ec731747..7ba5a3024e 100644 --- a/examples/03-ui-components/04-side-menu-buttons/package.json +++ b/examples/03-ui-components/04-side-menu-buttons/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "react-icons": "^5.2.1" diff --git a/examples/03-ui-components/05-side-menu-drag-handle-items/package.json b/examples/03-ui-components/05-side-menu-drag-handle-items/package.json index 02659f1458..7f180069fb 100644 --- a/examples/03-ui-components/05-side-menu-drag-handle-items/package.json +++ b/examples/03-ui-components/05-side-menu-drag-handle-items/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "react-icons": "^5.2.1" diff --git a/examples/03-ui-components/06-suggestion-menus-slash-menu-items/package.json b/examples/03-ui-components/06-suggestion-menus-slash-menu-items/package.json index c8965682db..23bb23b5a0 100644 --- a/examples/03-ui-components/06-suggestion-menus-slash-menu-items/package.json +++ b/examples/03-ui-components/06-suggestion-menus-slash-menu-items/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "react-icons": "^5.2.1" diff --git a/examples/03-ui-components/07-suggestion-menus-slash-menu-component/package.json b/examples/03-ui-components/07-suggestion-menus-slash-menu-component/package.json index 25b99a562d..5944d1fc55 100644 --- a/examples/03-ui-components/07-suggestion-menus-slash-menu-component/package.json +++ b/examples/03-ui-components/07-suggestion-menus-slash-menu-component/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/03-ui-components/08-suggestion-menus-emoji-picker-columns/package.json b/examples/03-ui-components/08-suggestion-menus-emoji-picker-columns/package.json index 777afaa140..487190c478 100644 --- a/examples/03-ui-components/08-suggestion-menus-emoji-picker-columns/package.json +++ b/examples/03-ui-components/08-suggestion-menus-emoji-picker-columns/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/03-ui-components/09-suggestion-menus-emoji-picker-component/package.json b/examples/03-ui-components/09-suggestion-menus-emoji-picker-component/package.json index 68e10b5905..59aba8278f 100644 --- a/examples/03-ui-components/09-suggestion-menus-emoji-picker-component/package.json +++ b/examples/03-ui-components/09-suggestion-menus-emoji-picker-component/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/03-ui-components/10-suggestion-menus-grid-mentions/package.json b/examples/03-ui-components/10-suggestion-menus-grid-mentions/package.json index 5dcdb24ae9..6182529517 100644 --- a/examples/03-ui-components/10-suggestion-menus-grid-mentions/package.json +++ b/examples/03-ui-components/10-suggestion-menus-grid-mentions/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/03-ui-components/10-suggestion-menus-grid-mentions/src/Mention.tsx b/examples/03-ui-components/10-suggestion-menus-grid-mentions/src/Mention.tsx index b19366ff65..920c74ba31 100644 --- a/examples/03-ui-components/10-suggestion-menus-grid-mentions/src/Mention.tsx +++ b/examples/03-ui-components/10-suggestion-menus-grid-mentions/src/Mention.tsx @@ -1,14 +1,16 @@ +import { createPropSchemaFromZod } from "@blocknote/core"; import { createReactInlineContentSpec } from "@blocknote/react"; +import { z } from "zod/v4"; // The Mention inline content. export const Mention = createReactInlineContentSpec( { type: "mention", - propSchema: { - user: { - default: "Unknown", - }, - }, + propSchema: createPropSchemaFromZod( + z.object({ + user: z.string().default("Unknown"), + }), + ), content: "none", }, { diff --git a/examples/03-ui-components/11-uppy-file-panel/package.json b/examples/03-ui-components/11-uppy-file-panel/package.json index 973ccae768..cb1dcd13d3 100644 --- a/examples/03-ui-components/11-uppy-file-panel/package.json +++ b/examples/03-ui-components/11-uppy-file-panel/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "@uppy/core": "^3.13.1", diff --git a/examples/03-ui-components/11-uppy-file-panel/src/FileReplaceButton.tsx b/examples/03-ui-components/11-uppy-file-panel/src/FileReplaceButton.tsx index e73723a9f9..c6dc16a567 100644 --- a/examples/03-ui-components/11-uppy-file-panel/src/FileReplaceButton.tsx +++ b/examples/03-ui-components/11-uppy-file-panel/src/FileReplaceButton.tsx @@ -1,8 +1,8 @@ import { BlockSchema, - blockHasType, InlineContentSchema, StyleSchema, + isFileBlock, } from "@blocknote/core"; import { useBlockNoteEditor, @@ -41,7 +41,7 @@ export const FileReplaceButton = () => { if ( block === undefined || - !blockHasType(block, editor, "file", { url: "string" }) || + !isFileBlock(editor, block.type) || !editor.isEditable ) { return null; diff --git a/examples/03-ui-components/12-static-formatting-toolbar/package.json b/examples/03-ui-components/12-static-formatting-toolbar/package.json index 582274d79b..0603faaa3c 100644 --- a/examples/03-ui-components/12-static-formatting-toolbar/package.json +++ b/examples/03-ui-components/12-static-formatting-toolbar/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/03-ui-components/13-custom-ui/package.json b/examples/03-ui-components/13-custom-ui/package.json index e94e0a9c37..7897783575 100644 --- a/examples/03-ui-components/13-custom-ui/package.json +++ b/examples/03-ui-components/13-custom-ui/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "@emotion/react": "^11.11.4", diff --git a/examples/03-ui-components/14-experimental-mobile-formatting-toolbar/package.json b/examples/03-ui-components/14-experimental-mobile-formatting-toolbar/package.json index 0caf0c2ab1..7711231ee2 100644 --- a/examples/03-ui-components/14-experimental-mobile-formatting-toolbar/package.json +++ b/examples/03-ui-components/14-experimental-mobile-formatting-toolbar/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/03-ui-components/15-advanced-tables/package.json b/examples/03-ui-components/15-advanced-tables/package.json index b058bf0b88..28c2e61e10 100644 --- a/examples/03-ui-components/15-advanced-tables/package.json +++ b/examples/03-ui-components/15-advanced-tables/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/03-ui-components/16-link-toolbar-buttons/package.json b/examples/03-ui-components/16-link-toolbar-buttons/package.json index dbc39e3c0b..c1954b7111 100644 --- a/examples/03-ui-components/16-link-toolbar-buttons/package.json +++ b/examples/03-ui-components/16-link-toolbar-buttons/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/03-ui-components/17-advanced-tables-2/package.json b/examples/03-ui-components/17-advanced-tables-2/package.json index 821d89d21b..96a6c18048 100644 --- a/examples/03-ui-components/17-advanced-tables-2/package.json +++ b/examples/03-ui-components/17-advanced-tables-2/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/04-theming/01-theming-dom-attributes/package.json b/examples/04-theming/01-theming-dom-attributes/package.json index ae80460c25..099e9a5be0 100644 --- a/examples/04-theming/01-theming-dom-attributes/package.json +++ b/examples/04-theming/01-theming-dom-attributes/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/04-theming/02-changing-font/package.json b/examples/04-theming/02-changing-font/package.json index 2712c03568..4d6c701aca 100644 --- a/examples/04-theming/02-changing-font/package.json +++ b/examples/04-theming/02-changing-font/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/04-theming/03-theming-css/package.json b/examples/04-theming/03-theming-css/package.json index 316e6e1660..b6e9e69e06 100644 --- a/examples/04-theming/03-theming-css/package.json +++ b/examples/04-theming/03-theming-css/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/04-theming/04-theming-css-variables/package.json b/examples/04-theming/04-theming-css-variables/package.json index 154970eb18..22c4b8c560 100644 --- a/examples/04-theming/04-theming-css-variables/package.json +++ b/examples/04-theming/04-theming-css-variables/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/04-theming/05-theming-css-variables-code/package.json b/examples/04-theming/05-theming-css-variables-code/package.json index 201a46de4f..a3f437083e 100644 --- a/examples/04-theming/05-theming-css-variables-code/package.json +++ b/examples/04-theming/05-theming-css-variables-code/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/04-theming/06-code-block/package.json b/examples/04-theming/06-code-block/package.json index 7aa6ac20bc..d6e52bbb8c 100644 --- a/examples/04-theming/06-code-block/package.json +++ b/examples/04-theming/06-code-block/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "@blocknote/code-block": "latest" diff --git a/examples/04-theming/07-custom-code-block/package.json b/examples/04-theming/07-custom-code-block/package.json index 61de00be1b..1007569457 100644 --- a/examples/04-theming/07-custom-code-block/package.json +++ b/examples/04-theming/07-custom-code-block/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "@blocknote/code-block": "latest", diff --git a/examples/05-interoperability/01-converting-blocks-to-html/package.json b/examples/05-interoperability/01-converting-blocks-to-html/package.json index 3338a38b05..2d83db1776 100644 --- a/examples/05-interoperability/01-converting-blocks-to-html/package.json +++ b/examples/05-interoperability/01-converting-blocks-to-html/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/05-interoperability/02-converting-blocks-from-html/package.json b/examples/05-interoperability/02-converting-blocks-from-html/package.json index 77f69540ce..59a8a16b39 100644 --- a/examples/05-interoperability/02-converting-blocks-from-html/package.json +++ b/examples/05-interoperability/02-converting-blocks-from-html/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/05-interoperability/03-converting-blocks-to-md/package.json b/examples/05-interoperability/03-converting-blocks-to-md/package.json index faa7202aa2..80556f5b3a 100644 --- a/examples/05-interoperability/03-converting-blocks-to-md/package.json +++ b/examples/05-interoperability/03-converting-blocks-to-md/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/05-interoperability/04-converting-blocks-from-md/package.json b/examples/05-interoperability/04-converting-blocks-from-md/package.json index 642727a0b3..cc15ad88d8 100644 --- a/examples/05-interoperability/04-converting-blocks-from-md/package.json +++ b/examples/05-interoperability/04-converting-blocks-from-md/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/05-interoperability/05-converting-blocks-to-pdf/package.json b/examples/05-interoperability/05-converting-blocks-to-pdf/package.json index bae781d726..783cf86511 100644 --- a/examples/05-interoperability/05-converting-blocks-to-pdf/package.json +++ b/examples/05-interoperability/05-converting-blocks-to-pdf/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "@blocknote/xl-pdf-exporter": "latest", diff --git a/examples/05-interoperability/06-converting-blocks-to-docx/package.json b/examples/05-interoperability/06-converting-blocks-to-docx/package.json index 542f835b4d..82b63fdab0 100644 --- a/examples/05-interoperability/06-converting-blocks-to-docx/package.json +++ b/examples/05-interoperability/06-converting-blocks-to-docx/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "@blocknote/xl-docx-exporter": "latest", diff --git a/examples/05-interoperability/06-converting-blocks-to-docx/src/App.tsx b/examples/05-interoperability/06-converting-blocks-to-docx/src/App.tsx index 9c91a99aff..1ac704f67a 100644 --- a/examples/05-interoperability/06-converting-blocks-to-docx/src/App.tsx +++ b/examples/05-interoperability/06-converting-blocks-to-docx/src/App.tsx @@ -32,7 +32,7 @@ export default function App() { // Creates a new editor instance. const editor = useCreateBlockNote({ // Adds support for page breaks & multi-column blocks. - schema: withMultiColumn(withPageBreak(BlockNoteSchema.create())), + schema: withMultiColumn(withPageBreak(BlockNoteSchema.create())) as any, dropCursor: multiColumnDropCursor, dictionary: { ...locales.en, @@ -397,7 +397,10 @@ export default function App() { // Exports the editor content to DOCX and downloads it. const onDownloadClick = async () => { - const exporter = new DOCXExporter(editor.schema, docxDefaultSchemaMappings); + const exporter = new DOCXExporter( + editor.schema, + docxDefaultSchemaMappings as any, + ); const blob = await exporter.toBlob(editor.document); const link = document.createElement("a"); diff --git a/examples/05-interoperability/07-converting-blocks-to-odt/package.json b/examples/05-interoperability/07-converting-blocks-to-odt/package.json index dbafdd7aee..063e66c0b8 100644 --- a/examples/05-interoperability/07-converting-blocks-to-odt/package.json +++ b/examples/05-interoperability/07-converting-blocks-to-odt/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "@blocknote/xl-odt-exporter": "latest", diff --git a/examples/05-interoperability/07-converting-blocks-to-odt/src/App.tsx b/examples/05-interoperability/07-converting-blocks-to-odt/src/App.tsx index 9ece22d905..6d4361eb59 100644 --- a/examples/05-interoperability/07-converting-blocks-to-odt/src/App.tsx +++ b/examples/05-interoperability/07-converting-blocks-to-odt/src/App.tsx @@ -396,7 +396,10 @@ export default function App() { // Exports the editor content to ODT and downloads it. const onDownloadClick = async () => { - const exporter = new ODTExporter(editor.schema, odtDefaultSchemaMappings); + const exporter = new ODTExporter( + editor.schema, + odtDefaultSchemaMappings as any, + ); const blob = await exporter.toODTDocument(editor.document); const link = document.createElement("a"); diff --git a/examples/05-interoperability/08-converting-blocks-to-react-email/package.json b/examples/05-interoperability/08-converting-blocks-to-react-email/package.json index 0e77d883f5..7e859a9ec6 100644 --- a/examples/05-interoperability/08-converting-blocks-to-react-email/package.json +++ b/examples/05-interoperability/08-converting-blocks-to-react-email/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "@blocknote/xl-email-exporter": "latest", diff --git a/examples/06-custom-schema/01-alert-block/package.json b/examples/06-custom-schema/01-alert-block/package.json index 67958db05b..9b02d18541 100644 --- a/examples/06-custom-schema/01-alert-block/package.json +++ b/examples/06-custom-schema/01-alert-block/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "react-icons": "^5.2.1" diff --git a/examples/06-custom-schema/01-alert-block/src/Alert.tsx b/examples/06-custom-schema/01-alert-block/src/Alert.tsx index 079cb8bebc..f3f8626ca1 100644 --- a/examples/06-custom-schema/01-alert-block/src/Alert.tsx +++ b/examples/06-custom-schema/01-alert-block/src/Alert.tsx @@ -1,7 +1,8 @@ -import { defaultProps } from "@blocknote/core"; +import { createPropSchemaFromZod, defaultZodPropSchema } from "@blocknote/core"; import { createReactBlockSpec } from "@blocknote/react"; import { Menu } from "@mantine/core"; import { MdCancel, MdCheckCircle, MdError, MdInfo } from "react-icons/md"; +import { z } from "zod/v4"; import "./styles.css"; @@ -53,14 +54,18 @@ export const alertTypes = [ export const createAlert = createReactBlockSpec( { type: "alert", - propSchema: { - textAlignment: defaultProps.textAlignment, - textColor: defaultProps.textColor, - type: { - default: "warning", - values: ["warning", "error", "info", "success"], - }, - }, + propSchema: createPropSchemaFromZod( + defaultZodPropSchema + .pick({ + textAlignment: true, + textColor: true, + }) + .extend({ + type: z + .enum(["warning", "error", "info", "success"]) + .default("warning"), + }), + ), content: "inline", }, { diff --git a/examples/06-custom-schema/02-suggestion-menus-mentions/package.json b/examples/06-custom-schema/02-suggestion-menus-mentions/package.json index 7604218654..ad306997fd 100644 --- a/examples/06-custom-schema/02-suggestion-menus-mentions/package.json +++ b/examples/06-custom-schema/02-suggestion-menus-mentions/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/06-custom-schema/02-suggestion-menus-mentions/src/Mention.tsx b/examples/06-custom-schema/02-suggestion-menus-mentions/src/Mention.tsx index b19366ff65..920c74ba31 100644 --- a/examples/06-custom-schema/02-suggestion-menus-mentions/src/Mention.tsx +++ b/examples/06-custom-schema/02-suggestion-menus-mentions/src/Mention.tsx @@ -1,14 +1,16 @@ +import { createPropSchemaFromZod } from "@blocknote/core"; import { createReactInlineContentSpec } from "@blocknote/react"; +import { z } from "zod/v4"; // The Mention inline content. export const Mention = createReactInlineContentSpec( { type: "mention", - propSchema: { - user: { - default: "Unknown", - }, - }, + propSchema: createPropSchemaFromZod( + z.object({ + user: z.string().default("Unknown"), + }), + ), content: "none", }, { diff --git a/examples/06-custom-schema/03-font-style/package.json b/examples/06-custom-schema/03-font-style/package.json index 88be55cfdc..d5a38dad6c 100644 --- a/examples/06-custom-schema/03-font-style/package.json +++ b/examples/06-custom-schema/03-font-style/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "react-icons": "^5.2.1" diff --git a/examples/06-custom-schema/04-pdf-file-block/package.json b/examples/06-custom-schema/04-pdf-file-block/package.json index 32641f7b5b..588ce092df 100644 --- a/examples/06-custom-schema/04-pdf-file-block/package.json +++ b/examples/06-custom-schema/04-pdf-file-block/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "react-icons": "^5.2.1" diff --git a/examples/06-custom-schema/04-pdf-file-block/src/PDF.tsx b/examples/06-custom-schema/04-pdf-file-block/src/PDF.tsx index f17619d8ba..3a0dd4785c 100644 --- a/examples/06-custom-schema/04-pdf-file-block/src/PDF.tsx +++ b/examples/06-custom-schema/04-pdf-file-block/src/PDF.tsx @@ -1,9 +1,15 @@ -import { FileBlockConfig } from "@blocknote/core"; +import { + baseFileZodPropSchema, + createPropSchemaFromZod, + FileBlockConfig, + optionalFileZodPropSchema, +} from "@blocknote/core"; import { createReactBlockSpec, ReactCustomBlockRenderProps, ResizableFileBlockWrapper, } from "@blocknote/react"; +import { z } from "zod/v4"; import { RiFilePdfFill } from "react-icons/ri"; @@ -33,24 +39,16 @@ export const PDFPreview = ( export const PDF = createReactBlockSpec( { type: "pdf", - propSchema: { - name: { - default: "" as const, - }, - url: { - default: "" as const, - }, - caption: { - default: "" as const, - }, - showPreview: { - default: true, - }, - previewWidth: { - default: undefined, - type: "number", - }, - }, + propSchema: createPropSchemaFromZod( + z.object({}).extend({ + ...baseFileZodPropSchema.shape, + ...optionalFileZodPropSchema.pick({ + url: true, + showPreview: true, + previewWidth: true, + }).shape, + }), + ), content: "none", }, { diff --git a/examples/06-custom-schema/05-alert-block-full-ux/package.json b/examples/06-custom-schema/05-alert-block-full-ux/package.json index 3ae14b72a9..06546c5c98 100644 --- a/examples/06-custom-schema/05-alert-block-full-ux/package.json +++ b/examples/06-custom-schema/05-alert-block-full-ux/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "react-icons": "^5.2.1" diff --git a/examples/06-custom-schema/05-alert-block-full-ux/src/Alert.tsx b/examples/06-custom-schema/05-alert-block-full-ux/src/Alert.tsx index 079cb8bebc..f3f8626ca1 100644 --- a/examples/06-custom-schema/05-alert-block-full-ux/src/Alert.tsx +++ b/examples/06-custom-schema/05-alert-block-full-ux/src/Alert.tsx @@ -1,7 +1,8 @@ -import { defaultProps } from "@blocknote/core"; +import { createPropSchemaFromZod, defaultZodPropSchema } from "@blocknote/core"; import { createReactBlockSpec } from "@blocknote/react"; import { Menu } from "@mantine/core"; import { MdCancel, MdCheckCircle, MdError, MdInfo } from "react-icons/md"; +import { z } from "zod/v4"; import "./styles.css"; @@ -53,14 +54,18 @@ export const alertTypes = [ export const createAlert = createReactBlockSpec( { type: "alert", - propSchema: { - textAlignment: defaultProps.textAlignment, - textColor: defaultProps.textColor, - type: { - default: "warning", - values: ["warning", "error", "info", "success"], - }, - }, + propSchema: createPropSchemaFromZod( + defaultZodPropSchema + .pick({ + textAlignment: true, + textColor: true, + }) + .extend({ + type: z + .enum(["warning", "error", "info", "success"]) + .default("warning"), + }), + ), content: "inline", }, { diff --git a/examples/06-custom-schema/06-toggleable-blocks/package.json b/examples/06-custom-schema/06-toggleable-blocks/package.json index 39d91e1845..749d94496b 100644 --- a/examples/06-custom-schema/06-toggleable-blocks/package.json +++ b/examples/06-custom-schema/06-toggleable-blocks/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/06-custom-schema/06-toggleable-blocks/src/Toggle.tsx b/examples/06-custom-schema/06-toggleable-blocks/src/Toggle.tsx index 244661f841..3fdd52c609 100644 --- a/examples/06-custom-schema/06-toggleable-blocks/src/Toggle.tsx +++ b/examples/06-custom-schema/06-toggleable-blocks/src/Toggle.tsx @@ -1,13 +1,11 @@ -import { defaultProps } from "@blocknote/core"; +import { defaultPropSchema } from "@blocknote/core"; import { createReactBlockSpec, ToggleWrapper } from "@blocknote/react"; // The Toggle block that we want to add to our editor. export const ToggleBlock = createReactBlockSpec( { type: "toggle", - propSchema: { - ...defaultProps, - }, + propSchema: defaultPropSchema, content: "inline", }, { diff --git a/examples/06-custom-schema/07-configuring-blocks/package.json b/examples/06-custom-schema/07-configuring-blocks/package.json index 72ff5c631c..6a84292347 100644 --- a/examples/06-custom-schema/07-configuring-blocks/package.json +++ b/examples/06-custom-schema/07-configuring-blocks/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/06-custom-schema/draggable-inline-content/package.json b/examples/06-custom-schema/draggable-inline-content/package.json index def570b94f..28d8671212 100644 --- a/examples/06-custom-schema/draggable-inline-content/package.json +++ b/examples/06-custom-schema/draggable-inline-content/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/06-custom-schema/draggable-inline-content/src/App.tsx b/examples/06-custom-schema/draggable-inline-content/src/App.tsx index 03af1b7088..93de8f1c33 100644 --- a/examples/06-custom-schema/draggable-inline-content/src/App.tsx +++ b/examples/06-custom-schema/draggable-inline-content/src/App.tsx @@ -1,20 +1,25 @@ -import { BlockNoteSchema, defaultInlineContentSpecs } from "@blocknote/core"; +import { + BlockNoteSchema, + createPropSchemaFromZod, + defaultInlineContentSpecs, +} from "@blocknote/core"; import "@blocknote/core/fonts/inter.css"; +import { BlockNoteView } from "@blocknote/mantine"; +import "@blocknote/mantine/style.css"; import { createReactInlineContentSpec, useCreateBlockNote, } from "@blocknote/react"; -import { BlockNoteView } from "@blocknote/mantine"; -import "@blocknote/mantine/style.css"; +import { z } from "zod/v4"; const draggableButton = createReactInlineContentSpec( { type: "draggableButton", - propSchema: { - title: { - default: "", - }, - }, + propSchema: createPropSchemaFromZod( + z.object({ + title: z.string().default(""), + }), + ), content: "none", }, { diff --git a/examples/06-custom-schema/react-custom-blocks/package.json b/examples/06-custom-schema/react-custom-blocks/package.json index 980b1f4b4c..b44e75db5c 100644 --- a/examples/06-custom-schema/react-custom-blocks/package.json +++ b/examples/06-custom-schema/react-custom-blocks/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/06-custom-schema/react-custom-blocks/src/App.tsx b/examples/06-custom-schema/react-custom-blocks/src/App.tsx index dd0573877d..17ae045fd6 100644 --- a/examples/06-custom-schema/react-custom-blocks/src/App.tsx +++ b/examples/06-custom-schema/react-custom-blocks/src/App.tsx @@ -1,12 +1,15 @@ import { BlockNoteSchema, + createPropSchemaFromZod, defaultBlockSpecs, - defaultProps, + defaultPropSchema, + defaultZodPropSchema, } from "@blocknote/core"; import "@blocknote/core/fonts/inter.css"; -import { createReactBlockSpec, useCreateBlockNote } from "@blocknote/react"; import { BlockNoteView } from "@blocknote/mantine"; import "@blocknote/mantine/style.css"; +import { createReactBlockSpec, useCreateBlockNote } from "@blocknote/react"; +import { z } from "zod/v4"; import "./styles.css"; @@ -37,14 +40,18 @@ const alertTypes = { export const alertBlock = createReactBlockSpec( { type: "alert", - propSchema: { - textAlignment: defaultProps.textAlignment, - textColor: defaultProps.textColor, - type: { - default: "warning", - values: ["warning", "error", "info", "success"], - } as const, - }, + propSchema: createPropSchemaFromZod( + defaultZodPropSchema + .pick({ + textAlignment: true, + textColor: true, + }) + .extend({ + type: z + .enum(["warning", "error", "info", "success"]) + .default("warning"), + }), + ), content: "inline", }, { @@ -76,15 +83,48 @@ export const alertBlock = createReactBlockSpec( }, ); +// TODO +export const advancedBlock = createReactBlockSpec( + { + type: "advanced", + propSchema: createPropSchemaFromZod( + z.object({ + nested: z.object({ + type: z.enum(["warning", "error", "info", "success"]), + message: z.string(), + }), + }), + ), + content: "inline", + }, + { + render: (props) => ( +
+ {props.block.props.nested.message} +
+
+ ), + }, +); + const simpleImageBlock = createReactBlockSpec( { type: "simpleImage", - propSchema: { - src: { - default: - "https://www.pulsecarshalton.co.uk/wp-content/uploads/2016/08/jk-placeholder-image.jpg", - }, - }, + propSchema: createPropSchemaFromZod( + z.object({ + src: z + .string() + .default( + "https://www.pulsecarshalton.co.uk/wp-content/uploads/2016/08/jk-placeholder-image.jpg", + ), + }), + ), content: "none", }, { @@ -102,9 +142,7 @@ export const bracketsParagraphBlock = createReactBlockSpec( { type: "bracketsParagraph", content: "inline", - propSchema: { - ...defaultProps, - }, + propSchema: defaultPropSchema, }, { render: (props) => ( @@ -125,6 +163,7 @@ const schema = BlockNoteSchema.create({ alert: alertBlock(), simpleImage: simpleImageBlock(), bracketsParagraph: bracketsParagraphBlock(), + advanced: advancedBlock(), }, }); @@ -132,6 +171,16 @@ export default function App() { const editor = useCreateBlockNote({ schema, initialContent: [ + { + type: "advanced", + props: { + nested: { + type: "warning", + message: "Warning", + }, + }, + content: "Advanced", + }, { type: "alert", props: { @@ -139,6 +188,7 @@ export default function App() { }, content: "Alert", }, + { type: "simpleImage", props: { diff --git a/examples/06-custom-schema/react-custom-inline-content/package.json b/examples/06-custom-schema/react-custom-inline-content/package.json index 6679d0e794..575d94c56d 100644 --- a/examples/06-custom-schema/react-custom-inline-content/package.json +++ b/examples/06-custom-schema/react-custom-inline-content/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/06-custom-schema/react-custom-inline-content/src/App.tsx b/examples/06-custom-schema/react-custom-inline-content/src/App.tsx index 202252cf43..4d9fcfe9f7 100644 --- a/examples/06-custom-schema/react-custom-inline-content/src/App.tsx +++ b/examples/06-custom-schema/react-custom-inline-content/src/App.tsx @@ -1,20 +1,25 @@ -import { BlockNoteSchema, defaultInlineContentSpecs } from "@blocknote/core"; +import { + BlockNoteSchema, + createPropSchemaFromZod, + defaultInlineContentSpecs, +} from "@blocknote/core"; import "@blocknote/core/fonts/inter.css"; +import { BlockNoteView } from "@blocknote/mantine"; +import "@blocknote/mantine/style.css"; import { createReactInlineContentSpec, useCreateBlockNote, } from "@blocknote/react"; -import { BlockNoteView } from "@blocknote/mantine"; -import "@blocknote/mantine/style.css"; +import { z } from "zod/v4"; const mention = createReactInlineContentSpec( { type: "mention", - propSchema: { - user: { - default: "", - }, - }, + propSchema: createPropSchemaFromZod( + z.object({ + user: z.string().default(""), + }), + ), content: "none", }, { @@ -27,7 +32,7 @@ const mention = createReactInlineContentSpec( const tag = createReactInlineContentSpec( { type: "tag", - propSchema: {}, + propSchema: createPropSchemaFromZod(z.object({})), content: "styled", }, { diff --git a/examples/06-custom-schema/react-custom-styles/package.json b/examples/06-custom-schema/react-custom-styles/package.json index d026bc292c..98b64c083e 100644 --- a/examples/06-custom-schema/react-custom-styles/package.json +++ b/examples/06-custom-schema/react-custom-styles/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/07-collaboration/01-partykit/package.json b/examples/07-collaboration/01-partykit/package.json index 68b38c8bbf..d47d21e635 100644 --- a/examples/07-collaboration/01-partykit/package.json +++ b/examples/07-collaboration/01-partykit/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "y-partykit": "^0.0.25", diff --git a/examples/07-collaboration/02-liveblocks/package.json b/examples/07-collaboration/02-liveblocks/package.json index 1ceb9d9892..ee2c40a973 100644 --- a/examples/07-collaboration/02-liveblocks/package.json +++ b/examples/07-collaboration/02-liveblocks/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "@liveblocks/client": "3.7.1-tiptap3", diff --git a/examples/07-collaboration/03-y-sweet/package.json b/examples/07-collaboration/03-y-sweet/package.json index 10c3a15eed..ee4b213edf 100644 --- a/examples/07-collaboration/03-y-sweet/package.json +++ b/examples/07-collaboration/03-y-sweet/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "@y-sweet/react": "^0.6.3" diff --git a/examples/07-collaboration/04-electric-sql/package.json b/examples/07-collaboration/04-electric-sql/package.json index cf8f631184..8ead1c9b27 100644 --- a/examples/07-collaboration/04-electric-sql/package.json +++ b/examples/07-collaboration/04-electric-sql/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/07-collaboration/05-comments/package.json b/examples/07-collaboration/05-comments/package.json index 5a4575bab1..c450aac661 100644 --- a/examples/07-collaboration/05-comments/package.json +++ b/examples/07-collaboration/05-comments/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "@y-sweet/react": "^0.6.3" diff --git a/examples/07-collaboration/06-comments-with-sidebar/package.json b/examples/07-collaboration/06-comments-with-sidebar/package.json index 44e8588883..ec21eb5d41 100644 --- a/examples/07-collaboration/06-comments-with-sidebar/package.json +++ b/examples/07-collaboration/06-comments-with-sidebar/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "y-partykit": "^0.0.25", diff --git a/examples/07-collaboration/07-ghost-writer/package.json b/examples/07-collaboration/07-ghost-writer/package.json index fb66b39740..79f3b40057 100644 --- a/examples/07-collaboration/07-ghost-writer/package.json +++ b/examples/07-collaboration/07-ghost-writer/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "y-partykit": "^0.0.25", diff --git a/examples/07-collaboration/08-forking/package.json b/examples/07-collaboration/08-forking/package.json index ae0c5ecf12..133e12ce0f 100644 --- a/examples/07-collaboration/08-forking/package.json +++ b/examples/07-collaboration/08-forking/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "y-partykit": "^0.0.25", diff --git a/examples/08-extensions/01-tiptap-arrow-conversion/package.json b/examples/08-extensions/01-tiptap-arrow-conversion/package.json index f0116dbbb6..e3d168af5a 100644 --- a/examples/08-extensions/01-tiptap-arrow-conversion/package.json +++ b/examples/08-extensions/01-tiptap-arrow-conversion/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "@tiptap/core": "^3.10.2" @@ -29,4 +30,4 @@ "@vitejs/plugin-react": "^4.7.0", "vite": "^5.4.20" } -} \ No newline at end of file +} diff --git a/examples/09-ai/01-minimal/package.json b/examples/09-ai/01-minimal/package.json index 5bab6bca1b..837de8e6c1 100644 --- a/examples/09-ai/01-minimal/package.json +++ b/examples/09-ai/01-minimal/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "@blocknote/xl-ai": "latest", diff --git a/examples/09-ai/02-playground/package.json b/examples/09-ai/02-playground/package.json index 7a2dfa0b45..31811d8dc7 100644 --- a/examples/09-ai/02-playground/package.json +++ b/examples/09-ai/02-playground/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "@blocknote/xl-ai": "latest", diff --git a/examples/09-ai/03-custom-ai-menu-items/package.json b/examples/09-ai/03-custom-ai-menu-items/package.json index b1d5273df3..9600dcf561 100644 --- a/examples/09-ai/03-custom-ai-menu-items/package.json +++ b/examples/09-ai/03-custom-ai-menu-items/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "@blocknote/xl-ai": "latest", diff --git a/examples/09-ai/04-with-collaboration/package.json b/examples/09-ai/04-with-collaboration/package.json index 38e48b84ff..0981513aed 100644 --- a/examples/09-ai/04-with-collaboration/package.json +++ b/examples/09-ai/04-with-collaboration/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "@blocknote/xl-ai": "latest", diff --git a/examples/09-ai/05-manual-execution/package.json b/examples/09-ai/05-manual-execution/package.json index c4d513fc84..2c6e4d37ff 100644 --- a/examples/09-ai/05-manual-execution/package.json +++ b/examples/09-ai/05-manual-execution/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "@blocknote/xl-ai": "latest", diff --git a/examples/09-ai/06-client-side-transport/package.json b/examples/09-ai/06-client-side-transport/package.json index 80d61fbf19..5d0c8f4b7c 100644 --- a/examples/09-ai/06-client-side-transport/package.json +++ b/examples/09-ai/06-client-side-transport/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "@ai-sdk/groq": "^2.0.16", diff --git a/examples/09-ai/07-server-promptbuilder/package.json b/examples/09-ai/07-server-promptbuilder/package.json index 32124ef536..21c1a94165 100644 --- a/examples/09-ai/07-server-promptbuilder/package.json +++ b/examples/09-ai/07-server-promptbuilder/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0", "@blocknote/xl-ai": "latest", diff --git a/examples/vanilla-js/react-vanilla-custom-blocks/package.json b/examples/vanilla-js/react-vanilla-custom-blocks/package.json index 8e714ad676..e8d4793533 100644 --- a/examples/vanilla-js/react-vanilla-custom-blocks/package.json +++ b/examples/vanilla-js/react-vanilla-custom-blocks/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/vanilla-js/react-vanilla-custom-blocks/src/App.tsx b/examples/vanilla-js/react-vanilla-custom-blocks/src/App.tsx index 3386861a88..b6774d609d 100644 --- a/examples/vanilla-js/react-vanilla-custom-blocks/src/App.tsx +++ b/examples/vanilla-js/react-vanilla-custom-blocks/src/App.tsx @@ -1,13 +1,16 @@ import { BlockNoteSchema, createBlockSpec, + createPropSchemaFromZod, defaultBlockSpecs, - defaultProps, + defaultPropSchema, + defaultZodPropSchema, } from "@blocknote/core"; import "@blocknote/core/fonts/inter.css"; -import { useCreateBlockNote } from "@blocknote/react"; import { BlockNoteView } from "@blocknote/mantine"; import "@blocknote/mantine/style.css"; +import { useCreateBlockNote } from "@blocknote/react"; +import { z } from "zod/v4"; import "./styles.css"; @@ -38,14 +41,18 @@ const alertTypes = { const alertBlock = createBlockSpec( { type: "alert", - propSchema: { - textAlignment: defaultProps.textAlignment, - textColor: defaultProps.textColor, - type: { - default: "warning", - values: ["warning", "error", "info", "success"] as const, - }, - }, + propSchema: createPropSchemaFromZod( + defaultZodPropSchema + .pick({ + textAlignment: true, + textColor: true, + }) + .extend({ + type: z + .enum(["warning", "error", "info", "success"]) + .default("warning"), + }), + ), content: "inline", }, { @@ -113,12 +120,15 @@ const alertBlock = createBlockSpec( const simpleImageBlock = createBlockSpec( { type: "simpleImage", - propSchema: { - src: { - default: - "https://www.pulsecarshalton.co.uk/wp-content/uploads/2016/08/jk-placeholder-image.jpg", - }, - }, + propSchema: createPropSchemaFromZod( + z.object({ + src: z + .string() + .default( + "https://www.pulsecarshalton.co.uk/wp-content/uploads/2016/08/jk-placeholder-image.jpg", + ), + }), + ), content: "none", }, { @@ -139,9 +149,7 @@ const bracketsParagraphBlock = createBlockSpec( { type: "bracketsParagraph", content: "inline", - propSchema: { - ...defaultProps, - }, + propSchema: defaultPropSchema, }, { render: () => { diff --git a/examples/vanilla-js/react-vanilla-custom-inline-content/package.json b/examples/vanilla-js/react-vanilla-custom-inline-content/package.json index 5190a3594c..d9c84668c9 100644 --- a/examples/vanilla-js/react-vanilla-custom-inline-content/package.json +++ b/examples/vanilla-js/react-vanilla-custom-inline-content/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/vanilla-js/react-vanilla-custom-inline-content/src/App.tsx b/examples/vanilla-js/react-vanilla-custom-inline-content/src/App.tsx index 867fa2f1a2..3e60cb0672 100644 --- a/examples/vanilla-js/react-vanilla-custom-inline-content/src/App.tsx +++ b/examples/vanilla-js/react-vanilla-custom-inline-content/src/App.tsx @@ -1,21 +1,23 @@ import { BlockNoteSchema, createInlineContentSpec, + createPropSchemaFromZod, defaultInlineContentSpecs, } from "@blocknote/core"; import "@blocknote/core/fonts/inter.css"; -import { useCreateBlockNote } from "@blocknote/react"; import { BlockNoteView } from "@blocknote/mantine"; import "@blocknote/mantine/style.css"; +import { useCreateBlockNote } from "@blocknote/react"; +import { z } from "zod/v4"; const mention = createInlineContentSpec( { type: "mention", - propSchema: { - user: { - default: "", - }, - }, + propSchema: createPropSchemaFromZod( + z.object({ + user: z.string().default(""), + }), + ), content: "none", }, { @@ -33,7 +35,7 @@ const mention = createInlineContentSpec( const tag = createInlineContentSpec( { type: "tag", - propSchema: {}, + propSchema: createPropSchemaFromZod(z.object({})), content: "styled", }, { diff --git a/examples/vanilla-js/react-vanilla-custom-styles/package.json b/examples/vanilla-js/react-vanilla-custom-styles/package.json index 19f9554bbf..9c23f31fa0 100644 --- a/examples/vanilla-js/react-vanilla-custom-styles/package.json +++ b/examples/vanilla-js/react-vanilla-custom-styles/package.json @@ -19,6 +19,7 @@ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + "zod": "^4.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/package.json b/package.json index 099c4b7e26..2463501ee8 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,8 @@ "serve": "14.2.4", "typescript": "^5.9.3", "vitest": "^2.1.9", - "wait-on": "8.0.3" + "wait-on": "8.0.3", + "zod": "^4.0.0" }, "pnpm": { "ignoredBuiltDependencies": [ diff --git a/packages/core/package.json b/packages/core/package.json index b1aa2c42f3..6a6e75ee59 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -87,17 +87,17 @@ "@emoji-mart/data": "^1.2.1", "@shikijs/types": "3.13.0", "@tiptap/core": "^3.10.2", - "@tiptap/extension-bold": "^3.7.2", - "@tiptap/extension-code": "^3.7.2", - "@tiptap/extension-gapcursor": "^3.7.2", - "@tiptap/extension-history": "^3.7.2", - "@tiptap/extension-horizontal-rule": "^3.7.2", - "@tiptap/extension-italic": "^3.7.2", - "@tiptap/extension-link": "^3.7.2", - "@tiptap/extension-paragraph": "^3.7.2", - "@tiptap/extension-strike": "^3.7.2", - "@tiptap/extension-text": "^3.7.2", - "@tiptap/extension-underline": "^3.7.2", + "@tiptap/extension-bold": "^3.10.2", + "@tiptap/extension-code": "^3.10.2", + "@tiptap/extension-gapcursor": "^3.10.2", + "@tiptap/extension-history": "^3.10.2", + "@tiptap/extension-horizontal-rule": "^3.10.2", + "@tiptap/extension-italic": "^3.10.2", + "@tiptap/extension-link": "^3.10.2", + "@tiptap/extension-paragraph": "^3.10.2", + "@tiptap/extension-strike": "^3.10.2", + "@tiptap/extension-text": "^3.10.2", + "@tiptap/extension-underline": "^3.10.2", "@tiptap/pm": "^3.10.2", "emoji-mart": "^5.6.0", "fast-deep-equal": "^3.1.3", @@ -122,7 +122,8 @@ "uuid": "^8.3.2", "y-prosemirror": "^1.3.7", "y-protocols": "^1.0.6", - "yjs": "^13.6.27" + "yjs": "^13.6.27", + "zod": "^4.0.0" }, "devDependencies": { "@types/emoji-mart": "^3.0.14", diff --git a/packages/core/src/api/blockManipulation/commands/insertBlocks/__snapshots__/insertBlocks.test.ts.snap b/packages/core/src/api/blockManipulation/commands/insertBlocks/__snapshots__/insertBlocks.test.ts.snap index dd575d1041..d0bb1203c3 100644 --- a/packages/core/src/api/blockManipulation/commands/insertBlocks/__snapshots__/insertBlocks.test.ts.snap +++ b/packages/core/src/api/blockManipulation/commands/insertBlocks/__snapshots__/insertBlocks.test.ts.snap @@ -339,6 +339,7 @@ exports[`Test insertBlocks > Insert multiple blocks after 2`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -1014,6 +1015,7 @@ exports[`Test insertBlocks > Insert multiple blocks before 2`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -1609,6 +1611,7 @@ exports[`Test insertBlocks > Insert single basic block after 2`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -2216,6 +2219,7 @@ exports[`Test insertBlocks > Insert single basic block before (without type) 2`] "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -2811,6 +2815,7 @@ exports[`Test insertBlocks > Insert single basic block before 2`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -3522,6 +3527,7 @@ exports[`Test insertBlocks > Insert single complex block after 2`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -4233,6 +4239,7 @@ exports[`Test insertBlocks > Insert single complex block before 2`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", diff --git a/packages/core/src/api/blockManipulation/commands/insertBlocks/insertBlocks.ts b/packages/core/src/api/blockManipulation/commands/insertBlocks/insertBlocks.ts index 81390947bf..cbd2a9a960 100644 --- a/packages/core/src/api/blockManipulation/commands/insertBlocks/insertBlocks.ts +++ b/packages/core/src/api/blockManipulation/commands/insertBlocks/insertBlocks.ts @@ -6,12 +6,13 @@ import { BlockIdentifier, BlockSchema, InlineContentSchema, + partialBlockToBlock, StyleSchema, } from "../../../../schema/index.js"; import { blockToNode } from "../../../nodeConversions/blockToNode.js"; import { nodeToBlock } from "../../../nodeConversions/nodeToBlock.js"; import { getNodeById } from "../../../nodeUtil.js"; -import { getPmSchema } from "../../../pmUtil.js"; +import { getBlockNoteSchema, getPmSchema } from "../../../pmUtil.js"; export function insertBlocks< BSchema extends BlockSchema, @@ -27,7 +28,10 @@ export function insertBlocks< typeof referenceBlock === "string" ? referenceBlock : referenceBlock.id; const pmSchema = getPmSchema(tr); const nodesToInsert = blocksToInsert.map((block) => - blockToNode(block, pmSchema), + blockToNode( + partialBlockToBlock(getBlockNoteSchema(pmSchema), block), + pmSchema, + ), ); const posInfo = getNodeById(id, tr.doc); diff --git a/packages/core/src/api/blockManipulation/commands/mergeBlocks/__snapshots__/mergeBlocks.test.ts.snap b/packages/core/src/api/blockManipulation/commands/mergeBlocks/__snapshots__/mergeBlocks.test.ts.snap index 690c00017e..66a2d11110 100644 --- a/packages/core/src/api/blockManipulation/commands/mergeBlocks/__snapshots__/mergeBlocks.test.ts.snap +++ b/packages/core/src/api/blockManipulation/commands/mergeBlocks/__snapshots__/mergeBlocks.test.ts.snap @@ -215,6 +215,7 @@ exports[`Test mergeBlocks > Basic 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -766,6 +767,7 @@ exports[`Test mergeBlocks > Blocks have different types 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -1317,6 +1319,7 @@ exports[`Test mergeBlocks > First block has children 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -1867,6 +1870,7 @@ exports[`Test mergeBlocks > Second block has children 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -2435,6 +2439,7 @@ exports[`Test mergeBlocks > Second block is empty 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", diff --git a/packages/core/src/api/blockManipulation/commands/moveBlocks/__snapshots__/moveBlocks.test.ts.snap b/packages/core/src/api/blockManipulation/commands/moveBlocks/__snapshots__/moveBlocks.test.ts.snap index 902463bbc1..0de9234962 100644 --- a/packages/core/src/api/blockManipulation/commands/moveBlocks/__snapshots__/moveBlocks.test.ts.snap +++ b/packages/core/src/api/blockManipulation/commands/moveBlocks/__snapshots__/moveBlocks.test.ts.snap @@ -232,6 +232,7 @@ exports[`Test moveBlocksDown > Basic 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -800,6 +801,7 @@ exports[`Test moveBlocksDown > Into children 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -1368,6 +1370,7 @@ exports[`Test moveBlocksDown > Last block 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -1936,6 +1939,7 @@ exports[`Test moveBlocksDown > Multiple blocks 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -2504,6 +2508,7 @@ exports[`Test moveBlocksDown > Multiple blocks ending in block with children 1`] "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -3072,6 +3077,7 @@ exports[`Test moveBlocksDown > Multiple blocks ending in nested block 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -3650,6 +3656,7 @@ exports[`Test moveBlocksDown > Multiple blocks starting and ending in nested blo "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -4218,6 +4225,7 @@ exports[`Test moveBlocksDown > Multiple blocks starting in block with children 1 "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -4785,6 +4793,7 @@ exports[`Test moveBlocksDown > Multiple blocks starting in nested block 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -5353,6 +5362,7 @@ exports[`Test moveBlocksDown > Out of children 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -5920,6 +5930,7 @@ exports[`Test moveBlocksUp > Basic 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -6488,6 +6499,7 @@ exports[`Test moveBlocksUp > First block 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -7056,6 +7068,7 @@ exports[`Test moveBlocksUp > Into children 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -7624,6 +7637,7 @@ exports[`Test moveBlocksUp > Multiple blocks 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -8192,6 +8206,7 @@ exports[`Test moveBlocksUp > Multiple blocks ending in block with children 1`] = "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -8760,6 +8775,7 @@ exports[`Test moveBlocksUp > Multiple blocks ending in nested block 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -9310,6 +9326,7 @@ exports[`Test moveBlocksUp > Multiple blocks starting and ending in nested block "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -9895,6 +9912,7 @@ exports[`Test moveBlocksUp > Multiple blocks starting in block with children 1`] "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -10462,6 +10480,7 @@ exports[`Test moveBlocksUp > Multiple blocks starting in nested block 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -11030,6 +11049,7 @@ exports[`Test moveBlocksUp > Out of children 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", diff --git a/packages/core/src/api/blockManipulation/commands/moveBlocks/moveBlocks.ts b/packages/core/src/api/blockManipulation/commands/moveBlocks/moveBlocks.ts index 8d4591123e..5d67179a00 100644 --- a/packages/core/src/api/blockManipulation/commands/moveBlocks/moveBlocks.ts +++ b/packages/core/src/api/blockManipulation/commands/moveBlocks/moveBlocks.ts @@ -5,7 +5,6 @@ import { Transaction, } from "prosemirror-state"; import { CellSelection } from "prosemirror-tables"; - import { Block } from "../../../../blocks/defaultBlocks.js"; import type { BlockNoteEditor } from "../../../../editor/BlockNoteEditor"; import { BlockIdentifier } from "../../../../schema/index.js"; @@ -171,7 +170,12 @@ export function moveSelectedBlocksAndSelection( const selectionData = getBlockSelectionData(editor); editor.removeBlocks(blocks); - editor.insertBlocks(flattenColumns(blocks), referenceBlock, placement); + // TODO + editor.insertBlocks( + flattenColumns(blocks) as any, + referenceBlock, + placement, + ); updateBlockSelectionFromData(tr, selectionData); }); diff --git a/packages/core/src/api/blockManipulation/commands/replaceBlocks/__snapshots__/replaceBlocks.test.ts.snap b/packages/core/src/api/blockManipulation/commands/replaceBlocks/__snapshots__/replaceBlocks.test.ts.snap index d255acf235..2e7c7470c1 100644 --- a/packages/core/src/api/blockManipulation/commands/replaceBlocks/__snapshots__/replaceBlocks.test.ts.snap +++ b/packages/core/src/api/blockManipulation/commands/replaceBlocks/__snapshots__/replaceBlocks.test.ts.snap @@ -145,6 +145,7 @@ exports[`Test replaceBlocks > Remove multiple consecutive blocks 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -696,6 +697,7 @@ exports[`Test replaceBlocks > Remove multiple non-consecutive blocks 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -993,6 +995,7 @@ exports[`Test replaceBlocks > Remove single block 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -1525,6 +1528,7 @@ exports[`Test replaceBlocks > Replace multiple consecutive blocks with multiple "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -2017,6 +2021,7 @@ exports[`Test replaceBlocks > Replace multiple consecutive blocks with single ba "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -2567,6 +2572,7 @@ exports[`Test replaceBlocks > Replace multiple consecutive blocks with single co "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -3169,6 +3175,7 @@ exports[`Test replaceBlocks > Replace multiple non-consecutive blocks with multi "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -3477,6 +3484,7 @@ exports[`Test replaceBlocks > Replace multiple non-consecutive blocks with singl "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -3843,6 +3851,7 @@ exports[`Test replaceBlocks > Replace multiple non-consecutive blocks with singl "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -4191,6 +4200,7 @@ exports[`Test replaceBlocks > Replace single block with multiple 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -4753,6 +4763,7 @@ exports[`Test replaceBlocks > Replace single block with single basic 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -5373,6 +5384,7 @@ exports[`Test replaceBlocks > Replace single block with single complex 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", diff --git a/packages/core/src/api/blockManipulation/commands/replaceBlocks/replaceBlocks.ts b/packages/core/src/api/blockManipulation/commands/replaceBlocks/replaceBlocks.ts index 04a2425a33..9da99247f0 100644 --- a/packages/core/src/api/blockManipulation/commands/replaceBlocks/replaceBlocks.ts +++ b/packages/core/src/api/blockManipulation/commands/replaceBlocks/replaceBlocks.ts @@ -1,15 +1,16 @@ import { type Node } from "prosemirror-model"; import { type Transaction } from "prosemirror-state"; import type { Block, PartialBlock } from "../../../../blocks/defaultBlocks.js"; -import type { - BlockIdentifier, - BlockSchema, - InlineContentSchema, - StyleSchema, +import { + partialBlockToBlock, + type BlockIdentifier, + type BlockSchema, + type InlineContentSchema, + type StyleSchema, } from "../../../../schema/index.js"; import { blockToNode } from "../../../nodeConversions/blockToNode.js"; import { nodeToBlock } from "../../../nodeConversions/nodeToBlock.js"; -import { getPmSchema } from "../../../pmUtil.js"; +import { getBlockNoteSchema, getPmSchema } from "../../../pmUtil.js"; import { fixColumnList } from "./util/fixColumnList.js"; export function removeAndInsertBlocks< @@ -19,6 +20,7 @@ export function removeAndInsertBlocks< >( tr: Transaction, blocksToRemove: BlockIdentifier[], + // TBD: allow PartialBlock here? blocksToInsert: PartialBlock[], ): { insertedBlocks: Block[]; @@ -28,7 +30,10 @@ export function removeAndInsertBlocks< // Converts the `PartialBlock`s to ProseMirror nodes to insert them into the // document. const nodesToInsert: Node[] = blocksToInsert.map((block) => - blockToNode(block, pmSchema), + blockToNode( + partialBlockToBlock(getBlockNoteSchema(pmSchema), block), + pmSchema, + ), ); const idsOfBlocksToRemove = new Set( diff --git a/packages/core/src/api/blockManipulation/commands/splitBlock/__snapshots__/splitBlock.test.ts.snap b/packages/core/src/api/blockManipulation/commands/splitBlock/__snapshots__/splitBlock.test.ts.snap index 60c3d1c1ed..c3c611f64b 100644 --- a/packages/core/src/api/blockManipulation/commands/splitBlock/__snapshots__/splitBlock.test.ts.snap +++ b/packages/core/src/api/blockManipulation/commands/splitBlock/__snapshots__/splitBlock.test.ts.snap @@ -249,6 +249,7 @@ exports[`Test splitBlocks > Basic 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -834,6 +835,7 @@ exports[`Test splitBlocks > Block has children 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -1419,6 +1421,7 @@ exports[`Test splitBlocks > Don't keep props 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -2004,6 +2007,7 @@ exports[`Test splitBlocks > Don't keep type 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -2583,6 +2587,7 @@ exports[`Test splitBlocks > End of content 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -3170,6 +3175,7 @@ exports[`Test splitBlocks > Keep type 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", diff --git a/packages/core/src/api/blockManipulation/commands/updateBlock/__snapshots__/updateBlock.test.ts.snap b/packages/core/src/api/blockManipulation/commands/updateBlock/__snapshots__/updateBlock.test.ts.snap index 3246168815..5a70f8600c 100644 --- a/packages/core/src/api/blockManipulation/commands/updateBlock/__snapshots__/updateBlock.test.ts.snap +++ b/packages/core/src/api/blockManipulation/commands/updateBlock/__snapshots__/updateBlock.test.ts.snap @@ -304,6 +304,7 @@ exports[`Test updateBlock > Revert all props 2`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -944,6 +945,7 @@ exports[`Test updateBlock > Revert single prop 2`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -1584,6 +1586,7 @@ exports[`Test updateBlock > Update all props 2`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -2224,6 +2227,7 @@ exports[`Test updateBlock > Update children 2`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -2569,6 +2573,7 @@ exports[`Test updateBlock > Update inline content to no content 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "", @@ -2587,6 +2592,7 @@ exports[`Test updateBlock > Update inline content to no content 2`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "", @@ -2806,6 +2812,7 @@ exports[`Test updateBlock > Update inline content to no content 2`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -3730,6 +3737,7 @@ exports[`Test updateBlock > Update inline content to table content 2`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -6978,6 +6986,7 @@ exports[`Test updateBlock > Update partial (offset start + end) 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -7546,6 +7555,7 @@ exports[`Test updateBlock > Update partial (offset start) 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -8107,6 +8117,7 @@ exports[`Test updateBlock > Update partial (props + offset end) 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -8668,6 +8679,7 @@ exports[`Test updateBlock > Update partial (table cell) 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -9236,6 +9248,7 @@ exports[`Test updateBlock > Update partial (table row) 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -9876,6 +9889,7 @@ exports[`Test updateBlock > Update single prop 2`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -10458,6 +10472,7 @@ exports[`Test updateBlock > Update table content to empty inline content 2`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -10872,6 +10887,7 @@ exports[`Test updateBlock > Update table content to inline content 2`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -11049,6 +11065,7 @@ exports[`Test updateBlock > Update table content to no content 1`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "", @@ -11289,6 +11306,7 @@ exports[`Test updateBlock > Update table content to no content 2`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -11320,6 +11338,7 @@ exports[`Test updateBlock > Update table content to no content 2`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "", @@ -11756,6 +11775,7 @@ exports[`Test updateBlock > Update type 2`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -12380,6 +12400,7 @@ exports[`Test updateBlock > Update with plain content 2`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", @@ -13006,6 +13027,7 @@ exports[`Test updateBlock > Update with styled content 2`] = ` "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://via.placeholder.com/150", diff --git a/packages/core/src/api/blockManipulation/commands/updateBlock/updateBlock.test.ts b/packages/core/src/api/blockManipulation/commands/updateBlock/updateBlock.test.ts index 95ea4dc4e7..6b4f6e99b7 100644 --- a/packages/core/src/api/blockManipulation/commands/updateBlock/updateBlock.test.ts +++ b/packages/core/src/api/blockManipulation/commands/updateBlock/updateBlock.test.ts @@ -50,6 +50,22 @@ describe("Test updateBlock typing", () => { } catch (e) { // ID doesn't exist, which is fine - this is a compile-time check } + + try { + // TODO: props.level type should propagate correctly + // @TODOts-expect-error level 8 doesn't exist + getEditor().updateBlock( + { id: "placeholder-id" }, + { + type: "heading", + props: { + level: 8, + }, + }, + ); + } catch (e) { + // ID doesn't exist, which is fine - this is a compile-time check + } }); }); diff --git a/packages/core/src/api/blockManipulation/commands/updateBlock/updateBlock.ts b/packages/core/src/api/blockManipulation/commands/updateBlock/updateBlock.ts index 4318b19ca7..3991f2a2bb 100644 --- a/packages/core/src/api/blockManipulation/commands/updateBlock/updateBlock.ts +++ b/packages/core/src/api/blockManipulation/commands/updateBlock/updateBlock.ts @@ -14,6 +14,11 @@ import type { BlockSchema, } from "../../../../schema/blocks/types.js"; import type { InlineContentSchema } from "../../../../schema/inlineContent/types.js"; +import { + partialBlockToBlock, + partialInlineContentToInlineContent, + partialTableContentToTableContent, +} from "../../../../schema/partialBlockToBlock.js"; import type { StyleSchema } from "../../../../schema/styles/types.js"; import { UnreachableCaseError } from "../../../../util/typescript.js"; import { @@ -27,7 +32,7 @@ import { } from "../../../nodeConversions/blockToNode.js"; import { nodeToBlock } from "../../../nodeConversions/nodeToBlock.js"; import { getNodeById } from "../../../nodeUtil.js"; -import { getPmSchema } from "../../../pmUtil.js"; +import { getBlockNoteSchema, getPmSchema } from "../../../pmUtil.js"; // for compatibility with tiptap. TODO: remove as we want to remove dependency on tiptap command interface export const updateBlockCommand = < @@ -71,7 +76,7 @@ export function updateBlockTr< } const pmSchema = getPmSchema(tr); - + const schema = getBlockNoteSchema(pmSchema); if ( replaceFromPos !== undefined && replaceToPos !== undefined && @@ -127,17 +132,19 @@ export function updateBlockTr< // currently, we calculate the new node and replace the entire node with the desired new node. // for this, we do a nodeToBlock on the existing block to get the children. // it would be cleaner to use a ReplaceAroundStep, but this is a bit simpler and it's quite an edge case - const existingBlock = nodeToBlock(blockInfo.bnBlock.node, pmSchema); + const newFullBlock = partialBlockToBlock(schema, block); + if (block.children === undefined) { + // if no children are passed in, use existing children + const existingBlock = nodeToBlock( + blockInfo.bnBlock.node, + pmSchema, + ); + newFullBlock.children = existingBlock.children; + } tr.replaceWith( blockInfo.bnBlock.beforePos, blockInfo.bnBlock.afterPos, - blockToNode( - { - children: existingBlock.children, // if no children are passed in, use existing children - ...block, - }, - pmSchema, - ), + blockToNode(newFullBlock, pmSchema), ); return; @@ -174,6 +181,7 @@ function updateBlockContentNode< replaceToOffset?: number, ) { const pmSchema = getPmSchema(tr); + const schema = getBlockNoteSchema(pmSchema); let content: PMNode[] | "keep" = "keep"; // Has there been any custom content provided? @@ -188,9 +196,22 @@ function updateBlockContentNode< } else if (Array.isArray(block.content)) { // Adds a text node with the provided styles converted into marks to the content, // for each InlineContent object. - content = inlineContentToNodes(block.content, pmSchema, newNodeType.name); + content = inlineContentToNodes( + partialInlineContentToInlineContent( + block.content, + schema.inlineContentSchema, + ), + pmSchema, + newNodeType.name, + ); } else if (block.content.type === "tableContent") { - content = tableContentToNodes(block.content, pmSchema); + content = tableContentToNodes( + partialTableContentToTableContent( + block.content, + schema.inlineContentSchema, + ), + pmSchema, + ); } else { throw new UnreachableCaseError(block.content.type); } @@ -276,9 +297,10 @@ function updateChildren< S extends StyleSchema, >(block: PartialBlock, tr: Transform, blockInfo: BlockInfo) { const pmSchema = getPmSchema(tr); + const schema = getBlockNoteSchema(pmSchema); if (block.children !== undefined && block.children.length > 0) { const childNodes = block.children.map((child) => { - return blockToNode(child, pmSchema); + return blockToNode(partialBlockToBlock(schema, child), pmSchema); }); // Checks if a blockGroup node already exists. diff --git a/packages/core/src/api/blockManipulation/tables/tables.ts b/packages/core/src/api/blockManipulation/tables/tables.ts index f770a34afd..811288c85f 100644 --- a/packages/core/src/api/blockManipulation/tables/tables.ts +++ b/packages/core/src/api/blockManipulation/tables/tables.ts @@ -1,11 +1,9 @@ import { DefaultBlockSchema } from "../../../blocks/defaultBlocks.js"; import { - BlockFromConfigNoChildren, - PartialTableContent, - TableCell, - TableContent, -} from "../../../schema/blocks/types.js"; -import { + type BlockFromConfig, + type PartialTableContent, + type TableCell, + type TableContent, isPartialLinkInlineContent, isStyledTextInlineContent, } from "../../../schema/index.js"; @@ -185,7 +183,7 @@ type OccupancyGrid = (RelativeCellIndices & { * @returns an {@link OccupancyGrid} */ export function getTableCellOccupancyGrid( - block: BlockFromConfigNoChildren, + block: BlockFromConfig, ): OccupancyGrid { const { height, width } = getDimensionsOfTable(block); @@ -295,7 +293,7 @@ export function getAbsoluteTableCells( /** * The table block containing the cell. */ - block: BlockFromConfigNoChildren, + block: BlockFromConfig, /** * The occupancy grid of the table. */ @@ -327,7 +325,7 @@ export function getAbsoluteTableCells( * @returns The height and width of the table. */ export function getDimensionsOfTable( - block: BlockFromConfigNoChildren, + block: BlockFromConfig, ): { /** * The number of rows in the table. @@ -370,7 +368,7 @@ export function getRelativeTableCells( /** * The table block containing the cell. */ - block: BlockFromConfigNoChildren, + block: BlockFromConfig, /** * The occupancy grid of the table. */ @@ -428,7 +426,7 @@ export function getRelativeTableCells( * @returns All of the cells associated with the relative row of the table. (All cells that have the same relative row index) */ export function getCellsAtRowHandle( - block: BlockFromConfigNoChildren, + block: BlockFromConfig, relativeRowIndex: RelativeCellIndices["row"], ) { const occupancyGrid = getTableCellOccupancyGrid(block); @@ -507,7 +505,7 @@ export function getCellsAtRowHandle( * @returns All of the cells associated with the relative column of the table. (All cells that have the same relative column index) */ export function getCellsAtColumnHandle( - block: BlockFromConfigNoChildren, + block: BlockFromConfig, relativeColumnIndex: RelativeCellIndices["col"], ) { const occupancyGrid = getTableCellOccupancyGrid(block); @@ -563,7 +561,7 @@ export function getCellsAtColumnHandle( * @note This is a destructive operation, it will modify the provided {@link OccupancyGrid} in place. */ export function moveColumn( - block: BlockFromConfigNoChildren, + block: BlockFromConfig, fromColIndex: RelativeCellIndices["col"], toColIndex: RelativeCellIndices["col"], occupancyGrid: OccupancyGrid = getTableCellOccupancyGrid(block), @@ -607,7 +605,7 @@ export function moveColumn( * @note This is a destructive operation, it will modify the {@link OccupancyGrid} in place. */ export function moveRow( - block: BlockFromConfigNoChildren, + block: BlockFromConfig, fromRowIndex: RelativeCellIndices["row"], toRowIndex: RelativeCellIndices["row"], occupancyGrid: OccupancyGrid = getTableCellOccupancyGrid(block), @@ -682,7 +680,7 @@ function isCellEmpty( * @note This is a destructive operation, it will modify the {@link OccupancyGrid} in place. */ export function cropEmptyRowsOrColumns( - block: BlockFromConfigNoChildren, + block: BlockFromConfig, removeEmpty: "columns" | "rows", occupancyGrid: OccupancyGrid = getTableCellOccupancyGrid(block), ): TableContent["rows"] { @@ -744,7 +742,7 @@ export function cropEmptyRowsOrColumns( * @note This is a destructive operation, it will modify the {@link OccupancyGrid} in place. */ export function addRowsOrColumns( - block: BlockFromConfigNoChildren, + block: BlockFromConfig, addType: "columns" | "rows", /** * The number of rows or columns to add. @@ -800,7 +798,7 @@ export function addRowsOrColumns( * Checks if a row can be safely dropped at the target row index without splitting merged cells. */ export function canRowBeDraggedInto( - block: BlockFromConfigNoChildren, + block: BlockFromConfig, draggingIndex: RelativeCellIndices["row"], targetRowIndex: RelativeCellIndices["row"], ) { @@ -835,7 +833,7 @@ export function canRowBeDraggedInto( * Checks if a column can be safely dropped at the target column index without splitting merged cells. */ export function canColumnBeDraggedInto( - block: BlockFromConfigNoChildren, + block: BlockFromConfig, draggingIndex: RelativeCellIndices["col"], targetColumnIndex: RelativeCellIndices["col"], ) { @@ -874,7 +872,7 @@ export function canColumnBeDraggedInto( export function areInSameColumn( from: RelativeCellIndices, to: RelativeCellIndices, - block: BlockFromConfigNoChildren, + block: BlockFromConfig, ) { // Table indices are relative to the table, so we need to resolve the absolute cell indices const anchorAbsoluteCellIndices = getAbsoluteTableCells(from, block); diff --git a/packages/core/src/api/clipboard/fromClipboard/handleFileInsertion.ts b/packages/core/src/api/clipboard/fromClipboard/handleFileInsertion.ts index 76a52d6ac6..180d91b70d 100644 --- a/packages/core/src/api/clipboard/fromClipboard/handleFileInsertion.ts +++ b/packages/core/src/api/clipboard/fromClipboard/handleFileInsertion.ts @@ -139,7 +139,7 @@ export async function handleFileInsertion< props: { name: file.name, }, - } as PartialBlock; + } as unknown as PartialBlock; let insertedBlockId: string | undefined = undefined; @@ -187,7 +187,7 @@ export async function handleFileInsertion< props: { url: updateData, }, - } as PartialBlock) + } as unknown as PartialBlock) : { ...updateData }; editor.updateBlock(insertedBlockId, updatedFileBlock); diff --git a/packages/core/src/api/clipboard/toClipboard/copyExtension.ts b/packages/core/src/api/clipboard/toClipboard/copyExtension.ts index 3a6aeaffd5..a6a2901186 100644 --- a/packages/core/src/api/clipboard/toClipboard/copyExtension.ts +++ b/packages/core/src/api/clipboard/toClipboard/copyExtension.ts @@ -81,7 +81,7 @@ function fragmentToExternalHTML< // Wrap in table to ensure correct parsing by spreadsheet applications externalHTML = `${externalHTMLExporter.exportInlineContent( - ic as any, + ic, {}, )}
`; } else if (isWithinBlockContent) { diff --git a/packages/core/src/api/exporters/html/externalHTMLExporter.ts b/packages/core/src/api/exporters/html/externalHTMLExporter.ts index 2149c884e7..fb6208d79a 100644 --- a/packages/core/src/api/exporters/html/externalHTMLExporter.ts +++ b/packages/core/src/api/exporters/html/externalHTMLExporter.ts @@ -1,12 +1,13 @@ import { DOMSerializer, Schema } from "prosemirror-model"; -import { PartialBlock } from "../../../blocks/defaultBlocks.js"; +import { Block } from "../../../blocks/defaultBlocks.js"; import type { BlockNoteEditor } from "../../../editor/BlockNoteEditor.js"; import { BlockSchema, InlineContent, InlineContentSchema, StyleSchema, + TableContent, } from "../../../schema/index.js"; import { serializeBlocksExternalHTML, @@ -40,7 +41,7 @@ export const createExternalHTMLExporter = < return { exportBlocks: ( - blocks: PartialBlock[], + blocks: Block[], options: { document?: Document }, ) => { const html = serializeBlocksExternalHTML( @@ -57,12 +58,12 @@ export const createExternalHTMLExporter = < }, exportInlineContent: ( - inlineContent: InlineContent[], + inlineContent: InlineContent[] | TableContent, options: { document?: Document }, ) => { const domFragment = serializeInlineContentExternalHTML( editor, - inlineContent as any, + inlineContent, serializer, options, ); diff --git a/packages/core/src/api/exporters/html/internalHTMLSerializer.ts b/packages/core/src/api/exporters/html/internalHTMLSerializer.ts index 5b3003cf55..3f1da10613 100644 --- a/packages/core/src/api/exporters/html/internalHTMLSerializer.ts +++ b/packages/core/src/api/exporters/html/internalHTMLSerializer.ts @@ -1,5 +1,6 @@ import { DOMSerializer, Schema } from "prosemirror-model"; -import { PartialBlock } from "../../../blocks/defaultBlocks.js"; + +import { Block } from "../../../blocks/index.js"; import type { BlockNoteEditor } from "../../../editor/BlockNoteEditor.js"; import { BlockSchema, @@ -28,7 +29,7 @@ export const createInternalHTMLSerializer = < return { serializeBlocks: ( - blocks: PartialBlock[], + blocks: Block[], options: { document?: Document }, ) => { return serializeBlocksInternalHTML(editor, blocks, serializer, options) diff --git a/packages/core/src/api/exporters/html/util/serializeBlocksExternalHTML.ts b/packages/core/src/api/exporters/html/util/serializeBlocksExternalHTML.ts index 17ab49fe69..923dddc7d1 100644 --- a/packages/core/src/api/exporters/html/util/serializeBlocksExternalHTML.ts +++ b/packages/core/src/api/exporters/html/util/serializeBlocksExternalHTML.ts @@ -1,12 +1,13 @@ import { DOMSerializer, Fragment, Node } from "prosemirror-model"; - -import { PartialBlock } from "../../../../blocks/defaultBlocks.js"; +import { Block } from "../../../../blocks/index.js"; import type { BlockNoteEditor } from "../../../../editor/BlockNoteEditor.js"; import { BlockImplementation, BlockSchema, + InlineContent, InlineContentSchema, StyleSchema, + TableContent, } from "../../../../schema/index.js"; import { UnreachableCaseError } from "../../../../util/typescript.js"; import { @@ -34,8 +35,8 @@ export function serializeInlineContentExternalHTML< I extends InlineContentSchema, S extends StyleSchema, >( - editor: BlockNoteEditor, - blockContent: PartialBlock["content"], + editor: BlockNoteEditor, + blockContent: InlineContent[] | TableContent, serializer: DOMSerializer, options?: { document?: Document }, ) { @@ -44,8 +45,6 @@ export function serializeInlineContentExternalHTML< // TODO: reuse function from nodeconversions? if (!blockContent) { throw new Error("blockContent is required"); - } else if (typeof blockContent === "string") { - nodes = inlineContentToNodes([blockContent], editor.pmSchema); } else if (Array.isArray(blockContent)) { nodes = inlineContentToNodes(blockContent, editor.pmSchema); } else if (blockContent.type === "tableContent") { @@ -166,7 +165,7 @@ function serializeBlock< >( fragment: DocumentFragment, editor: BlockNoteEditor, - block: PartialBlock, + block: Block, serializer: DOMSerializer, orderedListItemBlockTypes: Set, unorderedListItemBlockTypes: Set, @@ -175,20 +174,10 @@ function serializeBlock< const doc = options?.document ?? document; const BC_NODE = editor.pmSchema.nodes["blockContainer"]; - // set default props in case we were passed a partial block - const props = block.props || {}; - for (const [name, spec] of Object.entries( - editor.schema.blockSchema[block.type as any].propSchema, - )) { - if (!(name in props) && spec.default !== undefined) { - (props as any)[name] = spec.default; - } - } - const bc = BC_NODE.spec?.toDOM?.( BC_NODE.create({ id: block.id, - ...props, + ...block.props, }), ) as { dom: HTMLElement; @@ -204,14 +193,10 @@ function serializeBlock< const ret = blockImplementation.toExternalHTML?.call( {}, - { ...block, props } as any, + { ...block } as any, editor as any, ) || - blockImplementation.render.call( - {}, - { ...block, props } as any, - editor as any, - ); + blockImplementation.render.call({}, { ...block } as any, editor as any); const elementFragment = doc.createDocumentFragment(); @@ -240,11 +225,10 @@ function serializeBlock< } else { elementFragment.append(ret.dom); } - if (ret.contentDOM && block.content) { const ic = serializeInlineContentExternalHTML( editor, - block.content as any, // TODO + block.content, serializer, options, ); @@ -265,11 +249,11 @@ function serializeBlock< if ( listType === "OL" && - "start" in props && - props.start && - props?.start !== 1 + "start" in block.props && + block.props.start && + block.props?.start !== 1 ) { - list.setAttribute("start", props.start + ""); + list.setAttribute("start", block.props.start + ""); } fragment.append(list); } @@ -319,7 +303,7 @@ const serializeBlocksToFragment = < >( fragment: DocumentFragment, editor: BlockNoteEditor, - blocks: PartialBlock[], + blocks: Block[], serializer: DOMSerializer, orderedListItemBlockTypes: Set, unorderedListItemBlockTypes: Set, @@ -344,7 +328,7 @@ export const serializeBlocksExternalHTML = < S extends StyleSchema, >( editor: BlockNoteEditor, - blocks: PartialBlock[], + blocks: Block[], serializer: DOMSerializer, orderedListItemBlockTypes: Set, unorderedListItemBlockTypes: Set, diff --git a/packages/core/src/api/exporters/html/util/serializeBlocksInternalHTML.ts b/packages/core/src/api/exporters/html/util/serializeBlocksInternalHTML.ts index 0f890b77ab..48f0dcf5b9 100644 --- a/packages/core/src/api/exporters/html/util/serializeBlocksInternalHTML.ts +++ b/packages/core/src/api/exporters/html/util/serializeBlocksInternalHTML.ts @@ -1,11 +1,13 @@ import { DOMSerializer, Fragment, Node } from "prosemirror-model"; -import { PartialBlock } from "../../../../blocks/defaultBlocks.js"; +import { Block } from "../../../../blocks/defaultBlocks.js"; import type { BlockNoteEditor } from "../../../../editor/BlockNoteEditor.js"; import { BlockSchema, + InlineContent, InlineContentSchema, StyleSchema, + TableContent, } from "../../../../schema/index.js"; import { UnreachableCaseError } from "../../../../util/typescript.js"; import { @@ -19,8 +21,8 @@ export function serializeInlineContentInternalHTML< I extends InlineContentSchema, S extends StyleSchema, >( - editor: BlockNoteEditor, - blockContent: PartialBlock["content"], + editor: BlockNoteEditor, + blockContent: InlineContent[] | TableContent, serializer: DOMSerializer, blockType?: string, options?: { document?: Document }, @@ -30,8 +32,6 @@ export function serializeInlineContentInternalHTML< // TODO: reuse function from nodeconversions? if (!blockContent) { throw new Error("blockContent is required"); - } else if (typeof blockContent === "string") { - nodes = inlineContentToNodes([blockContent], editor.pmSchema, blockType); } else if (Array.isArray(blockContent)) { nodes = inlineContentToNodes(blockContent, editor.pmSchema, blockType); } else if (blockContent.type === "tableContent") { @@ -132,37 +132,26 @@ function serializeBlock< S extends StyleSchema, >( editor: BlockNoteEditor, - block: PartialBlock, + block: Block, serializer: DOMSerializer, options?: { document?: Document }, ) { const BC_NODE = editor.pmSchema.nodes["blockContainer"]; - // set default props in case we were passed a partial block - const props = block.props || {}; - for (const [name, spec] of Object.entries( - editor.schema.blockSchema[block.type as any].propSchema, - )) { - if (!(name in props) && spec.default !== undefined) { - (props as any)[name] = spec.default; - } - } - const children = block.children || []; - const impl = editor.blockImplementations[block.type as any].implementation; const ret = impl.render.call( { renderType: "dom", props: undefined, }, - { ...block, props, children } as any, + block, editor as any, ); if (ret.contentDOM && block.content) { const ic = serializeInlineContentInternalHTML( editor, - block.content as any, // TODO + block.content, serializer, block.type, options, @@ -190,7 +179,7 @@ function serializeBlock< const bc = BC_NODE.spec?.toDOM?.( BC_NODE.create({ id: block.id, - ...props, + ...block.props, }), ) as { dom: HTMLElement; @@ -213,7 +202,7 @@ function serializeBlocks< S extends StyleSchema, >( editor: BlockNoteEditor, - blocks: PartialBlock[], + blocks: Block[], serializer: DOMSerializer, options?: { document?: Document }, ) { @@ -234,7 +223,7 @@ export const serializeBlocksInternalHTML = < S extends StyleSchema, >( editor: BlockNoteEditor, - blocks: PartialBlock[], + blocks: Block[], serializer: DOMSerializer, options?: { document?: Document }, ) => { diff --git a/packages/core/src/api/exporters/markdown/markdownExporter.ts b/packages/core/src/api/exporters/markdown/markdownExporter.ts index 23aad8db7c..6950f17254 100644 --- a/packages/core/src/api/exporters/markdown/markdownExporter.ts +++ b/packages/core/src/api/exporters/markdown/markdownExporter.ts @@ -5,7 +5,7 @@ import remarkGfm from "remark-gfm"; import remarkStringify from "remark-stringify"; import { unified } from "unified"; -import { PartialBlock } from "../../../blocks/defaultBlocks.js"; +import { Block } from "../../../blocks/defaultBlocks.js"; import type { BlockNoteEditor } from "../../../editor/BlockNoteEditor.js"; import { BlockSchema, @@ -13,9 +13,9 @@ import { StyleSchema, } from "../../../schema/index.js"; import { createExternalHTMLExporter } from "../html/externalHTMLExporter.js"; -import { removeUnderlines } from "./util/removeUnderlinesRehypePlugin.js"; import { addSpacesToCheckboxes } from "./util/addSpacesToCheckboxesRehypePlugin.js"; import { convertVideoToMarkdown } from "./util/convertVideoToMarkdownRehypePlugin.js"; +import { removeUnderlines } from "./util/removeUnderlinesRehypePlugin.js"; // Needs to be sync because it's used in drag handler event (SideMenuPlugin) export function cleanHTMLToMarkdown(cleanHTMLString: string) { @@ -39,7 +39,7 @@ export function blocksToMarkdown< I extends InlineContentSchema, S extends StyleSchema, >( - blocks: PartialBlock[], + blocks: Block[], schema: Schema, editor: BlockNoteEditor, options: { document?: Document }, diff --git a/packages/core/src/api/getBlocksChangedByTransaction.ts b/packages/core/src/api/getBlocksChangedByTransaction.ts index c45af4cb71..de184ed5b4 100644 --- a/packages/core/src/api/getBlocksChangedByTransaction.ts +++ b/packages/core/src/api/getBlocksChangedByTransaction.ts @@ -171,7 +171,7 @@ function collectSnapshot< if (!childrenByParent[key]) { childrenByParent[key] = []; } - const block = nodeToBlock(node, pmSchema); + const block = nodeToBlock(node, pmSchema); byId[node.attrs.id] = { block, parentId }; childrenByParent[key].push(node.attrs.id); return true; diff --git a/packages/core/src/api/nodeConversions/blockToNode.ts b/packages/core/src/api/nodeConversions/blockToNode.ts index 660d97406e..6aff41d076 100644 --- a/packages/core/src/api/nodeConversions/blockToNode.ts +++ b/packages/core/src/api/nodeConversions/blockToNode.ts @@ -1,22 +1,22 @@ import { Attrs, Fragment, Mark, Node, Schema } from "@tiptap/pm/model"; -import UniqueID from "../../extensions/UniqueID/UniqueID.js"; import type { + BlockSchema, + CustomInlineContentFromConfig, + InlineContent, InlineContentSchema, - PartialCustomInlineContentFromConfig, - PartialInlineContent, - PartialLink, - PartialTableContent, + Link, StyleSchema, StyledText, + TableContent, } from "../../schema"; -import type { PartialBlock } from "../../blocks/defaultBlocks"; +import type { Block } from "../../blocks/index.js"; import { - isPartialLinkInlineContent, + isLinkInlineContent, isStyledTextInlineContent, } from "../../schema/inlineContent/types.js"; -import { getColspan, isPartialTableCell } from "../../util/table.js"; +import { getColspan, isTableCell } from "../../util/table.js"; import { UnreachableCaseError } from "../../util/typescript.js"; import { getAbsoluteTableCells } from "../blockManipulation/tables/tables.js"; import { getStyleSchema } from "../pmUtil.js"; @@ -83,7 +83,7 @@ function styledTextToNodes( * prosemirror text nodes with the appropriate marks */ function linkToNodes( - link: PartialLink, + link: Link, schema: Schema, styleSchema: StyleSchema, ): Node[] { @@ -110,6 +110,7 @@ function linkToNodes( * prosemirror text nodes with the appropriate marks */ function styledTextArrayToNodes( + // this is lenient to "partial" inline content. FIXME: let's simplify and remove support for `string` here content: string | StyledText[], schema: Schema, styleSchema: S, @@ -144,7 +145,8 @@ export function inlineContentToNodes< I extends InlineContentSchema, S extends StyleSchema, >( - blockContent: PartialInlineContent, + // this is lenient to "partial" inline content. FIXME: let's simplify and remove support for `string[]` here + blockContent: string[] | InlineContent[], schema: Schema, blockType?: string, styleSchema: S = getStyleSchema(schema), @@ -153,10 +155,11 @@ export function inlineContentToNodes< for (const content of blockContent) { if (typeof content === "string") { + // TODO: remove? nodes.push( ...styledTextArrayToNodes(content, schema, styleSchema, blockType), ); - } else if (isPartialLinkInlineContent(content)) { + } else if (isLinkInlineContent(content)) { nodes.push(...linkToNodes(content, schema, styleSchema)); } else if (isStyledTextInlineContent(content)) { nodes.push( @@ -178,7 +181,7 @@ export function tableContentToNodes< I extends InlineContentSchema, S extends StyleSchema, >( - tableContent: PartialTableContent, + tableContent: TableContent, schema: Schema, styleSchema: StyleSchema = getStyleSchema(schema), ): Node[] { @@ -227,7 +230,7 @@ export function tableContentToNodes< // No-op } else if (typeof cell === "string") { content = schema.text(cell); - } else if (isPartialTableCell(cell)) { + } else if (isTableCell(cell)) { if (cell.content) { content = inlineContentToNodes( cell.content, @@ -258,7 +261,7 @@ export function tableContentToNodes< isHeaderCol || isHeaderRow ? "tableHeader" : "tableCell" ].createChecked( { - ...(isPartialTableCell(cell) ? cell.props : {}), + ...(isTableCell(cell) ? cell.props : {}), colwidth, }, schema.nodes["tableParagraph"].createChecked(attrs, content), @@ -273,19 +276,12 @@ export function tableContentToNodes< } function blockOrInlineContentToContentNode( - block: - | PartialBlock - | PartialCustomInlineContentFromConfig, + block: Block | CustomInlineContentFromConfig, schema: Schema, styleSchema: StyleSchema, ) { + const type = block.type; let contentNode: Node; - let type = block.type; - - // TODO: needed? came from previous code - if (type === undefined) { - type = "paragraph"; - } if (!schema.nodes[type]) { throw new Error(`node type ${type} not found in schema`); @@ -321,17 +317,15 @@ function blockOrInlineContentToContentNode( /** * Converts a BlockNote block to a Prosemirror node. */ -export function blockToNode( - block: PartialBlock, +export function blockToNode< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema, +>( + block: Block, schema: Schema, - styleSchema: StyleSchema = getStyleSchema(schema), + styleSchema: S = getStyleSchema(schema), ) { - let id = block.id; - - if (id === undefined) { - id = UniqueID.options.generateID(); - } - const children: Node[] = []; if (block.children) { @@ -360,7 +354,7 @@ export function blockToNode( return schema.nodes["blockContainer"].createChecked( { - id: id, + id: block.id, ...block.props, }, groupNode ? [contentNode, groupNode] : contentNode, @@ -369,7 +363,7 @@ export function blockToNode( // this is a bnBlock node like Column or ColumnList that directly translates to a prosemirror node return schema.nodes[block.type].createChecked( { - id: id, + id: block.id, ...block.props, }, children, diff --git a/packages/core/src/api/nodeConversions/fragmentToBlocks.ts b/packages/core/src/api/nodeConversions/fragmentToBlocks.ts index 724b552bda..878c2eb032 100644 --- a/packages/core/src/api/nodeConversions/fragmentToBlocks.ts +++ b/packages/core/src/api/nodeConversions/fragmentToBlocks.ts @@ -1,6 +1,6 @@ import { Fragment } from "@tiptap/pm/model"; +import type { Block } from "../../blocks/index.js"; import { - BlockNoDefaults, BlockSchema, InlineContentSchema, StyleSchema, @@ -18,7 +18,7 @@ export function fragmentToBlocks< >(fragment: Fragment) { // first convert selection to blocknote-style blocks, and then // pass these to the exporter - const blocks: BlockNoDefaults[] = []; + const blocks: Block[] = []; fragment.descendants((node) => { const pmSchema = getPmSchema(node); if (node.type.name === "blockContainer") { diff --git a/packages/core/src/api/nodeConversions/nodeToBlock.ts b/packages/core/src/api/nodeConversions/nodeToBlock.ts index 7ce9d39cf1..f3fabd5764 100644 --- a/packages/core/src/api/nodeConversions/nodeToBlock.ts +++ b/packages/core/src/api/nodeConversions/nodeToBlock.ts @@ -1,4 +1,5 @@ import { Mark, Node, Schema, Slice } from "@tiptap/pm/model"; +import * as z from "zod/v4/core"; import type { Block } from "../../blocks/defaultBlocks.js"; import UniqueID from "../../extensions/UniqueID/UniqueID.js"; import type { @@ -26,7 +27,6 @@ import { getPmSchema, getStyleSchema, } from "../pmUtil.js"; - /** * Converts an internal (prosemirror) table node contentto a BlockNote Tablecontent */ @@ -347,22 +347,17 @@ export function nodeToCustomInlineContent< if (node.type.name === "text" || node.type.name === "link") { throw new Error("unexpected"); } - const props: any = {}; + const icConfig = inlineContentSchema[ node.type.name ] as CustomInlineContentConfig; - for (const [attr, value] of Object.entries(node.attrs)) { - if (!icConfig) { - throw Error("ic node is of an unrecognized type: " + node.type.name); - } - const propSchema = icConfig.propSchema; - - if (attr in propSchema) { - props[attr] = value; - } + if (!icConfig) { + throw Error("ic node is of an unrecognized type: " + node.type.name); } + const props = z.parse(icConfig.propSchema._zodSource, node.attrs); + let content: CustomInlineContentFromConfig["content"]; if (icConfig.content === "styled") { @@ -425,20 +420,12 @@ export function nodeToBlock< throw Error("Block is of an unrecognized type: " + blockInfo.blockNoteType); } - const props: any = {}; - for (const [attr, value] of Object.entries({ + const rawAttrs = { ...node.attrs, ...(blockInfo.isBlockContainer ? blockInfo.blockContent.node.attrs : {}), - })) { - const propSchema = blockSpec.propSchema; - - if ( - attr in propSchema && - !(propSchema[attr].default === undefined && value === undefined) - ) { - props[attr] = value; - } - } + }; + + const props = z.parse(blockSpec.propSchema._zodSource, rawAttrs); const blockConfig = blockSchema[blockInfo.blockNoteType]; diff --git a/packages/core/src/api/pmUtil.ts b/packages/core/src/api/pmUtil.ts index e47a3f2a75..0f899acd50 100644 --- a/packages/core/src/api/pmUtil.ts +++ b/packages/core/src/api/pmUtil.ts @@ -1,8 +1,8 @@ import type { Node, Schema } from "prosemirror-model"; import { Transform } from "prosemirror-transform"; import type { BlockNoteEditor } from "../editor/BlockNoteEditor.js"; -import { BlockNoteSchema } from "../blocks/BlockNoteSchema.js"; import type { BlockSchema } from "../schema/blocks/types.js"; +import { CustomBlockNoteSchema } from "../schema/CustomBlockNoteSchema.js"; import type { InlineContentSchema } from "../schema/inlineContent/types.js"; import type { StyleSchema } from "../schema/styles/types.js"; @@ -25,12 +25,8 @@ export function getBlockNoteSchema< BSchema extends BlockSchema, I extends InlineContentSchema, S extends StyleSchema, ->(schema: Schema): BlockNoteSchema { - return getBlockNoteEditor(schema).schema as unknown as BlockNoteSchema< - BSchema, - I, - S - >; +>(schema: Schema): CustomBlockNoteSchema { + return getBlockNoteEditor(schema).schema as any; } export function getBlockSchema( diff --git a/packages/core/src/blocks/Audio/block.ts b/packages/core/src/blocks/Audio/block.ts index f271fcb16a..65e35d034a 100644 --- a/packages/core/src/blocks/Audio/block.ts +++ b/packages/core/src/blocks/Audio/block.ts @@ -1,10 +1,15 @@ -import { BlockNoteEditor } from "../../editor/BlockNoteEditor.js"; +import type { BlockNoteEditor } from "../../editor/BlockNoteEditor.js"; import { - BlockFromConfig, + type BlockFromConfig, createBlockConfig, createBlockSpec, + createPropSchemaFromZod, } from "../../schema/index.js"; -import { defaultProps, parseDefaultProps } from "../defaultProps.js"; +import { + baseFileZodPropSchema, + optionalFileZodPropSchema, +} from "../defaultFileProps.js"; +import { defaultZodPropSchema, parseDefaultProps } from "../defaultProps.js"; import { parseFigureElement } from "../File/helpers/parse/parseFigureElement.js"; import { createFileBlockWrapper } from "../File/helpers/render/createFileBlockWrapper.js"; import { createFigureWithCaption } from "../File/helpers/toExternalHTML/createFigureWithCaption.js"; @@ -20,29 +25,23 @@ export interface AudioOptions { export type AudioBlockConfig = ReturnType; +const audioZodPropSchema = defaultZodPropSchema + .pick({ + backgroundColor: true, + }) + .extend({ + ...baseFileZodPropSchema.shape, + ...optionalFileZodPropSchema.pick({ + url: true, + showPreview: true, + }).shape, + }); + export const createAudioBlockConfig = createBlockConfig( (_ctx: AudioOptions) => ({ type: "audio" as const, - propSchema: { - backgroundColor: defaultProps.backgroundColor, - // File name. - name: { - default: "" as const, - }, - // File url. - url: { - default: "" as const, - }, - // File caption. - caption: { - default: "" as const, - }, - - showPreview: { - default: true, - }, - }, + propSchema: createPropSchemaFromZod(audioZodPropSchema), content: "none", }) as const, ); diff --git a/packages/core/src/blocks/BlockNoteSchema.ts b/packages/core/src/blocks/BlockNoteSchema.ts index 37b60220da..3b2a29b11f 100644 --- a/packages/core/src/blocks/BlockNoteSchema.ts +++ b/packages/core/src/blocks/BlockNoteSchema.ts @@ -38,7 +38,7 @@ export class BlockNoteSchema< * A list of custom Styles that should be available in the editor. */ styleSpecs?: SSpecs; - }): BlockNoteSchema< + }): CustomBlockNoteSchema< BSpecs extends undefined ? BlockSchemaFromSpecs : BlockSchemaFromSpecs>, @@ -49,7 +49,7 @@ export class BlockNoteSchema< ? StyleSchemaFromSpecs : StyleSchemaFromSpecs> > { - return new BlockNoteSchema({ + return new CustomBlockNoteSchema({ blockSpecs: options?.blockSpecs ?? defaultBlockSpecs, inlineContentSpecs: options?.inlineContentSpecs ?? defaultInlineContentSpecs, diff --git a/packages/core/src/blocks/Code/block.ts b/packages/core/src/blocks/Code/block.ts index 1458257e48..d859c4764a 100644 --- a/packages/core/src/blocks/Code/block.ts +++ b/packages/core/src/blocks/Code/block.ts @@ -1,8 +1,13 @@ import type { HighlighterGeneric } from "@shikijs/types"; +import { DOMParser } from "@tiptap/pm/model"; +import { z } from "zod/v4"; import { createBlockNoteExtension } from "../../editor/BlockNoteExtension.js"; -import { createBlockConfig, createBlockSpec } from "../../schema/index.js"; +import { + createBlockConfig, + createBlockSpec, + createPropSchemaFromZod, +} from "../../schema/index.js"; import { lazyShikiPlugin } from "./shiki.js"; -import { DOMParser } from "@tiptap/pm/model"; export type CodeBlockOptions = { /** @@ -57,11 +62,11 @@ export const createCodeBlockConfig = createBlockConfig( ({ defaultLanguage = "text" }: CodeBlockOptions) => ({ type: "codeBlock" as const, - propSchema: { - language: { - default: defaultLanguage, - }, - }, + propSchema: createPropSchemaFromZod( + z.object({ + language: z.string().default(defaultLanguage), + }), + ), content: "inline", }) as const, ); @@ -166,6 +171,7 @@ export const createCodeBlockSpec = createBlockSpec( contentDOM: code, }; }, + runsBefore: [], }), (options) => { return [ diff --git a/packages/core/src/blocks/Divider/block.ts b/packages/core/src/blocks/Divider/block.ts index 3de2211d3f..cb8c5a3799 100644 --- a/packages/core/src/blocks/Divider/block.ts +++ b/packages/core/src/blocks/Divider/block.ts @@ -1,5 +1,10 @@ +import { z } from "zod/v4"; import { createBlockNoteExtension } from "../../editor/BlockNoteExtension.js"; -import { createBlockConfig, createBlockSpec } from "../../schema/index.js"; +import { + createBlockConfig, + createBlockSpec, + createPropSchemaFromZod, +} from "../../schema/index.js"; export type DividerBlockConfig = ReturnType; @@ -7,7 +12,7 @@ export const createDividerBlockConfig = createBlockConfig( () => ({ type: "divider" as const, - propSchema: {}, + propSchema: createPropSchemaFromZod(z.object({})), content: "none", }) as const, ); @@ -32,6 +37,7 @@ export const createDividerBlockSpec = createBlockSpec( dom, }; }, + runsBefore: [], }, [ createBlockNoteExtension({ diff --git a/packages/core/src/blocks/File/block.ts b/packages/core/src/blocks/File/block.ts index a506cc45a3..1bdfbf52e8 100644 --- a/packages/core/src/blocks/File/block.ts +++ b/packages/core/src/blocks/File/block.ts @@ -1,5 +1,13 @@ -import { createBlockConfig, createBlockSpec } from "../../schema/index.js"; -import { defaultProps, parseDefaultProps } from "../defaultProps.js"; +import { + createBlockConfig, + createBlockSpec, + createPropSchemaFromZod, +} from "../../schema/index.js"; +import { + baseFileZodPropSchema, + optionalFileZodPropSchema, +} from "../defaultFileProps.js"; +import { defaultZodPropSchema, parseDefaultProps } from "../defaultProps.js"; import { parseEmbedElement } from "./helpers/parse/parseEmbedElement.js"; import { parseFigureElement } from "./helpers/parse/parseFigureElement.js"; import { createFileBlockWrapper } from "./helpers/render/createFileBlockWrapper.js"; @@ -7,25 +15,22 @@ import { createLinkWithCaption } from "./helpers/toExternalHTML/createLinkWithCa export type FileBlockConfig = ReturnType; +const fileZodPropSchema = defaultZodPropSchema + .pick({ + backgroundColor: true, + }) + .extend({ + ...baseFileZodPropSchema.shape, + ...optionalFileZodPropSchema.pick({ + url: true, + }).shape, + }); + export const createFileBlockConfig = createBlockConfig( () => ({ type: "file" as const, - propSchema: { - backgroundColor: defaultProps.backgroundColor, - // File name. - name: { - default: "" as const, - }, - // File url. - url: { - default: "" as const, - }, - // File caption. - caption: { - default: "" as const, - }, - }, + propSchema: createPropSchemaFromZod(fileZodPropSchema), content: "none" as const, }) as const, ); @@ -95,4 +100,5 @@ export const createFileBlockSpec = createBlockSpec(createFileBlockConfig, { dom: fileSrcLink, }; }, + runsBefore: [], }); diff --git a/packages/core/src/blocks/File/helpers/render/createAddFileButton.ts b/packages/core/src/blocks/File/helpers/render/createAddFileButton.ts index 227856b4ac..f322f2614d 100644 --- a/packages/core/src/blocks/File/helpers/render/createAddFileButton.ts +++ b/packages/core/src/blocks/File/helpers/render/createAddFileButton.ts @@ -1,11 +1,8 @@ import type { BlockNoteEditor } from "../../../../editor/BlockNoteEditor.js"; -import { - BlockConfig, - BlockFromConfigNoChildren, -} from "../../../../schema/index.js"; +import type { Block } from "../../../index.js"; export const createAddFileButton = ( - block: BlockFromConfigNoChildren, any, any>, + block: Block, editor: BlockNoteEditor, buttonIcon?: HTMLElement, ) => { diff --git a/packages/core/src/blocks/File/helpers/render/createFileBlockWrapper.ts b/packages/core/src/blocks/File/helpers/render/createFileBlockWrapper.ts index cbb347acff..a97de01b81 100644 --- a/packages/core/src/blocks/File/helpers/render/createFileBlockWrapper.ts +++ b/packages/core/src/blocks/File/helpers/render/createFileBlockWrapper.ts @@ -1,22 +1,24 @@ import type { BlockNoteEditor } from "../../../../editor/BlockNoteEditor.js"; -import { +import type { BlockConfig, - BlockFromConfigNoChildren, + BlockFromConfig, + PropSchemaFromZod, } from "../../../../schema/index.js"; +import { + baseFileZodPropSchema, + optionalFileZodPropSchema, +} from "../../../defaultFileProps.js"; import { createAddFileButton } from "./createAddFileButton.js"; import { createFileNameWithIcon } from "./createFileNameWithIcon.js"; +const requiredZodPropSchema = baseFileZodPropSchema.extend({ + ...optionalFileZodPropSchema.pick({ url: true }).shape, +}); export const createFileBlockWrapper = ( - block: BlockFromConfigNoChildren< + block: BlockFromConfig< BlockConfig< string, - { - backgroundColor: { default: "default" }; - name: { default: "" }; - url: { default: "" }; - caption: { default: "" }; - showPreview?: { default: true }; - }, + PropSchemaFromZod, "none" >, any, @@ -58,7 +60,7 @@ export const createFileBlockWrapper = ( const ret: { dom: HTMLElement; destroy?: () => void } = { dom: wrapper }; // Show the file preview, or the file name and icon. - if (block.props.showPreview === false || !element) { + if ((block.props as any).showPreview === false || !element) { // Show file name and icon. const fileNameWithIcon = createFileNameWithIcon(block); wrapper.appendChild(fileNameWithIcon.dom); diff --git a/packages/core/src/blocks/File/helpers/render/createFileNameWithIcon.ts b/packages/core/src/blocks/File/helpers/render/createFileNameWithIcon.ts index 05ba0d6281..c9a4f8ff7c 100644 --- a/packages/core/src/blocks/File/helpers/render/createFileNameWithIcon.ts +++ b/packages/core/src/blocks/File/helpers/render/createFileNameWithIcon.ts @@ -1,17 +1,17 @@ import { BlockConfig, - BlockFromConfigNoChildren, + BlockFromConfig, + PropSchemaFromZod, } from "../../../../schema/index.js"; +import { baseFileZodPropSchema } from "../../../defaultFileProps.js"; export const FILE_ICON_SVG = ``; export const createFileNameWithIcon = ( - block: BlockFromConfigNoChildren< + block: BlockFromConfig< BlockConfig< string, - { - name: { default: "" }; - }, + PropSchemaFromZod, "none" >, any, diff --git a/packages/core/src/blocks/File/helpers/render/createResizableFileBlockWrapper.ts b/packages/core/src/blocks/File/helpers/render/createResizableFileBlockWrapper.ts index 0ee0a18394..4a16a03280 100644 --- a/packages/core/src/blocks/File/helpers/render/createResizableFileBlockWrapper.ts +++ b/packages/core/src/blocks/File/helpers/render/createResizableFileBlockWrapper.ts @@ -1,23 +1,28 @@ import type { BlockNoteEditor } from "../../../../editor/BlockNoteEditor.js"; import { BlockConfig, - BlockFromConfigNoChildren, + BlockFromConfig, + PropSchemaFromZod, } from "../../../../schema/index.js"; +import { + baseFileZodPropSchema, + optionalFileZodPropSchema, +} from "../../../defaultFileProps.js"; import { createFileBlockWrapper } from "./createFileBlockWrapper.js"; +const requiredZodPropSchema = baseFileZodPropSchema.extend({ + ...optionalFileZodPropSchema.pick({ + url: true, + previewWidth: true, + showPreview: true, + }).shape, +}); + export const createResizableFileBlockWrapper = ( - block: BlockFromConfigNoChildren< + block: BlockFromConfig< BlockConfig< string, - { - backgroundColor: { default: "default" }; - name: { default: "" }; - url: { default: "" }; - caption: { default: "" }; - showPreview?: { default: true }; - previewWidth?: { default: number }; - textAlignment?: { default: "left" }; - }, + PropSchemaFromZod, "none" >, any, @@ -69,7 +74,7 @@ export const createResizableFileBlockWrapper = ( initialClientX: number; } | undefined; - let width = block.props.previewWidth! as number; + let width = block.props.previewWidth; // Updates the element width with an updated width depending on the cursor X // offset from when the resize began, and which resize handle is being used. @@ -92,7 +97,7 @@ export const createResizableFileBlockWrapper = ( const clientX = "touches" in event ? event.touches[0].clientX : event.clientX; - if (block.props.textAlignment === "center") { + if ((block.props as any).textAlignment === "center") { if (resizeParams.handleUsed === "left") { newWidth = resizeParams.initialWidth + diff --git a/packages/core/src/blocks/Heading/block.ts b/packages/core/src/blocks/Heading/block.ts index 7181298d1f..85b7b9a85b 100644 --- a/packages/core/src/blocks/Heading/block.ts +++ b/packages/core/src/blocks/Heading/block.ts @@ -1,8 +1,13 @@ -import { createBlockConfig, createBlockSpec } from "../../schema/index.js"; +import { z } from "zod/v4"; import { createBlockNoteExtension } from "../../editor/BlockNoteExtension.js"; +import { + createBlockConfig, + createBlockSpec, + createPropSchemaFromZod, +} from "../../schema/index.js"; import { addDefaultPropsExternalHTML, - defaultProps, + defaultZodPropSchema, parseDefaultProps, } from "../defaultProps.js"; import { createToggleWrapper } from "../ToggleWrapper/createToggleWrapper.js"; @@ -26,13 +31,16 @@ export const createHeadingBlockConfig = createBlockConfig( }: HeadingOptions = {}) => ({ type: "heading" as const, - propSchema: { - ...defaultProps, - level: { default: defaultLevel, values: levels }, - ...(allowToggleHeadings - ? { isToggleable: { default: false, optional: true } as const } - : {}), - }, + propSchema: createPropSchemaFromZod( + defaultZodPropSchema.extend({ + level: z + .union(levels.map((level) => z.literal(level))) + .default(defaultLevel), + ...(allowToggleHeadings + ? { isToggleable: z.boolean().default(false) } + : {}), + }), + ), content: "inline", }) as const, ); @@ -95,6 +103,7 @@ export const createHeadingBlockSpec = createBlockSpec( contentDOM: dom, }; }, + runsBefore: [], }), ({ levels = HEADING_LEVELS }: HeadingOptions = {}) => [ createBlockNoteExtension({ diff --git a/packages/core/src/blocks/Image/block.ts b/packages/core/src/blocks/Image/block.ts index 83138c8842..c66968411d 100644 --- a/packages/core/src/blocks/Image/block.ts +++ b/packages/core/src/blocks/Image/block.ts @@ -3,8 +3,13 @@ import { BlockFromConfig, createBlockConfig, createBlockSpec, + createPropSchemaFromZod, } from "../../schema/index.js"; -import { defaultProps, parseDefaultProps } from "../defaultProps.js"; +import { + baseFileZodPropSchema, + optionalFileZodPropSchema, +} from "../defaultFileProps.js"; +import { defaultZodPropSchema, parseDefaultProps } from "../defaultProps.js"; import { parseFigureElement } from "../File/helpers/parse/parseFigureElement.js"; import { createResizableFileBlockWrapper } from "../File/helpers/render/createResizableFileBlockWrapper.js"; import { createFigureWithCaption } from "../File/helpers/toExternalHTML/createFigureWithCaption.js"; @@ -20,35 +25,25 @@ export interface ImageOptions { export type ImageBlockConfig = ReturnType; +const imageZodPropSchema = defaultZodPropSchema + .pick({ + textAlignment: true, + backgroundColor: true, + }) + .extend({ + ...baseFileZodPropSchema.shape, + ...optionalFileZodPropSchema.pick({ + url: true, + showPreview: true, + previewWidth: true, + }).shape, + }); + export const createImageBlockConfig = createBlockConfig( (_ctx: ImageOptions = {}) => ({ type: "image" as const, - propSchema: { - textAlignment: defaultProps.textAlignment, - backgroundColor: defaultProps.backgroundColor, - // File name. - name: { - default: "" as const, - }, - // File url. - url: { - default: "" as const, - }, - // File caption. - caption: { - default: "" as const, - }, - - showPreview: { - default: true, - }, - // File preview width in px. - previewWidth: { - default: undefined, - type: "number" as const, - }, - }, + propSchema: createPropSchemaFromZod(imageZodPropSchema), content: "none" as const, }) as const, ); diff --git a/packages/core/src/blocks/ListItem/BulletListItem/block.ts b/packages/core/src/blocks/ListItem/BulletListItem/block.ts index 029538d4a3..71d340dc71 100644 --- a/packages/core/src/blocks/ListItem/BulletListItem/block.ts +++ b/packages/core/src/blocks/ListItem/BulletListItem/block.ts @@ -3,7 +3,7 @@ import { createBlockNoteExtension } from "../../../editor/BlockNoteExtension.js" import { createBlockConfig, createBlockSpec } from "../../../schema/index.js"; import { addDefaultPropsExternalHTML, - defaultProps, + defaultPropSchema, parseDefaultProps, } from "../../defaultProps.js"; import { handleEnter } from "../../utils/listItemEnterHandler.js"; @@ -17,9 +17,7 @@ export const createBulletListItemBlockConfig = createBlockConfig( () => ({ type: "bulletListItem" as const, - propSchema: { - ...defaultProps, - }, + propSchema: defaultPropSchema, content: "inline", }) as const, ); @@ -76,6 +74,7 @@ export const createBulletListItemBlockSpec = createBlockSpec( contentDOM: p, }; }, + runsBefore: [], }, [ createBlockNoteExtension({ diff --git a/packages/core/src/blocks/ListItem/CheckListItem/block.ts b/packages/core/src/blocks/ListItem/CheckListItem/block.ts index 7887144b1b..c1d71a0697 100644 --- a/packages/core/src/blocks/ListItem/CheckListItem/block.ts +++ b/packages/core/src/blocks/ListItem/CheckListItem/block.ts @@ -1,8 +1,13 @@ +import { z } from "zod/v4"; import { createBlockNoteExtension } from "../../../editor/BlockNoteExtension.js"; -import { createBlockConfig, createBlockSpec } from "../../../schema/index.js"; +import { + createBlockConfig, + createBlockSpec, + createPropSchemaFromZod, +} from "../../../schema/index.js"; import { addDefaultPropsExternalHTML, - defaultProps, + defaultZodPropSchema, parseDefaultProps, } from "../../defaultProps.js"; import { handleEnter } from "../../utils/listItemEnterHandler.js"; @@ -16,10 +21,11 @@ export const createCheckListItemConfig = createBlockConfig( () => ({ type: "checkListItem" as const, - propSchema: { - ...defaultProps, - checked: { default: false, type: "boolean" }, - }, + propSchema: createPropSchemaFromZod( + defaultZodPropSchema.extend({ + checked: z.boolean().default(false), + }), + ), content: "inline", }) as const, ); diff --git a/packages/core/src/blocks/ListItem/NumberedListItem/block.ts b/packages/core/src/blocks/ListItem/NumberedListItem/block.ts index 70f1bcaa90..c6fc4e3416 100644 --- a/packages/core/src/blocks/ListItem/NumberedListItem/block.ts +++ b/packages/core/src/blocks/ListItem/NumberedListItem/block.ts @@ -1,9 +1,14 @@ +import { z } from "zod/v4"; import { getBlockInfoFromSelection } from "../../../api/getBlockInfoFromPos.js"; import { createBlockNoteExtension } from "../../../editor/BlockNoteExtension.js"; -import { createBlockConfig, createBlockSpec } from "../../../schema/index.js"; +import { + createBlockConfig, + createBlockSpec, + createPropSchemaFromZod, +} from "../../../schema/index.js"; import { addDefaultPropsExternalHTML, - defaultProps, + defaultZodPropSchema, parseDefaultProps, } from "../../defaultProps.js"; import { handleEnter } from "../../utils/listItemEnterHandler.js"; @@ -18,10 +23,11 @@ export const createNumberedListItemBlockConfig = createBlockConfig( () => ({ type: "numberedListItem" as const, - propSchema: { - ...defaultProps, - start: { default: undefined, type: "number" } as const, - }, + propSchema: createPropSchemaFromZod( + defaultZodPropSchema.extend({ + start: z.number().optional(), + }), + ), content: "inline", }) as const, ); @@ -89,6 +95,7 @@ export const createNumberedListItemBlockSpec = createBlockSpec( contentDOM: p, }; }, + runsBefore: [], }, [ createBlockNoteExtension({ diff --git a/packages/core/src/blocks/ListItem/ToggleListItem/block.ts b/packages/core/src/blocks/ListItem/ToggleListItem/block.ts index e70da1b4b9..08f06701c0 100644 --- a/packages/core/src/blocks/ListItem/ToggleListItem/block.ts +++ b/packages/core/src/blocks/ListItem/ToggleListItem/block.ts @@ -2,7 +2,7 @@ import { createBlockNoteExtension } from "../../../editor/BlockNoteExtension.js" import { createBlockConfig, createBlockSpec } from "../../../schema/index.js"; import { addDefaultPropsExternalHTML, - defaultProps, + defaultPropSchema, } from "../../defaultProps.js"; import { createToggleWrapper } from "../../ToggleWrapper/createToggleWrapper.js"; import { handleEnter } from "../../utils/listItemEnterHandler.js"; @@ -15,9 +15,7 @@ export const createToggleListItemBlockConfig = createBlockConfig( () => ({ type: "toggleListItem" as const, - propSchema: { - ...defaultProps, - }, + propSchema: defaultPropSchema, content: "inline" as const, }) as const, ); @@ -48,6 +46,7 @@ export const createToggleListItemBlockSpec = createBlockSpec( contentDOM: p, }; }, + runsBefore: [], }, [ createBlockNoteExtension({ diff --git a/packages/core/src/blocks/PageBreak/block.ts b/packages/core/src/blocks/PageBreak/block.ts index 49d7d2bd94..6e45337d02 100644 --- a/packages/core/src/blocks/PageBreak/block.ts +++ b/packages/core/src/blocks/PageBreak/block.ts @@ -1,11 +1,13 @@ +import { z } from "zod/v4"; import { BlockSchema, createBlockConfig, createBlockSpec, + createPropSchemaFromZod, + CustomBlockNoteSchema, InlineContentSchema, StyleSchema, } from "../../schema/index.js"; -import { BlockNoteSchema } from "../BlockNoteSchema.js"; export type PageBreakBlockConfig = ReturnType< typeof createPageBreakBlockConfig @@ -15,7 +17,7 @@ export const createPageBreakBlockConfig = createBlockConfig( () => ({ type: "pageBreak" as const, - propSchema: {}, + propSchema: createPropSchemaFromZod(z.object({})), content: "none", }) as const, ); @@ -51,6 +53,7 @@ export const createPageBreakBlockSpec = createBlockSpec( dom: pageBreak, }; }, + runsBefore: [], }, ); @@ -62,7 +65,7 @@ export const withPageBreak = < I extends InlineContentSchema, S extends StyleSchema, >( - schema: BlockNoteSchema, + schema: CustomBlockNoteSchema, ) => { return schema.extend({ blockSpecs: { diff --git a/packages/core/src/blocks/Paragraph/block.ts b/packages/core/src/blocks/Paragraph/block.ts index 09a9cc9ddb..466b7bed9f 100644 --- a/packages/core/src/blocks/Paragraph/block.ts +++ b/packages/core/src/blocks/Paragraph/block.ts @@ -2,7 +2,7 @@ import { createBlockNoteExtension } from "../../editor/BlockNoteExtension.js"; import { createBlockConfig, createBlockSpec } from "../../schema/index.js"; import { addDefaultPropsExternalHTML, - defaultProps, + defaultPropSchema, parseDefaultProps, } from "../defaultProps.js"; @@ -14,13 +14,13 @@ export const createParagraphBlockConfig = createBlockConfig( () => ({ type: "paragraph" as const, - propSchema: defaultProps, + propSchema: defaultPropSchema, content: "inline" as const, }) as const, ); export const createParagraphBlockSpec = createBlockSpec( - createParagraphBlockConfig, + createParagraphBlockConfig(), { meta: { isolating: false, diff --git a/packages/core/src/blocks/Quote/block.ts b/packages/core/src/blocks/Quote/block.ts index a0f6d6cb4a..c7dcf4348c 100644 --- a/packages/core/src/blocks/Quote/block.ts +++ b/packages/core/src/blocks/Quote/block.ts @@ -1,8 +1,12 @@ import { createBlockNoteExtension } from "../../editor/BlockNoteExtension.js"; -import { createBlockConfig, createBlockSpec } from "../../schema/index.js"; +import { + createBlockConfig, + createBlockSpec, + createPropSchemaFromZod, +} from "../../schema/index.js"; import { addDefaultPropsExternalHTML, - defaultProps, + defaultZodPropSchema, parseDefaultProps, } from "../defaultProps.js"; @@ -12,10 +16,12 @@ export const createQuoteBlockConfig = createBlockConfig( () => ({ type: "quote" as const, - propSchema: { - backgroundColor: defaultProps.backgroundColor, - textColor: defaultProps.textColor, - }, + propSchema: createPropSchemaFromZod( + defaultZodPropSchema.pick({ + backgroundColor: true, + textColor: true, + }), + ), content: "inline" as const, }) as const, ); @@ -52,6 +58,7 @@ export const createQuoteBlockSpec = createBlockSpec( contentDOM: quote, }; }, + runsBefore: [], }, [ createBlockNoteExtension({ diff --git a/packages/core/src/blocks/Table/block.ts b/packages/core/src/blocks/Table/block.ts index d101c5144f..4e314a1aac 100644 --- a/packages/core/src/blocks/Table/block.ts +++ b/packages/core/src/blocks/Table/block.ts @@ -1,4 +1,4 @@ -import { Node, mergeAttributes } from "@tiptap/core"; +import { mergeAttributes, Node } from "@tiptap/core"; import { DOMParser, Fragment, Node as PMNode, Schema } from "prosemirror-model"; import { CellSelection, TableView } from "prosemirror-tables"; import { NodeView } from "prosemirror-view"; @@ -6,16 +6,19 @@ import { createBlockNoteExtension } from "../../editor/BlockNoteExtension.js"; import { BlockConfig, createBlockSpecFromTiptapNode, + createPropSchemaFromZod, TableContent, } from "../../schema/index.js"; import { mergeCSSClasses } from "../../util/browser.js"; import { createDefaultBlockDOMOutputSpec } from "../defaultBlockHelpers.js"; -import { defaultProps } from "../defaultProps.js"; +import { defaultZodPropSchema } from "../defaultProps.js"; import { EMPTY_CELL_WIDTH, TableExtension } from "./TableExtension.js"; -export const tablePropSchema = { - textColor: defaultProps.textColor, -}; +export const tableZodPropSchema = defaultZodPropSchema.pick({ + textColor: true, +}); + +const tablePropSchema = createPropSchemaFromZod(tableZodPropSchema); const TiptapTableHeader = Node.create<{ HTMLAttributes: Record; @@ -372,11 +375,7 @@ function parseTableContent(node: HTMLElement, schema: Schema) { export type TableBlockConfig = BlockConfig< "table", - { - textColor: { - default: "default"; - }; - }, + typeof tablePropSchema, "table" >; diff --git a/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts b/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts index 1c80d4346e..b0efc42889 100644 --- a/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts +++ b/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts @@ -28,7 +28,11 @@ export const createToggleWrapper = ( ignoreMutation?: (mutation: ViewMutationRecord) => boolean; destroy?: () => void; } => { - if ("isToggleable" in block.props && !block.props.isToggleable) { + // TODO + if ( + "isToggleable" in (block.props as any) && + !(block.props as any).isToggleable + ) { return { dom: renderedElement, }; diff --git a/packages/core/src/blocks/Video/block.ts b/packages/core/src/blocks/Video/block.ts index 026b333ba5..ae6f7164a1 100644 --- a/packages/core/src/blocks/Video/block.ts +++ b/packages/core/src/blocks/Video/block.ts @@ -1,5 +1,14 @@ -import { createBlockConfig, createBlockSpec } from "../../schema/index.js"; -import { defaultProps, parseDefaultProps } from "../defaultProps.js"; +import { + createBlockConfig, + createBlockSpec, + createPropSchemaFromZod, +} from "../../schema/index.js"; +import { + baseFileZodPropSchema, + optionalFileZodPropSchema, +} from "../defaultFileProps.js"; + +import { defaultZodPropSchema, parseDefaultProps } from "../defaultProps.js"; import { parseFigureElement } from "../File/helpers/parse/parseFigureElement.js"; import { createResizableFileBlockWrapper } from "../File/helpers/render/createResizableFileBlockWrapper.js"; import { createFigureWithCaption } from "../File/helpers/toExternalHTML/createFigureWithCaption.js"; @@ -15,18 +24,24 @@ export interface VideoOptions { export type VideoBlockConfig = ReturnType; +const videoZodPropSchema = defaultZodPropSchema + .pick({ + textAlignment: true, + backgroundColor: true, + }) + .extend({ + ...baseFileZodPropSchema.shape, + ...optionalFileZodPropSchema.pick({ + url: true, + showPreview: true, + previewWidth: true, + }).shape, + }); + export const createVideoBlockConfig = createBlockConfig( (_ctx: VideoOptions) => ({ type: "video" as const, - propSchema: { - textAlignment: defaultProps.textAlignment, - backgroundColor: defaultProps.backgroundColor, - name: { default: "" as const }, - url: { default: "" as const }, - caption: { default: "" as const }, - showPreview: { default: true }, - previewWidth: { default: undefined, type: "number" as const }, - }, + propSchema: createPropSchemaFromZod(videoZodPropSchema), content: "none" as const, }), ); @@ -92,7 +107,9 @@ export const createVideoBlockSpec = createBlockSpec( video.controls = true; video.contentEditable = "false"; video.draggable = false; - video.width = block.props.previewWidth; + if (block.props.previewWidth) { + video.width = block.props.previewWidth; + } videoWrapper.appendChild(video); return createResizableFileBlockWrapper( diff --git a/packages/core/src/blocks/defaultBlockHelpers.ts b/packages/core/src/blocks/defaultBlockHelpers.ts index ccadf93e11..d4c5b0590f 100644 --- a/packages/core/src/blocks/defaultBlockHelpers.ts +++ b/packages/core/src/blocks/defaultBlockHelpers.ts @@ -1,12 +1,12 @@ import { blockToNode } from "../api/nodeConversions/blockToNode.js"; import type { BlockNoteEditor } from "../editor/BlockNoteEditor.js"; import type { - BlockNoDefaults, BlockSchema, InlineContentSchema, StyleSchema, } from "../schema/index.js"; import { mergeCSSClasses } from "../util/browser.js"; +import type { Block } from "./index.js"; // Function that creates a ProseMirror `DOMOutputSpec` for a default block. // Since all default blocks have the same structure (`blockContent` div with a @@ -61,7 +61,7 @@ export const defaultBlockToHTML = < I extends InlineContentSchema, S extends StyleSchema, >( - block: BlockNoDefaults, + block: Block, editor: BlockNoteEditor, ): { dom: HTMLElement; diff --git a/packages/core/src/blocks/defaultBlockTypeGuards.ts b/packages/core/src/blocks/defaultBlockTypeGuards.ts index e9a4f8e9b5..4a8b2190ca 100644 --- a/packages/core/src/blocks/defaultBlockTypeGuards.ts +++ b/packages/core/src/blocks/defaultBlockTypeGuards.ts @@ -1,35 +1,19 @@ +import { Selection } from "prosemirror-state"; import { CellSelection } from "prosemirror-tables"; +import * as z from "zod/v4/core"; import type { BlockNoteEditor } from "../editor/BlockNoteEditor.js"; -import { BlockConfig, PropSchema, PropSpec } from "../schema/index.js"; -import { Block } from "./defaultBlocks.js"; -import { Selection } from "prosemirror-state"; +import { BlockConfig, PropSchema, PropSchemaFromZod } from "../schema/index.js"; +import { Block } from "./index.js"; -export function editorHasBlockWithType< - BType extends string, - Props extends - | PropSchema - | Record - | undefined = undefined, ->( +/** + * Check if an editor has a certain block type in it's schema + */ +export function editorHasBlockType( editor: BlockNoteEditor, blockType: BType, - props?: Props, ): editor is BlockNoteEditor< { - [BT in BType]: Props extends PropSchema - ? BlockConfig - : Props extends Record - ? BlockConfig< - BT, - { - [PN in keyof Props]: { - default: undefined; - type: Props[PN]; - values?: any[]; - }; - } - > - : BlockConfig; + [BT in BType]: BlockConfig>; }, any, any @@ -37,123 +21,113 @@ export function editorHasBlockWithType< if (!(blockType in editor.schema.blockSpecs)) { return false; } + return true; +} - if (!props) { - return true; +/** + * Check if an editor has a certain block type in it's schema, and if the members of + * `zodProps` appear in the block's prop schema with _exactly_ the same type + */ +export function editorHasBlockTypeAndZodProps< + BType extends string, + Props extends z.$ZodObject, +>( + editor: BlockNoteEditor, + blockType: BType, + zodProps: Props, +): editor is BlockNoteEditor< + { + [BT in BType]: BlockConfig>; + }, + any, + any +> { + if (!(blockType in editor.schema.blockSpecs)) { + return false; } - for (const [propName, propSpec] of Object.entries(props)) { - if (!(propName in editor.schema.blockSpecs[blockType].config.propSchema)) { - return false; - } - - if (typeof propSpec === "string") { - if ( - editor.schema.blockSpecs[blockType].config.propSchema[propName] - .default !== undefined && - typeof editor.schema.blockSpecs[blockType].config.propSchema[propName] - .default !== propSpec - ) { - return false; - } - - if ( - editor.schema.blockSpecs[blockType].config.propSchema[propName].type !== - undefined && - editor.schema.blockSpecs[blockType].config.propSchema[propName].type !== - propSpec - ) { - return false; - } - } else { - if ( - editor.schema.blockSpecs[blockType].config.propSchema[propName] - .default !== propSpec.default - ) { - return false; - } + const editorProps: PropSchema = + editor.schema.blockSpecs[blockType].config.propSchema; - if ( - editor.schema.blockSpecs[blockType].config.propSchema[propName] - .default === undefined && - propSpec.default === undefined - ) { - if ( - editor.schema.blockSpecs[blockType].config.propSchema[propName] - .type !== propSpec.type - ) { - return false; - } - } - - if ( - typeof editor.schema.blockSpecs[blockType].config.propSchema[propName] - .values !== typeof propSpec.values - ) { - return false; - } + // make sure every prop in the requested prop appears in the editor schema block props + return Object.entries(zodProps._zod.def.shape).every(([key, value]) => { + // we do a JSON Stringify check as Zod doesn't expose + // equality / assignability checks + return ( + JSON.stringify(value._zod.def) === + JSON.stringify(editorProps._zodSource._zod.def.shape[key]?._zod.def) + ); + }); +} - if ( - typeof editor.schema.blockSpecs[blockType].config.propSchema[propName] - .values === "object" && - typeof propSpec.values === "object" - ) { - for (const value of propSpec.values) { - if ( - !editor.schema.blockSpecs[blockType].config.propSchema[ - propName - ].values.includes(value) - ) { - return false; - } - } - } - } +/** + * Check if an editor has a certain block type in it's schema, + * and if `props` would be valid for a block of this type + */ +export function editorHasBlockTypeAndPropsAreValid< + BType extends string, + Props extends object, +>( + editor: BlockNoteEditor, + blockType: BType, + props: Props, +): editor is BlockNoteEditor< + { + [BT in BType]: BlockConfig>; + }, + any, + any +> { + if (!(blockType in editor.schema.blockSpecs)) { + return false; } - return true; + const editorProps: PropSchema = + editor.schema.blockSpecs[blockType].config.propSchema; + + return z.safeParse(editorProps._zodSource, props).success; } -export function blockHasType< +/** + * Check if a block has a certain type, and the members of `zodProps` appear in the block's prop schema with _exactly_ the same type + */ +export function blockHasZodProps< BType extends string, - Props extends - | PropSchema - | Record - | undefined = undefined, + Props extends z.$ZodObject, >( block: Block, editor: BlockNoteEditor, - blockType: BType, - props?: Props, + zodProps: Props, ): block is Block< { - [BT in BType]: Props extends PropSchema - ? BlockConfig - : Props extends Record - ? BlockConfig< - BT, - { - [PN in keyof Props]: PropSpec< - Props[PN] extends "boolean" - ? boolean - : Props[PN] extends "number" - ? number - : Props[PN] extends "string" - ? string - : never - >; - } - > - : BlockConfig; + [BT in BType]: BlockConfig>; }, any, any > { + return editorHasBlockTypeAndZodProps(editor, block.type, zodProps); +} + +/** + * Check if a block is a file block + */ +export function isFileBlock( + editor: BlockNoteEditor, + blockType: string, +) { + if (!(blockType in editor.schema.blockSpecs)) { + throw new Error(`Block type ${blockType} not found`); + } + return ( - editorHasBlockWithType(editor, blockType, props) && block.type === blockType + editor.schema.blockSpecs[blockType].implementation.meta?.fileBlockAccept !== + undefined ); } +/** + * Check if a selection is a table cell selection + */ export function isTableCellSelection( selection: Selection, ): selection is CellSelection { diff --git a/packages/core/src/blocks/defaultBlocks.ts b/packages/core/src/blocks/defaultBlocks.ts index 459b987f00..5d7453ff55 100644 --- a/packages/core/src/blocks/defaultBlocks.ts +++ b/packages/core/src/blocks/defaultBlocks.ts @@ -1,3 +1,4 @@ +import type { Mark } from "@tiptap/core"; import Bold from "@tiptap/extension-bold"; import Code from "@tiptap/extension-code"; import Italic from "@tiptap/extension-italic"; @@ -7,15 +8,15 @@ import { COLORS_DEFAULT } from "../editor/defaultColors.js"; import { BlockNoDefaults, BlockSchema, + createStyleSpec, + createStyleSpecFromTipTapMark, + getInlineContentSchemaFromSpecs, + getStyleSchemaFromSpecs, InlineContentSchema, InlineContentSpecs, PartialBlockNoDefaults, StyleSchema, StyleSpecs, - createStyleSpec, - createStyleSpecFromTipTapMark, - getInlineContentSchemaFromSpecs, - getStyleSchemaFromSpecs, } from "../schema/index.js"; import { createAudioBlockSpec, @@ -31,11 +32,12 @@ import { createQuoteBlockSpec, createToggleListItemBlockSpec, createVideoBlockSpec, - defaultProps, + defaultZodPropSchema, } from "./index.js"; import { createTableBlockSpec } from "./Table/block.js"; export const defaultBlockSpecs = { + // To speed up TS compilation, we re-use the type assertions to avoid TS needing to compare types all the time audio: createAudioBlockSpec(), bulletListItem: createBulletListItemBlockSpec(), checkListItem: createCheckListItemBlockSpec(), @@ -75,7 +77,10 @@ const TextColor = createStyleSpec( }, toExternalHTML: (value) => { const span = document.createElement("span"); - if (value !== defaultProps.textColor.default) { + // const defaultValue = defaultProps.parse({}).textColor; + const defaultValue = + defaultZodPropSchema.shape.textColor.def.defaultValue; + if (value !== defaultValue) { span.style.color = value in COLORS_DEFAULT ? COLORS_DEFAULT[value].text : value; } @@ -111,7 +116,11 @@ const BackgroundColor = createStyleSpec( }, toExternalHTML: (value) => { const span = document.createElement("span"); - if (value !== defaultProps.backgroundColor.default) { + // TODO + // const defaultValues = defaultProps.parse({}); + const defaultValue = + defaultZodPropSchema.shape.backgroundColor.def.defaultValue; + if (value !== defaultValue) { span.style.backgroundColor = value in COLORS_DEFAULT ? COLORS_DEFAULT[value].background : value; } @@ -132,11 +141,26 @@ const BackgroundColor = createStyleSpec( ); export const defaultStyleSpecs = { - bold: createStyleSpecFromTipTapMark(Bold, "boolean"), - italic: createStyleSpecFromTipTapMark(Italic, "boolean"), - underline: createStyleSpecFromTipTapMark(Underline, "boolean"), - strike: createStyleSpecFromTipTapMark(Strike, "boolean"), - code: createStyleSpecFromTipTapMark(Code, "boolean"), + bold: createStyleSpecFromTipTapMark( + Bold as Mark & { name: "bold" }, + "boolean", + ), + italic: createStyleSpecFromTipTapMark( + Italic as Mark & { name: "italic" }, + "boolean", + ), + underline: createStyleSpecFromTipTapMark( + Underline as Mark & { name: "underline" }, + "boolean", + ), + strike: createStyleSpecFromTipTapMark( + Strike as Mark & { name: "strike" }, + "boolean", + ), + code: createStyleSpecFromTipTapMark( + Code as Mark & { name: "code" }, + "boolean", + ), textColor: TextColor, backgroundColor: BackgroundColor, } satisfies StyleSpecs; diff --git a/packages/core/src/blocks/defaultFileProps.ts b/packages/core/src/blocks/defaultFileProps.ts new file mode 100644 index 0000000000..596d6b5c51 --- /dev/null +++ b/packages/core/src/blocks/defaultFileProps.ts @@ -0,0 +1,18 @@ +import * as z from "zod/v4"; + +export const baseFileZodPropSchema = z.object({ + caption: z.string().default(""), // TODO: "" as defaults? + name: z.string().default(""), +}); + +export const optionalFileZodPropSchema = z.object({ + // URL is optional, as we also want to accept files with no URL, but for example ids + // (ids can be used for files that are resolved on the backend) + url: z.string().default(""), + // Whether to show the file preview or the name only. + // This is useful for some file blocks, but not all + // (e.g.: not relevant for default "file" block which doesn;'t show previews) + showPreview: z.boolean().default(true), + // File preview width in px. + previewWidth: z.number().optional(), +}); diff --git a/packages/core/src/blocks/defaultProps.ts b/packages/core/src/blocks/defaultProps.ts index 5d55d21d35..384a5cc73d 100644 --- a/packages/core/src/blocks/defaultProps.ts +++ b/packages/core/src/blocks/defaultProps.ts @@ -1,28 +1,26 @@ import { Attribute } from "@tiptap/core"; +import { z } from "zod/v4"; import { COLORS_DEFAULT } from "../editor/defaultColors.js"; -import type { Props, PropSchema } from "../schema/index.js"; +import { createPropSchemaFromZod, type Props } from "../schema/index.js"; // TODO: this system should probably be moved / refactored. // The dependency from schema on this file doesn't make sense -export const defaultProps = { - backgroundColor: { - default: "default" as const, - }, - textColor: { - default: "default" as const, - }, - textAlignment: { - default: "left" as const, - values: ["left", "center", "right", "justify"] as const, - }, -} satisfies PropSchema; +export const defaultZodPropSchema = z.object({ + backgroundColor: z.string().default("default"), + textColor: z.string().default("default"), + textAlignment: z.enum(["left", "center", "right", "justify"]).default("left"), +}); + +export const defaultPropSchema = createPropSchemaFromZod(defaultZodPropSchema); +export type DefaultPropSchema = Props; -export type DefaultProps = Props; +const defaultValues = defaultZodPropSchema.parse({}); +// TODO: review below export const parseDefaultProps = (element: HTMLElement) => { - const props: Partial = {}; + const props: Partial = {}; // If the `data-` attribute is found, set the prop to the value, as this most // likely means the parsed element was exported by BlockNote originally. @@ -42,22 +40,26 @@ export const parseDefaultProps = (element: HTMLElement) => { props.textColor = element.style.color; } - props.textAlignment = defaultProps.textAlignment.values.includes( - element.style.textAlign as DefaultProps["textAlignment"], - ) - ? (element.style.textAlign as DefaultProps["textAlignment"]) + props.textAlignment = defaultZodPropSchema.shape.textAlignment._zod.values + .values() + .some( + (value) => + value === + (element.style.textAlign as DefaultPropSchema["textAlignment"]), + ) + ? (element.style.textAlign as DefaultPropSchema["textAlignment"]) : undefined; return props; }; export const addDefaultPropsExternalHTML = ( - props: Partial, + props: Partial, element: HTMLElement, ) => { if ( props.backgroundColor && - props.backgroundColor !== defaultProps.backgroundColor.default + props.backgroundColor !== defaultValues.backgroundColor ) { // The color can be any string. If the string matches one of the default // theme color names, set the theme color. Otherwise, set the color as-is @@ -68,7 +70,7 @@ export const addDefaultPropsExternalHTML = ( : props.backgroundColor; } - if (props.textColor && props.textColor !== defaultProps.textColor.default) { + if (props.textColor && props.textColor !== defaultValues.textColor) { // The color can be any string. If the string matches one of the default // theme color names, set the theme color. Otherwise, set the color as-is // (may be a CSS color name, hex value, RGB value, etc). @@ -80,7 +82,7 @@ export const addDefaultPropsExternalHTML = ( if ( props.textAlignment && - props.textAlignment !== defaultProps.textAlignment.default + props.textAlignment !== defaultValues.textAlignment ) { element.style.textAlign = props.textAlignment; } @@ -89,7 +91,7 @@ export const addDefaultPropsExternalHTML = ( export const getBackgroundColorAttribute = ( attributeName = "backgroundColor", ): Attribute => ({ - default: defaultProps.backgroundColor.default, + default: defaultValues.backgroundColor, parseHTML: (element) => { if (element.hasAttribute("data-background-color")) { return element.getAttribute("data-background-color")!; @@ -99,10 +101,10 @@ export const getBackgroundColorAttribute = ( return element.style.backgroundColor; } - return defaultProps.backgroundColor.default; + return defaultValues.backgroundColor; }, renderHTML: (attributes) => { - if (attributes[attributeName] === defaultProps.backgroundColor.default) { + if (attributes[attributeName] === defaultValues.backgroundColor) { return {}; } @@ -115,7 +117,7 @@ export const getBackgroundColorAttribute = ( export const getTextColorAttribute = ( attributeName = "textColor", ): Attribute => ({ - default: defaultProps.textColor.default, + default: defaultValues.textColor, parseHTML: (element) => { if (element.hasAttribute("data-text-color")) { return element.getAttribute("data-text-color")!; @@ -125,10 +127,10 @@ export const getTextColorAttribute = ( return element.style.color; } - return defaultProps.textColor.default; + return defaultValues.textColor; }, renderHTML: (attributes) => { - if (attributes[attributeName] === defaultProps.textColor.default) { + if (attributes[attributeName] === defaultValues.textColor) { return {}; } @@ -141,7 +143,7 @@ export const getTextColorAttribute = ( export const getTextAlignmentAttribute = ( attributeName = "textAlignment", ): Attribute => ({ - default: defaultProps.textAlignment.default, + default: defaultValues.textAlignment, parseHTML: (element) => { if (element.hasAttribute("data-text-alignment")) { return element.getAttribute("data-text-alignment"); @@ -151,10 +153,10 @@ export const getTextAlignmentAttribute = ( return element.style.textAlign; } - return defaultProps.textAlignment.default; + return defaultValues.textAlignment; }, renderHTML: (attributes) => { - if (attributes[attributeName] === defaultProps.textAlignment.default) { + if (attributes[attributeName] === defaultValues.textAlignment) { return {}; } diff --git a/packages/core/src/blocks/index.ts b/packages/core/src/blocks/index.ts index 56f4c6de3c..92911fae07 100644 --- a/packages/core/src/blocks/index.ts +++ b/packages/core/src/blocks/index.ts @@ -15,13 +15,14 @@ export * from "./Quote/block.js"; export * from "./Table/block.js"; export * from "./Video/block.js"; -export { EMPTY_CELL_HEIGHT, EMPTY_CELL_WIDTH } from "./Table/TableExtension.js"; -export * from "./ToggleWrapper/createToggleWrapper.js"; export * from "./File/helpers/uploadToTmpFilesDotOrg_DEV_ONLY.js"; export * from "./PageBreak/getPageBreakSlashMenuItems.js"; +export { EMPTY_CELL_HEIGHT, EMPTY_CELL_WIDTH } from "./Table/TableExtension.js"; +export * from "./ToggleWrapper/createToggleWrapper.js"; export * from "./BlockNoteSchema.js"; export * from "./defaultBlockHelpers.js"; export * from "./defaultBlocks.js"; export * from "./defaultBlockTypeGuards.js"; +export * from "./defaultFileProps.js"; export * from "./defaultProps.js"; diff --git a/packages/core/src/editor/BlockNoteEditor.ts b/packages/core/src/editor/BlockNoteEditor.ts index 2292cf2fb9..91d4285ccc 100644 --- a/packages/core/src/editor/BlockNoteEditor.ts +++ b/packages/core/src/editor/BlockNoteEditor.ts @@ -14,15 +14,14 @@ import { type Command, type Plugin, type Transaction } from "@tiptap/pm/state"; import { dropCursor } from "prosemirror-dropcursor"; import { Node, Schema } from "prosemirror-model"; import * as Y from "yjs"; - import type { BlocksChanged } from "../api/getBlocksChangedByTransaction.js"; -import { editorHasBlockWithType } from "../blocks/defaultBlockTypeGuards.js"; import { Block, BlockNoteSchema, DefaultBlockSchema, DefaultInlineContentSchema, DefaultStyleSchema, + editorHasBlockType, PartialBlock, } from "../blocks/index.js"; import type { ThreadStore, User } from "../comments/index.js"; @@ -37,18 +36,19 @@ import type { TableHandlesProsemirrorPlugin } from "../extensions/TableHandles/T import { UniqueID } from "../extensions/UniqueID/UniqueID.js"; import type { Dictionary } from "../i18n/dictionary.js"; import { en } from "../i18n/locales/index.js"; -import type { - BlockIdentifier, - BlockNoteDOMAttributes, - BlockSchema, - BlockSpecs, - CustomBlockNoteSchema, - InlineContentSchema, - InlineContentSpecs, - PartialInlineContent, - Styles, - StyleSchema, - StyleSpecs, +import { + partialBlockToBlock, + type BlockIdentifier, + type BlockNoteDOMAttributes, + type BlockSchema, + type BlockSpecs, + type CustomBlockNoteSchema, + type InlineContentSchema, + type InlineContentSpecs, + type PartialInlineContent, + type Styles, + type StyleSchema, + type StyleSpecs, } from "../schema/index.js"; import { mergeCSSClasses } from "../util/browser.js"; import { EventEmitter } from "../util/EventEmitter.js"; @@ -59,13 +59,13 @@ import type { TextCursorPosition } from "./cursorPositionTypes.js"; import { BlockManager, CollaborationManager, - type CollaborationOptions, EventManager, ExportManager, ExtensionManager, SelectionManager, StateManager, StyleManager, + type CollaborationOptions, } from "./managers/index.js"; import type { Selection } from "./selectionTypes.js"; import { transformPasted } from "./transformPasted.js"; @@ -156,7 +156,7 @@ export type BlockNoteEditorOptions< * @remarks `CommentsOptions` */ comments?: { - schema?: BlockNoteSchema; + schema?: CustomBlockNoteSchema; threadStore: ThreadStore; }; @@ -447,7 +447,7 @@ export class BlockNoteEditor< /** * The schema of the editor. The schema defines which Blocks, InlineContent, and Styles are available in the editor. */ - public readonly schema: BlockNoteSchema; + public readonly schema: CustomBlockNoteSchema; public readonly blockImplementations: BlockSpecs; public readonly inlineContentImplementations: InlineContentSpecs; @@ -651,7 +651,7 @@ export class BlockNoteEditor< disableExtensions: newOptions.disableExtensions, setIdAttribute: newOptions.setIdAttribute, animations: newOptions.animations ?? true, - tableHandles: editorHasBlockWithType(this, "table"), + tableHandles: editorHasBlockType(this, "table"), dropCursor: this.options.dropCursor ?? dropCursor, placeholders: newOptions.placeholders, tabBehavior: newOptions.tabBehavior, @@ -889,7 +889,11 @@ export class BlockNoteEditor< } const schema = getSchema(tiptapOptions.extensions!); const pmNodes = initialContent.map((b) => - blockToNode(b, schema, this.schema.styleSchema).toJSON(), + blockToNode( + partialBlockToBlock(this.schema, b), + schema, + this.schema.styleSchema, + ).toJSON(), ); const doc = createDocument( { @@ -1518,7 +1522,7 @@ export class BlockNoteEditor< * @returns The blocks, serialized as an HTML string. */ public blocksToHTMLLossy( - blocks: PartialBlock[] = this.document, + blocks: Block[] = this.document, ): string { return this._exportManager.blocksToHTMLLossy(blocks); } @@ -1533,7 +1537,7 @@ export class BlockNoteEditor< * @returns The blocks, serialized as an HTML string. */ public blocksToFullHTML( - blocks: PartialBlock[] = this.document, + blocks: Block[] = this.document, ): string { return this._exportManager.blocksToFullHTML(blocks); } @@ -1557,7 +1561,7 @@ export class BlockNoteEditor< * @returns The blocks, serialized as a Markdown string. */ public blocksToMarkdownLossy( - blocks: PartialBlock[] = this.document, + blocks: Block[] = this.document, ): string { return this._exportManager.blocksToMarkdownLossy(blocks); } diff --git a/packages/core/src/editor/BlockNoteExtension.ts b/packages/core/src/editor/BlockNoteExtension.ts index f56d6c736a..ecc84c38be 100644 --- a/packages/core/src/editor/BlockNoteExtension.ts +++ b/packages/core/src/editor/BlockNoteExtension.ts @@ -2,10 +2,10 @@ import { Plugin } from "prosemirror-state"; import { EventEmitter } from "../util/EventEmitter.js"; import { AnyExtension } from "@tiptap/core"; +import { PartialBlock } from "../blocks/index.js"; import { BlockSchema, InlineContentSchema, - PartialBlockNoDefaults, StyleSchema, } from "../schema/index.js"; import { BlockNoteEditor } from "./BlockNoteEditor.js"; @@ -93,7 +93,7 @@ export type InputRule = { * The editor instance */ editor: BlockNoteEditor; - }) => undefined | PartialBlockNoDefaults; + }) => undefined | PartialBlock; }; /** diff --git a/packages/core/src/editor/BlockNoteExtensions.ts b/packages/core/src/editor/BlockNoteExtensions.ts index 754c90b428..b85746a814 100644 --- a/packages/core/src/editor/BlockNoteExtensions.ts +++ b/packages/core/src/editor/BlockNoteExtensions.ts @@ -49,6 +49,7 @@ import { BlockNoteDOMAttributes, BlockSchema, BlockSpecs, + CustomBlockNoteSchema, InlineContentSchema, InlineContentSpecs, StyleSchema, @@ -59,7 +60,6 @@ import type { BlockNoteEditorOptions, SupportedExtension, } from "./BlockNoteEditor.js"; -import { BlockNoteSchema } from "../blocks/BlockNoteSchema.js"; type ExtensionOptions< BSchema extends BlockSchema, @@ -94,7 +94,7 @@ type ExtensionOptions< >; tabBehavior?: "prefer-navigate-ui" | "prefer-indent"; comments?: { - schema?: BlockNoteSchema; + schema?: CustomBlockNoteSchema; threadStore: ThreadStore; resolveUsers?: (userIds: string[]) => Promise; }; diff --git a/packages/core/src/editor/managers/CollaborationManager.ts b/packages/core/src/editor/managers/CollaborationManager.ts index 8273fb5cb4..952701c82c 100644 --- a/packages/core/src/editor/managers/CollaborationManager.ts +++ b/packages/core/src/editor/managers/CollaborationManager.ts @@ -1,14 +1,14 @@ -import * as Y from "yjs"; import { redoCommand, undoCommand } from "y-prosemirror"; -import { CommentsPlugin } from "../../extensions/Comments/CommentsPlugin.js"; -import { CommentMark } from "../../extensions/Comments/CommentMark.js"; +import * as Y from "yjs"; +import type { ThreadStore, User } from "../../comments/index.js"; +import { CursorPlugin } from "../../extensions/Collaboration/CursorPlugin.js"; import { ForkYDocPlugin } from "../../extensions/Collaboration/ForkYDocPlugin.js"; import { SyncPlugin } from "../../extensions/Collaboration/SyncPlugin.js"; import { UndoPlugin } from "../../extensions/Collaboration/UndoPlugin.js"; -import { CursorPlugin } from "../../extensions/Collaboration/CursorPlugin.js"; -import type { ThreadStore, User } from "../../comments/index.js"; +import { CommentMark } from "../../extensions/Comments/CommentMark.js"; +import { CommentsPlugin } from "../../extensions/Comments/CommentsPlugin.js"; +import { CustomBlockNoteSchema } from "../../schema/CustomBlockNoteSchema.js"; import type { BlockNoteEditor } from "../BlockNoteEditor.js"; -import { CustomBlockNoteSchema } from "../../schema/schema.js"; export interface CollaborationOptions { /** diff --git a/packages/core/src/editor/managers/ExportManager.ts b/packages/core/src/editor/managers/ExportManager.ts index 3fe1ee2f0e..2f943005bd 100644 --- a/packages/core/src/editor/managers/ExportManager.ts +++ b/packages/core/src/editor/managers/ExportManager.ts @@ -11,7 +11,6 @@ import { DefaultBlockSchema, DefaultInlineContentSchema, DefaultStyleSchema, - PartialBlock, } from "../../blocks/defaultBlocks.js"; import { BlockSchema, @@ -35,7 +34,7 @@ export class ExportManager< * @returns The blocks, serialized as an HTML string. */ public blocksToHTMLLossy( - blocks: PartialBlock[] = this.editor.document, + blocks: Block[] = this.editor.document, ): string { const exporter = createExternalHTMLExporter( this.editor.pmSchema, @@ -54,7 +53,7 @@ export class ExportManager< * @returns The blocks, serialized as an HTML string. */ public blocksToFullHTML( - blocks: PartialBlock[] = this.editor.document, + blocks: Block[] = this.editor.document, ): string { const exporter = createInternalHTMLSerializer( this.editor.pmSchema, @@ -83,7 +82,7 @@ export class ExportManager< * @returns The blocks, serialized as a Markdown string. */ public blocksToMarkdownLossy( - blocks: PartialBlock[] = this.editor.document, + blocks: Block[] = this.editor.document, ): string { return blocksToMarkdown(blocks, this.editor.pmSchema, this.editor, {}); } diff --git a/packages/core/src/editor/managers/StyleManager.ts b/packages/core/src/editor/managers/StyleManager.ts index e03c46a6d1..bb487d0744 100644 --- a/packages/core/src/editor/managers/StyleManager.ts +++ b/packages/core/src/editor/managers/StyleManager.ts @@ -1,18 +1,19 @@ +import { TextSelection } from "@tiptap/pm/state"; import { insertContentAt } from "../../api/blockManipulation/insertContentAt.js"; import { inlineContentToNodes } from "../../api/nodeConversions/blockToNode.js"; +import { + DefaultBlockSchema, + DefaultInlineContentSchema, + DefaultStyleSchema, +} from "../../blocks/defaultBlocks.js"; import { BlockSchema, InlineContentSchema, PartialInlineContent, StyleSchema, Styles, + partialInlineContentToInlineContent, } from "../../schema/index.js"; -import { - DefaultBlockSchema, - DefaultInlineContentSchema, - DefaultStyleSchema, -} from "../../blocks/defaultBlocks.js"; -import { TextSelection } from "@tiptap/pm/state"; import { UnreachableCaseError } from "../../util/typescript.js"; import { BlockNoteEditor } from "../BlockNoteEditor.js"; @@ -32,7 +33,11 @@ export class StyleManager< content: PartialInlineContent, { updateSelection = false }: { updateSelection?: boolean } = {}, ) { - const nodes = inlineContentToNodes(content, this.editor.pmSchema); + const fullContent = partialInlineContentToInlineContent( + content, + this.editor.schema.inlineContentSchema, + ); + const nodes = inlineContentToNodes(fullContent, this.editor.pmSchema); this.editor.transact((tr) => { insertContentAt( diff --git a/packages/core/src/exporter/Exporter.ts b/packages/core/src/exporter/Exporter.ts index f42e89e6f4..500d507ef9 100644 --- a/packages/core/src/exporter/Exporter.ts +++ b/packages/core/src/exporter/Exporter.ts @@ -1,8 +1,8 @@ -import { BlockNoteSchema } from "../blocks/BlockNoteSchema.js"; import { COLORS_DEFAULT } from "../editor/defaultColors.js"; import { BlockFromConfig, BlockSchema, + CustomBlockNoteSchema, InlineContent, InlineContentSchema, StyleSchema, @@ -45,7 +45,7 @@ export abstract class Exporter< TS, > { public constructor( - _schema: BlockNoteSchema, // only used for type inference + _schema: CustomBlockNoteSchema, // only used for type inference protected readonly mappings: { blockMapping: BlockMapping; inlineContentMapping: InlineContentMapping; diff --git a/packages/core/src/exporter/mapping.ts b/packages/core/src/exporter/mapping.ts index 0dca63ebc3..1a39a0b302 100644 --- a/packages/core/src/exporter/mapping.ts +++ b/packages/core/src/exporter/mapping.ts @@ -1,7 +1,7 @@ -import { BlockNoteSchema } from "../blocks/BlockNoteSchema.js"; import { - BlockFromConfigNoChildren, + BlockFromConfig, BlockSchema, + CustomBlockNoteSchema, InlineContentFromConfig, InlineContentSchema, StyleSchema, @@ -20,7 +20,7 @@ export type BlockMapping< RI, > = { [K in keyof B]: ( - block: BlockFromConfigNoChildren, + block: BlockFromConfig, // we don't know the exact types that are supported by the exporter at this point, // because the mapping only knows about converting certain types (which might be a subset of the supported types) // this is why there are many `any` types here (same for types below) @@ -64,7 +64,7 @@ export function mappingFactory< B extends BlockSchema, I extends InlineContentSchema, S extends StyleSchema, ->(_schema: BlockNoteSchema) { +>(_schema: CustomBlockNoteSchema) { return { createBlockMapping: (mapping: BlockMapping) => mapping, diff --git a/packages/core/src/extensions/Collaboration/schemaMigration/migrationRules/moveColorAttributes.ts b/packages/core/src/extensions/Collaboration/schemaMigration/migrationRules/moveColorAttributes.ts index 0866c3523c..6adf24075b 100644 --- a/packages/core/src/extensions/Collaboration/schemaMigration/migrationRules/moveColorAttributes.ts +++ b/packages/core/src/extensions/Collaboration/schemaMigration/migrationRules/moveColorAttributes.ts @@ -1,7 +1,7 @@ import * as Y from "yjs"; +import { defaultZodPropSchema } from "../../../../blocks/defaultProps.js"; import { MigrationRule } from "./migrationRule.js"; -import { defaultProps } from "../../../../blocks/defaultProps.js"; // Helper function to recursively traverse a `Y.XMLElement` and its descendant // elements. @@ -42,13 +42,14 @@ export const moveColorAttributes: MigrationRule = (fragment, tr) => { const textColor = element.getAttribute("textColor"); const backgroundColor = element.getAttribute("backgroundColor"); + // TODO: TBD best way to extract defaults + const defaultValues = defaultZodPropSchema.parse({}); + const colors = { textColor: - textColor === defaultProps.textColor.default - ? undefined - : textColor, + textColor === defaultValues.textColor ? undefined : textColor, backgroundColor: - backgroundColor === defaultProps.backgroundColor.default + backgroundColor === defaultValues.backgroundColor ? undefined : backgroundColor, }; diff --git a/packages/core/src/extensions/Comments/CommentsPlugin.ts b/packages/core/src/extensions/Comments/CommentsPlugin.ts index 23eea69e92..0c7002eb1a 100644 --- a/packages/core/src/extensions/Comments/CommentsPlugin.ts +++ b/packages/core/src/extensions/Comments/CommentsPlugin.ts @@ -10,7 +10,7 @@ import type { } from "../../comments/index.js"; import { BlockNoteEditor } from "../../editor/BlockNoteEditor.js"; import { BlockNoteExtension } from "../../editor/BlockNoteExtension.js"; -import { CustomBlockNoteSchema } from "../../schema/schema.js"; +import { CustomBlockNoteSchema } from "../../schema/CustomBlockNoteSchema.js"; import { UserStore } from "./userstore/UserStore.js"; import { getMarkRange } from "@tiptap/core"; diff --git a/packages/core/src/extensions/SideMenu/dragging.ts b/packages/core/src/extensions/SideMenu/dragging.ts index 54dc3eeae2..d3a5779c7f 100644 --- a/packages/core/src/extensions/SideMenu/dragging.ts +++ b/packages/core/src/extensions/SideMenu/dragging.ts @@ -201,7 +201,7 @@ export function dragStart< const externalHTMLExporter = createExternalHTMLExporter(schema, editor); - const blocks = fragmentToBlocks(selectedSlice.content); + const blocks = fragmentToBlocks(selectedSlice.content); const externalHTML = externalHTMLExporter.exportBlocks(blocks, {}); const plainText = cleanHTMLToMarkdown(externalHTML); diff --git a/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts b/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts index 921d181d1a..81d4a322d7 100644 --- a/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts +++ b/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts @@ -1,7 +1,10 @@ import { Block, PartialBlock } from "../../blocks/defaultBlocks.js"; import type { BlockNoteEditor } from "../../editor/BlockNoteEditor.js"; -import { editorHasBlockWithType } from "../../blocks/defaultBlockTypeGuards.js"; +import { + editorHasBlockType, + editorHasBlockTypeAndPropsAreValid, +} from "../../blocks/defaultBlockTypeGuards.js"; import { BlockSchema, InlineContentSchema, @@ -87,45 +90,24 @@ export function getDefaultSlashMenuItems< >(editor: BlockNoteEditor) { const items: DefaultSuggestionItem[] = []; - if (editorHasBlockWithType(editor, "heading", { level: "number" })) { - items.push( - { - onItemClick: () => { - insertOrUpdateBlock(editor, { - type: "heading", - props: { level: 1 }, - }); - }, - badge: formatKeyboardShortcut("Mod-Alt-1"), - key: "heading", - ...editor.dictionary.slash_menu.heading, - }, - { - onItemClick: () => { - insertOrUpdateBlock(editor, { - type: "heading", - props: { level: 2 }, - }); - }, - badge: formatKeyboardShortcut("Mod-Alt-2"), - key: "heading_2", - ...editor.dictionary.slash_menu.heading_2, - }, - { - onItemClick: () => { - insertOrUpdateBlock(editor, { - type: "heading", - props: { level: 3 }, - }); - }, - badge: formatKeyboardShortcut("Mod-Alt-3"), - key: "heading_3", - ...editor.dictionary.slash_menu.heading_3, - }, - ); + if (editorHasBlockType(editor, "heading")) { + for (const level of [1, 2, 3, 4, 5, 6] as const) { + if (editorHasBlockTypeAndPropsAreValid(editor, "heading", { level })) { + items.push({ + onItemClick: () => { + insertOrUpdateBlock(editor, { + type: "heading", + props: { level }, + }); + }, + badge: formatKeyboardShortcut("Mod-Alt-1"), + key: `heading_${level}`, + ...editor.dictionary.slash_menu[`heading_${level}`], + }); + } + } } - - if (editorHasBlockWithType(editor, "quote")) { + if (editorHasBlockType(editor, "quote")) { items.push({ onItemClick: () => { insertOrUpdateBlock(editor, { @@ -137,7 +119,7 @@ export function getDefaultSlashMenuItems< }); } - if (editorHasBlockWithType(editor, "toggleListItem")) { + if (editorHasBlockType(editor, "toggleListItem")) { items.push({ onItemClick: () => { insertOrUpdateBlock(editor, { @@ -150,7 +132,7 @@ export function getDefaultSlashMenuItems< }); } - if (editorHasBlockWithType(editor, "numberedListItem")) { + if (editorHasBlockType(editor, "numberedListItem")) { items.push({ onItemClick: () => { insertOrUpdateBlock(editor, { @@ -163,7 +145,7 @@ export function getDefaultSlashMenuItems< }); } - if (editorHasBlockWithType(editor, "bulletListItem")) { + if (editorHasBlockType(editor, "bulletListItem")) { items.push({ onItemClick: () => { insertOrUpdateBlock(editor, { @@ -176,7 +158,7 @@ export function getDefaultSlashMenuItems< }); } - if (editorHasBlockWithType(editor, "checkListItem")) { + if (editorHasBlockType(editor, "checkListItem")) { items.push({ onItemClick: () => { insertOrUpdateBlock(editor, { @@ -189,7 +171,7 @@ export function getDefaultSlashMenuItems< }); } - if (editorHasBlockWithType(editor, "paragraph")) { + if (editorHasBlockType(editor, "paragraph")) { items.push({ onItemClick: () => { insertOrUpdateBlock(editor, { @@ -202,7 +184,7 @@ export function getDefaultSlashMenuItems< }); } - if (editorHasBlockWithType(editor, "codeBlock")) { + if (editorHasBlockType(editor, "codeBlock")) { items.push({ onItemClick: () => { insertOrUpdateBlock(editor, { @@ -215,7 +197,7 @@ export function getDefaultSlashMenuItems< }); } - if (editorHasBlockWithType(editor, "divider")) { + if (editorHasBlockType(editor, "divider")) { items.push({ onItemClick: () => { insertOrUpdateBlock(editor, { type: "divider" }); @@ -225,7 +207,7 @@ export function getDefaultSlashMenuItems< }); } - if (editorHasBlockWithType(editor, "table")) { + if (editorHasBlockType(editor, "table")) { items.push({ onItemClick: () => { insertOrUpdateBlock(editor, { @@ -249,7 +231,7 @@ export function getDefaultSlashMenuItems< }); } - if (editorHasBlockWithType(editor, "image", { url: "string" })) { + if (editorHasBlockType(editor, "image")) { items.push({ onItemClick: () => { const insertedBlock = insertOrUpdateBlock(editor, { @@ -268,7 +250,7 @@ export function getDefaultSlashMenuItems< }); } - if (editorHasBlockWithType(editor, "video", { url: "string" })) { + if (editorHasBlockType(editor, "video")) { items.push({ onItemClick: () => { const insertedBlock = insertOrUpdateBlock(editor, { @@ -287,7 +269,7 @@ export function getDefaultSlashMenuItems< }); } - if (editorHasBlockWithType(editor, "audio", { url: "string" })) { + if (editorHasBlockType(editor, "audio")) { items.push({ onItemClick: () => { const insertedBlock = insertOrUpdateBlock(editor, { @@ -306,7 +288,7 @@ export function getDefaultSlashMenuItems< }); } - if (editorHasBlockWithType(editor, "file", { url: "string" })) { + if (editorHasBlockType(editor, "file")) { items.push({ onItemClick: () => { const insertedBlock = insertOrUpdateBlock(editor, { @@ -325,62 +307,26 @@ export function getDefaultSlashMenuItems< }); } - if ( - editorHasBlockWithType(editor, "heading", { - level: "number", - isToggleable: "boolean", - }) - ) { - items.push( - { - onItemClick: () => { - insertOrUpdateBlock(editor, { - type: "heading", - props: { level: 1, isToggleable: true }, - }); - }, - key: "toggle_heading", - ...editor.dictionary.slash_menu.toggle_heading, - }, - { - onItemClick: () => { - insertOrUpdateBlock(editor, { - type: "heading", - props: { level: 2, isToggleable: true }, - }); - }, - - key: "toggle_heading_2", - ...editor.dictionary.slash_menu.toggle_heading_2, - }, - { - onItemClick: () => { - insertOrUpdateBlock(editor, { - type: "heading", - props: { level: 3, isToggleable: true }, - }); - }, - key: "toggle_heading_3", - ...editor.dictionary.slash_menu.toggle_heading_3, - }, - ); - } - - if (editorHasBlockWithType(editor, "heading", { level: "number" })) { - (editor.schema.blockSchema.heading.propSchema.level.values || []) - .filter((level): level is 4 | 5 | 6 => level > 3) - .forEach((level) => { + if (editorHasBlockType(editor, "heading")) { + for (const level of [1, 2, 3] as const) { + if ( + editorHasBlockTypeAndPropsAreValid(editor, "heading", { + level, + isToggleable: true, + }) + ) { items.push({ onItemClick: () => { insertOrUpdateBlock(editor, { type: "heading", - props: { level: level }, + props: { level: 2, isToggleable: true }, }); }, - key: `heading_${level}`, - ...editor.dictionary.slash_menu[`heading_${level}`], + key: `toggle_heading_${level}`, + ...editor.dictionary.slash_menu[`toggle_heading_${level}`], }); - }); + } + } } items.push({ diff --git a/packages/core/src/extensions/TableHandles/TableHandlesPlugin.ts b/packages/core/src/extensions/TableHandles/TableHandlesPlugin.ts index f90fe9e95b..d7204c50a5 100644 --- a/packages/core/src/extensions/TableHandles/TableHandlesPlugin.ts +++ b/packages/core/src/extensions/TableHandles/TableHandlesPlugin.ts @@ -26,15 +26,13 @@ import { } from "../../api/blockManipulation/tables/tables.js"; import { nodeToBlock } from "../../api/nodeConversions/nodeToBlock.js"; import { getNodeById } from "../../api/nodeUtil.js"; -import { - editorHasBlockWithType, - isTableCellSelection, -} from "../../blocks/defaultBlockTypeGuards.js"; +import { isTableCellSelection } from "../../blocks/defaultBlockTypeGuards.js"; import { DefaultBlockSchema } from "../../blocks/defaultBlocks.js"; +import { TableBlockConfig } from "../../blocks/index.js"; import type { BlockNoteEditor } from "../../editor/BlockNoteEditor.js"; import { BlockNoteExtension } from "../../editor/BlockNoteExtension.js"; import { - BlockFromConfigNoChildren, + BlockFromConfig, BlockSchemaWithBlock, InlineContentSchema, StyleSchema, @@ -54,7 +52,7 @@ export type TableHandlesState< referencePosCell: DOMRect | undefined; referencePosTable: DOMRect; - block: BlockFromConfigNoChildren; + block: BlockFromConfig; colIndex: number | undefined; rowIndex: number | undefined; @@ -164,7 +162,7 @@ export class TableHandlesView< constructor( private readonly editor: BlockNoteEditor< - BlockSchemaWithBlock<"table", DefaultBlockSchema["table"]>, + BlockSchemaWithBlock<"table", TableBlockConfig>, I, S >, @@ -260,7 +258,7 @@ export class TableHandlesView< this.tableElement = blockEl.node; let tableBlock: - | BlockFromConfigNoChildren + | BlockFromConfig | undefined; const pmNodeInfo = this.editor.transact((tr) => @@ -278,9 +276,9 @@ export class TableHandlesView< this.editor.schema.styleSchema, ); - if (editorHasBlockWithType(this.editor, "table")) { + if (block.type === "table") { this.tablePos = pmNodeInfo.posBeforeNode + 1; - tableBlock = block; + tableBlock = block as BlockFromConfig; } if (!tableBlock) { @@ -535,10 +533,11 @@ export class TableHandlesView< } // Hide handles if the table block has been removed. - this.state.block = this.editor.getBlock(this.state.block.id)!; + const block = this.editor.getBlock(this.state.block.id); + if ( - !this.state.block || - this.state.block.type !== "table" || + !block || + block.type !== "table" || // when collaborating, the table element might be replaced and out of date // because yjs replaces the element when for example you change the color via the side menu !this.tableElement?.isConnected @@ -551,6 +550,11 @@ export class TableHandlesView< return; } + this.state.block = block as unknown as BlockFromConfig< + DefaultBlockSchema["table"], + I, + S + >; const { height: rowCount, width: colCount } = getDimensionsOfTable( this.state.block, ); @@ -626,7 +630,7 @@ export class TableHandlesProsemirrorPlugin< constructor( private readonly editor: BlockNoteEditor< - BlockSchemaWithBlock<"table", DefaultBlockSchema["table"]>, + BlockSchemaWithBlock<"table", TableBlockConfig>, I, S >, @@ -921,7 +925,7 @@ export class TableHandlesProsemirrorPlugin< }; getCellsAtRowHandle = ( - block: BlockFromConfigNoChildren, + block: BlockFromConfig, relativeRowIndex: RelativeCellIndices["row"], ) => { return getCellsAtRowHandle(block, relativeRowIndex); @@ -931,7 +935,7 @@ export class TableHandlesProsemirrorPlugin< * Get all the cells in a column of the table block. */ getCellsAtColumnHandle = ( - block: BlockFromConfigNoChildren, + block: BlockFromConfig, relativeColumnIndex: RelativeCellIndices["col"], ) => { return getCellsAtColumnHandle(block, relativeColumnIndex); @@ -1161,9 +1165,7 @@ export class TableHandlesProsemirrorPlugin< * Returns undefined when there is no cell selection, or the selection is not within a table. */ getMergeDirection = ( - block: - | BlockFromConfigNoChildren - | undefined, + block: BlockFromConfig | undefined, ) => { return this.editor.transact((tr) => { const isSelectingTableCells = isTableCellSelection(tr.selection) @@ -1194,14 +1196,14 @@ export class TableHandlesProsemirrorPlugin< }; cropEmptyRowsOrColumns = ( - block: BlockFromConfigNoChildren, + block: BlockFromConfig, removeEmpty: "columns" | "rows", ) => { return cropEmptyRowsOrColumns(block, removeEmpty); }; addRowsOrColumns = ( - block: BlockFromConfigNoChildren, + block: BlockFromConfig, addType: "columns" | "rows", numToAdd: number, ) => { diff --git a/packages/core/src/i18n/locales/ar.ts b/packages/core/src/i18n/locales/ar.ts index 00574debed..8cee70bff4 100644 --- a/packages/core/src/i18n/locales/ar.ts +++ b/packages/core/src/i18n/locales/ar.ts @@ -2,7 +2,7 @@ import type { Dictionary } from "../dictionary.js"; export const ar: Dictionary = { slash_menu: { - heading: { + heading_1: { title: "عنوان 1", subtext: "يستخدم لعناوين المستوى الأعلى", aliases: ["ع", "عنوان1", "ع1"], @@ -38,7 +38,7 @@ export const ar: Dictionary = { aliases: ["ع6", "عنوان6", "العنوان الفرعي الأدنى"], group: "العناوين الفرعية", }, - toggle_heading: { + toggle_heading_1: { title: "عنوان قابل للطي 1", subtext: "عنوان قابل للطي لإظهار وإخفاء المحتوى", aliases: ["ع", "عنوان1", "ع1", "قابل للطي", "طي"], diff --git a/packages/core/src/i18n/locales/de.ts b/packages/core/src/i18n/locales/de.ts index cac48dd80a..2aaec1c039 100644 --- a/packages/core/src/i18n/locales/de.ts +++ b/packages/core/src/i18n/locales/de.ts @@ -2,7 +2,7 @@ import { Dictionary } from "../dictionary.js"; export const de: Dictionary = { slash_menu: { - heading: { + heading_1: { title: "Überschrift 1", subtext: "Hauptebene Überschrift", aliases: ["h", "überschrift1", "h1"], @@ -38,7 +38,7 @@ export const de: Dictionary = { aliases: ["h6", "überschrift6", "unterüberschrift6"], group: "Unterüberschriften", }, - toggle_heading: { + toggle_heading_1: { title: "Aufklappbare Überschrift 1", subtext: "Aufklappbare Hauptebene Überschrift", aliases: ["h", "überschrift1", "h1", "aufklappbar", "einklappbar"], diff --git a/packages/core/src/i18n/locales/en.ts b/packages/core/src/i18n/locales/en.ts index af7927d207..d888608b2f 100644 --- a/packages/core/src/i18n/locales/en.ts +++ b/packages/core/src/i18n/locales/en.ts @@ -1,6 +1,6 @@ export const en = { slash_menu: { - heading: { + heading_1: { title: "Heading 1", subtext: "Top-level heading", aliases: ["h", "heading1", "h1"], @@ -36,7 +36,7 @@ export const en = { aliases: ["h6", "heading6", "subheading6"], group: "Subheadings", }, - toggle_heading: { + toggle_heading_1: { title: "Toggle Heading 1", subtext: "Toggleable top-level heading", aliases: ["h", "heading1", "h1", "collapsable"], diff --git a/packages/core/src/i18n/locales/es.ts b/packages/core/src/i18n/locales/es.ts index 9e830b406b..efc2f57aa6 100644 --- a/packages/core/src/i18n/locales/es.ts +++ b/packages/core/src/i18n/locales/es.ts @@ -2,7 +2,7 @@ import { Dictionary } from "../dictionary.js"; export const es: Dictionary = { slash_menu: { - heading: { + heading_1: { title: "Encabezado 1", subtext: "Encabezado de primer nivel", aliases: ["h", "encabezado1", "h1"], @@ -38,7 +38,7 @@ export const es: Dictionary = { aliases: ["h6", "encabezado6", "subencabezado6"], group: "Subencabezados", }, - toggle_heading: { + toggle_heading_1: { title: "Encabezado Plegable 1", subtext: "Encabezado de primer nivel que se puede plegar", aliases: ["h", "encabezado1", "h1", "plegable", "contraible"], diff --git a/packages/core/src/i18n/locales/fr.ts b/packages/core/src/i18n/locales/fr.ts index b56e6942f6..bba08cb2a5 100644 --- a/packages/core/src/i18n/locales/fr.ts +++ b/packages/core/src/i18n/locales/fr.ts @@ -2,7 +2,7 @@ import { Dictionary } from "../dictionary.js"; export const fr: Dictionary = { slash_menu: { - heading: { + heading_1: { title: "Titre 1", subtext: "Utilisé pour un titre de premier niveau", aliases: ["h", "titre1", "h1"], @@ -39,7 +39,7 @@ export const fr: Dictionary = { aliases: ["h6", "titre6", "sous-titre6"], group: "Sous-titres", }, - toggle_heading: { + toggle_heading_1: { title: "Titre Repliable 1", subtext: "Titre de premier niveau qui peut être replié pour masquer son contenu", diff --git a/packages/core/src/i18n/locales/he.ts b/packages/core/src/i18n/locales/he.ts index 553fc42941..f5cea6168d 100644 --- a/packages/core/src/i18n/locales/he.ts +++ b/packages/core/src/i18n/locales/he.ts @@ -2,7 +2,7 @@ import { Dictionary } from "../dictionary.js"; export const he: Dictionary = { slash_menu: { - heading: { + heading_1: { title: "כותרת 1", subtext: "כותרת ראשית", aliases: ["h", "heading1", "h1"], @@ -20,7 +20,7 @@ export const he: Dictionary = { aliases: ["h3", "heading3", "subheading"], group: "כותרות", }, - toggle_heading: { + toggle_heading_1: { title: "כותרת מתקפלת 1", subtext: "כותרת ראשית מתקפלת", aliases: ["h", "heading1", "h1", "collapsable"], diff --git a/packages/core/src/i18n/locales/hr.ts b/packages/core/src/i18n/locales/hr.ts index 31c0b71159..ea0895903a 100644 --- a/packages/core/src/i18n/locales/hr.ts +++ b/packages/core/src/i18n/locales/hr.ts @@ -2,7 +2,7 @@ import { Dictionary } from "../dictionary.js"; export const hr: Dictionary = { slash_menu: { - heading: { + heading_1: { title: "Naslov 1", subtext: "Glavni naslov", aliases: ["h", "naslov1", "h1"], @@ -38,7 +38,7 @@ export const hr: Dictionary = { aliases: ["h6", "naslov6", "podnaslov6"], group: "Podnaslovi", }, - toggle_heading: { + toggle_heading_1: { title: "Proširivi Naslov 1", subtext: "Proširivi glavni naslov", aliases: ["h", "naslov1", "h1", "proširivi"], diff --git a/packages/core/src/i18n/locales/is.ts b/packages/core/src/i18n/locales/is.ts index 25060d651f..d1599e5f6b 100644 --- a/packages/core/src/i18n/locales/is.ts +++ b/packages/core/src/i18n/locales/is.ts @@ -2,7 +2,7 @@ import type { Dictionary } from "../dictionary.js"; export const is: Dictionary = { slash_menu: { - heading: { + heading_1: { title: "Fyrirsögn 1", subtext: "Notað fyrir efstu fyrirsögn", aliases: ["h", "fyrirsogn1", "h1"], @@ -38,7 +38,7 @@ export const is: Dictionary = { aliases: ["h6", "fyrirsogn6", "undirfyrirsogn6"], group: "Undirfyrirsagnir", }, - toggle_heading: { + toggle_heading_1: { title: "Fellanleg Fyrirsögn 1", subtext: "Fellanleg efsta fyrirsögn sem hægt er að sýna eða fela innihald", diff --git a/packages/core/src/i18n/locales/it.ts b/packages/core/src/i18n/locales/it.ts index 45d9dcd277..5e9fc75290 100644 --- a/packages/core/src/i18n/locales/it.ts +++ b/packages/core/src/i18n/locales/it.ts @@ -2,7 +2,7 @@ import { Dictionary } from "../dictionary.js"; export const it: Dictionary = { slash_menu: { - heading: { + heading_1: { title: "Intestazione 1", subtext: "Intestazione di primo livello", aliases: ["h", "intestazione1", "h1"], @@ -38,7 +38,7 @@ export const it: Dictionary = { aliases: ["h6", "intestazione6", "sottotitolo6"], group: "Sottotitoli", }, - toggle_heading: { + toggle_heading_1: { title: "Intestazione Espandibile 1", subtext: "Intestazione di primo livello che può essere espansa o compressa per mostrare il contenuto", diff --git a/packages/core/src/i18n/locales/ja.ts b/packages/core/src/i18n/locales/ja.ts index 236b834443..fa23229b75 100644 --- a/packages/core/src/i18n/locales/ja.ts +++ b/packages/core/src/i18n/locales/ja.ts @@ -2,7 +2,7 @@ import { Dictionary } from "../dictionary.js"; export const ja: Dictionary = { slash_menu: { - heading: { + heading_1: { title: "見出し1", subtext: "トップレベルの見出しに使用", aliases: ["h", "見出し1", "h1", "大見出し"], @@ -38,7 +38,7 @@ export const ja: Dictionary = { aliases: ["h6", "見出し6", "subheading6", "小見出し6"], group: "サブ見出し", }, - toggle_heading: { + toggle_heading_1: { title: "折りたたみ見出し1", subtext: "内容の表示/非表示が切り替え可能なトップレベルの見出し", aliases: ["h", "見出し1", "h1", "大見出し", "折りたたみ", "トグル"], diff --git a/packages/core/src/i18n/locales/ko.ts b/packages/core/src/i18n/locales/ko.ts index cce4c8f7c6..33eb5e1ce7 100644 --- a/packages/core/src/i18n/locales/ko.ts +++ b/packages/core/src/i18n/locales/ko.ts @@ -2,7 +2,7 @@ import { Dictionary } from "../dictionary.js"; export const ko: Dictionary = { slash_menu: { - heading: { + heading_1: { title: "제목1", subtext: "섹션 제목(대)", aliases: ["h", "제목1", "h1", "대제목"], @@ -38,7 +38,7 @@ export const ko: Dictionary = { aliases: ["h6", "제목6", "소제목6"], group: "소제목", }, - toggle_heading: { + toggle_heading_1: { title: "접을 수 있는 제목1", subtext: "내용을 표시하거나 숨길 수 있는 섹션 제목(대)", aliases: ["h", "제목1", "h1", "대제목", "접기", "토글"], diff --git a/packages/core/src/i18n/locales/nl.ts b/packages/core/src/i18n/locales/nl.ts index 6d1f48cde2..93776f2f4a 100644 --- a/packages/core/src/i18n/locales/nl.ts +++ b/packages/core/src/i18n/locales/nl.ts @@ -2,7 +2,7 @@ import type { Dictionary } from "../dictionary.js"; export const nl: Dictionary = { slash_menu: { - heading: { + heading_1: { title: "Kop 1", subtext: "Gebruikt voor een hoofdkop", aliases: ["h", "kop1", "h1"], @@ -38,7 +38,7 @@ export const nl: Dictionary = { aliases: ["h6", "kop6", "subkop6"], group: "Subkoppen", }, - toggle_heading: { + toggle_heading_1: { title: "Uitklapbare Kop 1", subtext: "Hoofdkop die kan worden uit- en ingeklapt om inhoud te tonen", aliases: ["h", "kop1", "h1", "uitklapbaar", "inklapbaar"], diff --git a/packages/core/src/i18n/locales/no.ts b/packages/core/src/i18n/locales/no.ts index c28cac2b9f..6bfbec346e 100644 --- a/packages/core/src/i18n/locales/no.ts +++ b/packages/core/src/i18n/locales/no.ts @@ -2,7 +2,7 @@ import { Dictionary } from "../dictionary.js"; export const no: Dictionary = { slash_menu: { - heading: { + heading_1: { title: "Overskrift 1", subtext: "Toppnivåoverskrift", aliases: ["h", "overskrift1", "h1"], @@ -38,7 +38,7 @@ export const no: Dictionary = { aliases: ["h6", "overskrift6", "underoverskrift6"], group: "Underoverskrifter", }, - toggle_heading: { + toggle_heading_1: { title: "Sammenleggbar Overskrift 1", subtext: "Toppnivåoverskrift som kan vises eller skjules", aliases: ["h", "overskrift1", "h1", "sammenleggbar", "toggle"], diff --git a/packages/core/src/i18n/locales/pl.ts b/packages/core/src/i18n/locales/pl.ts index 35bf1f255a..47de5ccd0d 100644 --- a/packages/core/src/i18n/locales/pl.ts +++ b/packages/core/src/i18n/locales/pl.ts @@ -2,7 +2,7 @@ import type { Dictionary } from "../dictionary.js"; export const pl: Dictionary = { slash_menu: { - heading: { + heading_1: { title: "Nagłówek 1", subtext: "Używany dla nagłówka najwyższego poziomu", aliases: ["h", "naglowek1", "h1"], @@ -38,7 +38,7 @@ export const pl: Dictionary = { aliases: ["h6", "naglowek6", "podnaglowek6"], group: "Podnagłówki", }, - toggle_heading: { + toggle_heading_1: { title: "Nagłówek rozwijany 1", subtext: "Rozwijany nagłówek najwyższego poziomu", aliases: ["h", "naglowek1", "h1", "rozwijany"], diff --git a/packages/core/src/i18n/locales/pt.ts b/packages/core/src/i18n/locales/pt.ts index 7801cd2d36..9a22161de5 100644 --- a/packages/core/src/i18n/locales/pt.ts +++ b/packages/core/src/i18n/locales/pt.ts @@ -2,7 +2,7 @@ import type { Dictionary } from "../dictionary.js"; export const pt: Dictionary = { slash_menu: { - heading: { + heading_1: { title: "Título", subtext: "Usado para um título de nível superior", aliases: ["h", "titulo1", "h1"], @@ -38,7 +38,7 @@ export const pt: Dictionary = { aliases: ["h6", "titulo6", "subtitulo6"], group: "Subtítulos", }, - toggle_heading: { + toggle_heading_1: { title: "Título Expansível", subtext: "Título expansível de nível superior", aliases: ["h", "titulo1", "h1", "expansível"], diff --git a/packages/core/src/i18n/locales/ru.ts b/packages/core/src/i18n/locales/ru.ts index b150359714..28a16d0a75 100644 --- a/packages/core/src/i18n/locales/ru.ts +++ b/packages/core/src/i18n/locales/ru.ts @@ -2,7 +2,7 @@ import { Dictionary } from "../dictionary.js"; export const ru: Dictionary = { slash_menu: { - heading: { + heading_1: { title: "Заголовок 1 уровня", subtext: "Используется для заголовка верхнего уровня", aliases: ["h", "heading1", "h1", "заголовок1"], @@ -38,7 +38,7 @@ export const ru: Dictionary = { aliases: ["h6", "heading6", "subheading6", "заголовок6", "подзаголовок6"], group: "Подзаголовки", }, - toggle_heading: { + toggle_heading_1: { title: "Сворачиваемый заголовок 1 уровня", subtext: "Заголовок верхнего уровня, который можно свернуть/развернуть", aliases: ["h", "heading1", "h1", "заголовок1", "сворачиваемый"], diff --git a/packages/core/src/i18n/locales/sk.ts b/packages/core/src/i18n/locales/sk.ts index cbdd0b706f..658438eac2 100644 --- a/packages/core/src/i18n/locales/sk.ts +++ b/packages/core/src/i18n/locales/sk.ts @@ -1,6 +1,6 @@ export const sk = { slash_menu: { - heading: { + heading_1: { title: "Nadpis 1", subtext: "Nadpis najvyššej úrovne", aliases: ["h", "nadpis1", "h1"], @@ -36,7 +36,7 @@ export const sk = { aliases: ["h6", "nadpis6", "podnadpis"], group: "Podnáslovi", }, - toggle_heading: { + toggle_heading_1: { title: "Rozbaľovací Nadpis 1", subtext: "Rozbaľovací nadpis najvyššej úrovne", aliases: ["h", "nadpis1", "h1", "rozbaľovací"], diff --git a/packages/core/src/i18n/locales/uk.ts b/packages/core/src/i18n/locales/uk.ts index a99a4259c6..5c363fc38d 100644 --- a/packages/core/src/i18n/locales/uk.ts +++ b/packages/core/src/i18n/locales/uk.ts @@ -2,7 +2,7 @@ import { Dictionary } from "../dictionary.js"; export const uk: Dictionary = { slash_menu: { - heading: { + heading_1: { title: "Заголовок 1", subtext: "Заголовок найвищого рівня", aliases: ["h", "heading1", "h1", "заголовок1"], @@ -38,7 +38,7 @@ export const uk: Dictionary = { aliases: ["h6", "heading6", "subheading6", "заголовок6", "підзаголовок6"], group: "Підзаголовки", }, - toggle_heading: { + toggle_heading_1: { title: "Розгортаємий заголовок 1", subtext: "Розгортаємий заголовок найвищого рівня", aliases: ["h", "heading1", "h1", "заголовок1", "розгортаємий"], diff --git a/packages/core/src/i18n/locales/vi.ts b/packages/core/src/i18n/locales/vi.ts index b300fdcfd0..df1b547b16 100644 --- a/packages/core/src/i18n/locales/vi.ts +++ b/packages/core/src/i18n/locales/vi.ts @@ -2,7 +2,7 @@ import type { Dictionary } from "../dictionary.js"; export const vi: Dictionary = { slash_menu: { - heading: { + heading_1: { title: "Tiêu đề H1", subtext: "Sử dụng cho tiêu đề cấp cao nhất", aliases: ["h", "tieude1", "dd1"], @@ -38,7 +38,7 @@ export const vi: Dictionary = { aliases: ["h6", "tieude6", "tieudephu6"], group: "Tiêu đề phụ", }, - toggle_heading: { + toggle_heading_1: { title: "Tiêu đề có thể thu gọn H1", subtext: "Tiêu đề cấp cao nhất có thể thu gọn", aliases: ["h", "tieude1", "dd1", "thugon"], diff --git a/packages/core/src/i18n/locales/zh-tw.ts b/packages/core/src/i18n/locales/zh-tw.ts index e9aa1e8ac6..f8ca3ec3aa 100644 --- a/packages/core/src/i18n/locales/zh-tw.ts +++ b/packages/core/src/i18n/locales/zh-tw.ts @@ -2,7 +2,7 @@ import type { Dictionary } from "../dictionary.js"; export const zhTW: Dictionary = { slash_menu: { - heading: { + heading_1: { title: "一級標題", subtext: "用於頂級標題", aliases: ["h", "heading1", "h1", "標題", "一級標題"], @@ -38,7 +38,7 @@ export const zhTW: Dictionary = { aliases: ["h6", "heading6", "subheading", "標題", "六級標題"], group: "副標題", }, - toggle_heading: { + toggle_heading_1: { title: "可摺疊一級標題", subtext: "可摺疊的頂級標題", aliases: ["h", "heading1", "h1", "標題", "一級標題", "摺疊"], diff --git a/packages/core/src/i18n/locales/zh.ts b/packages/core/src/i18n/locales/zh.ts index b44c81aa36..f9be961c22 100644 --- a/packages/core/src/i18n/locales/zh.ts +++ b/packages/core/src/i18n/locales/zh.ts @@ -2,7 +2,7 @@ import type { Dictionary } from "../dictionary.js"; export const zh: Dictionary = { slash_menu: { - heading: { + heading_1: { title: "一级标题", subtext: "用于顶级标题", aliases: ["h", "heading1", "h1", "标题", "一级标题"], @@ -38,7 +38,7 @@ export const zh: Dictionary = { aliases: ["h6", "heading6", "subheading6", "六级标题"], group: "副标题", }, - toggle_heading: { + toggle_heading_1: { title: "可折叠一级标题", subtext: "可折叠的顶级标题", aliases: ["h", "heading1", "h1", "标题", "一级标题", "折叠"], diff --git a/packages/core/src/index.ts b/packages/core/src/index.ts index 4b6994d5d4..8e55e94fa0 100644 --- a/packages/core/src/index.ts +++ b/packages/core/src/index.ts @@ -56,3 +56,5 @@ export * from "./api/parsers/markdown/parseMarkdown.js"; // TODO: for ai, remove? export * from "./api/blockManipulation/getBlock/getBlock.js"; export * from "./api/positionMapping.js"; + +// export type * from "zod"; diff --git a/packages/core/src/schema/schema.ts b/packages/core/src/schema/CustomBlockNoteSchema.ts similarity index 77% rename from packages/core/src/schema/schema.ts rename to packages/core/src/schema/CustomBlockNoteSchema.ts index 92d0a7ab88..1453a7dc4c 100644 --- a/packages/core/src/schema/schema.ts +++ b/packages/core/src/schema/CustomBlockNoteSchema.ts @@ -1,21 +1,20 @@ -import { BlockNoteEditor } from "../editor/BlockNoteEditor.js"; +import type { Block, PartialBlock } from "../blocks/defaultBlocks.js"; +import type { BlockNoteEditor } from "../editor/BlockNoteEditor.js"; import { createDependencyGraph, toposortReverse } from "../util/topo-sort.js"; +import { addNodeAndExtensionsToSpec } from "./blocks/createSpec.js"; import { - BlockNoDefaults, - BlockSchema, - BlockSpecs, - InlineContentConfig, - InlineContentSchema, - InlineContentSpec, - InlineContentSpecs, - LooseBlockSpec, - PartialBlockNoDefaults, - StyleSchema, - StyleSpecs, - addNodeAndExtensionsToSpec, - getInlineContentSchemaFromSpecs, - getStyleSchemaFromSpecs, + type BlockSchema, + type BlockSpecs, + type InlineContentConfig, + type InlineContentSchema, + type InlineContentSpec, + type InlineContentSpecs, + type LooseBlockSpec, + type StyleSchema, + type StyleSpecs, } from "./index.js"; +import { getInlineContentSchemaFromSpecs } from "./inlineContent/internal.js"; +import { getStyleSchemaFromSpecs } from "./styles/internal.js"; function removeUndefined | undefined>(obj: T): T { if (!obj) { @@ -26,23 +25,50 @@ function removeUndefined | undefined>(obj: T): T { ) as T; } +/** + * Do note that this is separate from the `BlockNoteSchema` which is now reduced to a simple factory for instantiating a {@link CustomBlockNoteSchema} instance. + * In the future, we will rename the `BlockNoteSchema` to `DefaultBlockNoteSchema` and this will be the default schema that is used when no schema is passed to the editor. + * At that time, `CustomBlockNoteSchema` will be renamed to `BlockNoteSchema` and this will be the base class for all schemas. + */ + +/** + * The CustomBlockNoteSchema class defines the shape of the schema that BlockNote uses, it defines all of the blocks, inline content, and styles that are available in the editor. + * You can create a custom schema by extending the CustomBlockNoteSchema class and passing in the blocks, inline content, and styles that you want to use. + * + * @example + * ```typescript + * const schema = new CustomBlockNoteSchema({ + * blockSpecs: { + * block: { type: "block", content: "styled" }, + * }, + * }); + * // extending the schema + * const extendedSchema = schema.extend({ + * blockSpecs: { + * block: { type: "block", content: "styled" }, + * }, + * }); + * + * // using the schema + * const editor = new BlockNoteEditor({ + * schema: extendedSchema, + * }); + * ``` + */ export class CustomBlockNoteSchema< - BSchema extends BlockSchema, - ISchema extends InlineContentSchema, - SSchema extends StyleSchema, + BSchema extends BlockSchema = Record, + ISchema extends InlineContentSchema = Record, + SSchema extends StyleSchema = Record, > { // Helper so that you can use typeof schema.BlockNoteEditor public readonly BlockNoteEditor: BlockNoteEditor = "only for types" as any; - public readonly Block: BlockNoDefaults = + public readonly Block: Block = "only for types" as any; - public readonly PartialBlock: PartialBlockNoDefaults< - BSchema, - ISchema, - SSchema - > = "only for types" as any; + public readonly PartialBlock: PartialBlock = + "only for types" as any; public inlineContentSpecs: InlineContentSpecs; public styleSpecs: StyleSpecs; diff --git a/packages/core/src/schema/blocks/createSpec.ts b/packages/core/src/schema/blocks/createSpec.ts index 936584264f..3f9f499f95 100644 --- a/packages/core/src/schema/blocks/createSpec.ts +++ b/packages/core/src/schema/blocks/createSpec.ts @@ -385,6 +385,9 @@ export function createBlockSpec< config: blockConfig, implementation: { ...blockImplementation, + // If the block implementation does not specify a runsBefore, we default to ["default"] + // This allows for custom blocks to always be prioritized over default blocks. + runsBefore: blockImplementation.runsBefore ?? ["default"], // TODO: this should not have wrapInBlockStructure and generally be a lot simpler // post-processing in externalHTMLExporter should not be necessary toExternalHTML(block, editor) { diff --git a/packages/core/src/schema/blocks/internal.ts b/packages/core/src/schema/blocks/internal.ts index 3cfb268d6f..8b4bd37e20 100644 --- a/packages/core/src/schema/blocks/internal.ts +++ b/packages/core/src/schema/blocks/internal.ts @@ -1,5 +1,7 @@ import { Attribute, Attributes, Editor, Node } from "@tiptap/core"; +import * as z from "zod/v4/core"; import { defaultBlockToHTML } from "../../blocks/defaultBlockHelpers.js"; + import type { BlockNoteEditor } from "../../editor/BlockNoteEditor.js"; import { BlockNoteExtension } from "../../editor/BlockNoteExtension.js"; import { mergeCSSClasses } from "../../util/browser.js"; @@ -9,9 +11,9 @@ import { PropSchema, Props } from "../propTypes.js"; import { StyleSchema } from "../styles/types.js"; import { BlockConfig, + BlockFromConfig, BlockSchemaWithBlock, LooseBlockSpec, - SpecificBlock, } from "./types.js"; // Function that uses the 'propSchema' of a blockConfig to create a TipTap @@ -20,62 +22,53 @@ import { export function propsToAttributes(propSchema: PropSchema): Attributes { const tiptapAttributes: Record = {}; - Object.entries(propSchema).forEach(([name, spec]) => { - tiptapAttributes[name] = { - default: spec.default, - keepOnSplit: true, - // Props are displayed in kebab-case as HTML attributes. If a prop's - // value is the same as its default, we don't display an HTML - // attribute for it. - parseHTML: (element) => { - const value = element.getAttribute(camelToDataKebab(name)); - - if (value === null) { - return null; - } - - if ( - (spec.default === undefined && spec.type === "boolean") || - (spec.default !== undefined && typeof spec.default === "boolean") - ) { - if (value === "true") { - return true; + Object.entries(propSchema._zodSource._zod.def.shape).forEach( + ([name, spec]) => { + const def = + spec instanceof z.$ZodDefault ? spec._zod.def.defaultValue : undefined; + + tiptapAttributes[name] = { + default: def, + keepOnSplit: true, + // Props are displayed in kebab-case as HTML attributes. If a prop's + // value is the same as its default, we don't display an HTML + // attribute for it. + // TODO: needed? (seems tiptap specific) + parseHTML: (element) => { + const value = element.getAttribute(camelToDataKebab(name)); + + if (value === null) { + return null; } - if (value === "false") { - return false; + // TBD: this might not be fault proof, but it's also ugly to store prop=""..."" for strings + try { + const jsonValue = JSON.parse(value); + // it was a number / boolean / json object stored as attribute + return z.parse(spec, jsonValue); + } catch (e) { + // it might have been a string directly stored as attribute + return z.parse(spec, value); } - - return null; - } - - if ( - (spec.default === undefined && spec.type === "number") || - (spec.default !== undefined && typeof spec.default === "number") - ) { - const asNumber = parseFloat(value); - const isNumeric = - !Number.isNaN(asNumber) && Number.isFinite(asNumber); - - if (isNumeric) { - return asNumber; + }, + // TODO: needed? (seems tiptap specific) + renderHTML: (attributes) => { + // don't render to html if the value is the same as the default + if (attributes[name] === def) { + return {}; } - - return null; - } - - return value; - }, - renderHTML: (attributes) => { - // don't render to html if the value is the same as the default - return attributes[name] !== spec.default - ? { - [camelToDataKebab(name)]: attributes[name], - } - : {}; - }, - }; - }); + if (typeof attributes[name] === "object") { + return { + [camelToDataKebab(name)]: JSON.stringify(attributes[name]), + }; + } + return { + [camelToDataKebab(name)]: attributes[name], + }; + }, + }; + }, + ); return tiptapAttributes; } @@ -109,9 +102,8 @@ export function getBlockFromPos< } // Gets the block - const block = editor.getBlock(blockIdentifier)! as SpecificBlock< - BSchema, - BType, + const block = editor.getBlock(blockIdentifier)! as unknown as BlockFromConfig< + Config, I, S >; @@ -167,10 +159,18 @@ export function wrapInBlockStructure< // which are already added as HTML attributes to the parent `blockContent` // element (inheritedProps) and props set to their default values. for (const [prop, value] of Object.entries(blockProps)) { - const spec = propSchema[prop]; - const defaultValue = spec.default; + const spec = propSchema._zodSource._zod.def.shape[prop]; + const defaultValue = + spec instanceof z.$ZodDefault ? spec._zod.def.defaultValue : undefined; if (value !== defaultValue) { - blockContent.setAttribute(camelToDataKebab(prop), value); + if (typeof value === "string") { + blockContent.setAttribute(camelToDataKebab(prop), value); + } else { + blockContent.setAttribute( + camelToDataKebab(prop), + JSON.stringify(value), + ); + } } } // Adds file block attribute diff --git a/packages/core/src/schema/blocks/types.ts b/packages/core/src/schema/blocks/types.ts index 87ec01ab1b..afa252e0bf 100644 --- a/packages/core/src/schema/blocks/types.ts +++ b/packages/core/src/schema/blocks/types.ts @@ -12,6 +12,7 @@ import type { } from "../inlineContent/types.js"; import type { PropSchema, Props } from "../propTypes.js"; import type { StyleSchema } from "../styles/types.js"; +import { PartialTableContent, TableContent } from "./types/tableContent.js"; export type BlockNoteDOMElement = | "editor" @@ -72,7 +73,7 @@ export interface BlockConfig< type: T; /** * The properties that the block supports - * @todo will be zod schema in the future + * Now uses Zod schema for validation and type inference */ readonly propSchema: PS; /** @@ -222,44 +223,17 @@ export type BlockSpecsFromSchema = { }; }; -export type BlockSchemaWithBlock = { +export type BlockSchemaWithBlock< + T extends string, + C extends BlockConfig, +> = NamesMatch<{ [k in T]: C; -}; - -export type TableCellProps = { - backgroundColor: string; - textColor: string; - textAlignment: "left" | "center" | "right" | "justify"; - colspan?: number; - rowspan?: number; -}; - -export type TableCell< - I extends InlineContentSchema, - S extends StyleSchema = StyleSchema, -> = { - type: "tableCell"; - props: TableCellProps; - content: InlineContent[]; -}; - -export type TableContent< - I extends InlineContentSchema, - S extends StyleSchema = StyleSchema, -> = { - type: "tableContent"; - columnWidths: (number | undefined)[]; - headerRows?: number; - headerCols?: number; - rows: { - cells: InlineContent[][] | TableCell[]; - }[]; -}; +}>; // A BlockConfig has all the information to get the type of a Block (which is a specific instance of the BlockConfig. // i.e.: paragraphConfig: BlockConfig defines what a "paragraph" is / supports, and BlockFromConfigNoChildren is the shape of a specific paragraph block. // (for internal use) -export type BlockFromConfigNoChildren< +type BlockFromConfigNoChildren< B extends BlockConfig, I extends InlineContentSchema, S extends StyleSchema, @@ -297,6 +271,7 @@ type BlocksWithoutChildren< // Converts each block spec into a Block object without children, merges them // into a union type, and adds a children property +// TODO: should only be exposed internally export type BlockNoDefaults< BSchema extends BlockSchema, I extends InlineContentSchema, @@ -305,44 +280,6 @@ export type BlockNoDefaults< children: BlockNoDefaults[]; }; -export type SpecificBlock< - BSchema extends BlockSchema, - BType extends keyof BSchema, - I extends InlineContentSchema, - S extends StyleSchema, -> = BlocksWithoutChildren[BType] & { - children: BlockNoDefaults[]; -}; - -/** CODE FOR PARTIAL BLOCKS, analogous to above - * - * Partial blocks are convenience-wrappers to make it easier to - *create/update blocks in the editor. - * - */ - -export type PartialTableCell< - I extends InlineContentSchema, - S extends StyleSchema = StyleSchema, -> = { - type: "tableCell"; - props?: Partial; - content?: PartialInlineContent; -}; - -export type PartialTableContent< - I extends InlineContentSchema, - S extends StyleSchema = StyleSchema, -> = { - type: "tableContent"; - columnWidths?: (number | undefined)[]; - headerRows?: number; - headerCols?: number; - rows: { - cells: PartialInlineContent[] | PartialTableCell[]; - }[]; -}; - type PartialBlockFromConfigNoChildren< B extends BlockConfig, I extends InlineContentSchema, @@ -376,32 +313,11 @@ export type PartialBlockNoDefaults< BSchema extends BlockSchema, I extends InlineContentSchema, S extends StyleSchema, -> = PartialBlocksWithoutChildren< - BSchema, - I, - S ->[keyof PartialBlocksWithoutChildren] & +> = PartialBlocksWithoutChildren[keyof BSchema] & Partial<{ children: PartialBlockNoDefaults[]; }>; -export type SpecificPartialBlock< - BSchema extends BlockSchema, - I extends InlineContentSchema, - BType extends keyof BSchema, - S extends StyleSchema, -> = PartialBlocksWithoutChildren[BType] & { - children?: BlockNoDefaults[]; -}; - -export type PartialBlockFromConfig< - B extends BlockConfig, - I extends InlineContentSchema, - S extends StyleSchema, -> = PartialBlockFromConfigNoChildren & { - children?: BlockNoDefaults[]; -}; - export type BlockIdentifier = { id: string } | string; export type BlockImplementation< diff --git a/packages/core/src/schema/blocks/types/tableContent.ts b/packages/core/src/schema/blocks/types/tableContent.ts new file mode 100644 index 0000000000..ad64e8bb8d --- /dev/null +++ b/packages/core/src/schema/blocks/types/tableContent.ts @@ -0,0 +1,65 @@ +import { + InlineContent, + InlineContentSchema, + PartialInlineContent, +} from "../../inlineContent/types.js"; +import { StyleSchema } from "../../styles/types.js"; + +export type TableCellProps = { + backgroundColor: string; + textColor: string; + textAlignment: "left" | "center" | "right" | "justify"; + colspan?: number; + rowspan?: number; +}; + +export type TableCell< + I extends InlineContentSchema, + S extends StyleSchema = StyleSchema, +> = { + type: "tableCell"; + props: TableCellProps; + content: InlineContent[]; +}; + +export type TableContent< + I extends InlineContentSchema, + S extends StyleSchema = StyleSchema, +> = { + type: "tableContent"; + columnWidths: (number | undefined)[]; + headerRows?: number; + headerCols?: number; + rows: { + cells: InlineContent[][] | TableCell[]; + }[]; +}; + +/** CODE FOR PARTIAL BLOCKS, analogous to above + * + * Partial blocks are convenience-wrappers to make it easier to + *create/update blocks in the editor. + * + */ + +export type PartialTableCell< + I extends InlineContentSchema, + S extends StyleSchema = StyleSchema, +> = { + type: "tableCell"; + props?: Partial; + content?: PartialInlineContent; +}; + +export type PartialTableContent< + I extends InlineContentSchema, + S extends StyleSchema = StyleSchema, +> = { + type: "tableContent"; + columnWidths?: (number | undefined)[]; + headerRows?: number; + headerCols?: number; + rows: { + cells: PartialInlineContent[] | PartialTableCell[]; + }[]; +}; diff --git a/packages/core/src/schema/index.ts b/packages/core/src/schema/index.ts index 05585ab28b..f3cf43f95f 100644 --- a/packages/core/src/schema/index.ts +++ b/packages/core/src/schema/index.ts @@ -1,11 +1,13 @@ export * from "./blocks/createSpec.js"; export * from "./blocks/internal.js"; export * from "./blocks/types.js"; +export * from "./blocks/types/tableContent.js"; +export * from "./CustomBlockNoteSchema.js"; export * from "./inlineContent/createSpec.js"; export * from "./inlineContent/internal.js"; export * from "./inlineContent/types.js"; +export * from "./partialBlockToBlock.js"; export * from "./propTypes.js"; export * from "./styles/createSpec.js"; export * from "./styles/internal.js"; export * from "./styles/types.js"; -export * from "./schema.js"; diff --git a/packages/core/src/schema/inlineContent/createSpec.ts b/packages/core/src/schema/inlineContent/createSpec.ts index f4522936a4..b53c006190 100644 --- a/packages/core/src/schema/inlineContent/createSpec.ts +++ b/packages/core/src/schema/inlineContent/createSpec.ts @@ -5,6 +5,7 @@ import { inlineContentToNodes } from "../../api/nodeConversions/blockToNode.js"; import { nodeToCustomInlineContent } from "../../api/nodeConversions/nodeToBlock.js"; import type { BlockNoteEditor } from "../../editor/BlockNoteEditor.js"; import { propsToAttributes } from "../blocks/internal.js"; +import { partialInlineContentToInlineContent } from "../partialBlockToBlock.js"; import { Props } from "../propTypes.js"; import { StyleSchema } from "../styles/types.js"; import { @@ -193,7 +194,11 @@ export function createInlineContentSpec< editor.schema.styleSchema, ) as any as InlineContentFromConfig, // TODO: fix cast (update) => { - const content = inlineContentToNodes([update], editor.pmSchema); + const fullUpdate = partialInlineContentToInlineContent( + [update], + editor.schema.inlineContentSchema, + ); + const content = inlineContentToNodes(fullUpdate, editor.pmSchema); const pos = getPos(); diff --git a/packages/core/src/schema/inlineContent/internal.ts b/packages/core/src/schema/inlineContent/internal.ts index 9d10c7cb4e..7692e163a4 100644 --- a/packages/core/src/schema/inlineContent/internal.ts +++ b/packages/core/src/schema/inlineContent/internal.ts @@ -1,4 +1,5 @@ import { KeyboardShortcutCommand, Node } from "@tiptap/core"; +import * as z from "zod/v4/core"; import { camelToDataKebab } from "../../util/string.js"; import { PropSchema, Props } from "../propTypes.js"; @@ -32,15 +33,18 @@ export function addInlineContentAttributes< element.dom.setAttribute("data-inline-content-type", inlineContentType); // Adds props as HTML attributes in kebab-case with "data-" prefix. Skips props // set to their default values. - Object.entries(inlineContentProps) - .filter(([prop, value]) => { - const spec = propSchema[prop]; - return value !== spec.default; - }) - .map(([prop, value]) => { - return [camelToDataKebab(prop), value]; - }) - .forEach(([prop, value]) => element.dom.setAttribute(prop, value)); + for (const [prop, value] of Object.entries(inlineContentProps)) { + const spec = propSchema._zodSource._zod.def.shape[prop]; + const defaultValue = + spec instanceof z.$ZodDefault ? spec._zod.def.defaultValue : undefined; + if (value !== defaultValue) { + if (typeof value === "string") { + element.dom.setAttribute(camelToDataKebab(prop), value); + } else { + element.dom.setAttribute(camelToDataKebab(prop), JSON.stringify(value)); + } + } + } if (element.contentDOM) { element.contentDOM.setAttribute("data-editable", ""); diff --git a/packages/core/src/schema/inlineContent/types.ts b/packages/core/src/schema/inlineContent/types.ts index 4dca7a0aa3..00565932f4 100644 --- a/packages/core/src/schema/inlineContent/types.ts +++ b/packages/core/src/schema/inlineContent/types.ts @@ -1,8 +1,8 @@ import { Node } from "@tiptap/core"; +import { ViewMutationRecord } from "prosemirror-view"; +import { BlockNoteEditor } from "../../editor/BlockNoteEditor.js"; import { PropSchema, Props } from "../propTypes.js"; import { StyleSchema, Styles } from "../styles/types.js"; -import { BlockNoteEditor } from "../../editor/BlockNoteEditor.js"; -import { ViewMutationRecord } from "prosemirror-view"; export type CustomInlineContentConfig = { type: string; diff --git a/packages/core/src/schema/partialBlockToBlock.ts b/packages/core/src/schema/partialBlockToBlock.ts new file mode 100644 index 0000000000..c634e7a544 --- /dev/null +++ b/packages/core/src/schema/partialBlockToBlock.ts @@ -0,0 +1,259 @@ +import * as z from "zod/v4/core"; +import type { Block, PartialBlock } from "../blocks/index.js"; +import { UniqueID } from "../extensions/UniqueID/UniqueID.js"; +import { mapTableCell } from "../util/table.js"; +import { UnreachableCaseError } from "../util/typescript.js"; +import type { BlockSchema } from "./blocks/types.js"; +import type { + PartialTableContent, + TableCell, + TableContent, +} from "./blocks/types/tableContent.js"; +import type { CustomBlockNoteSchema } from "./CustomBlockNoteSchema.js"; +import type { + InlineContent, + InlineContentSchema, + Link, + PartialInlineContent, + PartialLink, + StyledText, +} from "./inlineContent/types.js"; +import { + isPartialLinkInlineContent, + isStyledTextInlineContent, +} from "./inlineContent/types.js"; +import type { Props, PropSchema } from "./propTypes.js"; +import type { StyleSchema } from "./styles/types.js"; + +function partialPropsToProps( + partialProps: Partial> | undefined, + propSchema: PropSchema, +): Props { + const props: Props = partialProps || {}; + + Object.entries(propSchema._zodSource._zod.def.shape).forEach( + ([propKey, propValue]) => { + if (props[propKey] === undefined) { + if (propValue instanceof z.$ZodDefault) { + props[propKey] = propValue._zod.def.defaultValue; + } + if (propValue instanceof z.$ZodOptional) { + props[propKey] = undefined; + } + } + }, + ); + return props; +} + +function textStringToStyledText(text: string): StyledText { + return { + type: "text", + styles: {}, + text, + }; +} + +function partialLinkToLink(partialLink: PartialLink): Link { + return { + type: "link", + href: partialLink.href, + content: + typeof partialLink.content === "string" + ? [textStringToStyledText(partialLink.content)] + : partialLink.content, + }; +} + +export function partialInlineContentToInlineContent( + partialInlineContent: + | PartialInlineContent + | undefined, + inlineContentSchema: InlineContentSchema, +): InlineContent[] { + if (partialInlineContent === undefined) { + return []; + } + + if (typeof partialInlineContent === "string") { + return [textStringToStyledText(partialInlineContent)]; + } + + return partialInlineContent.map((partialInlineContentElement) => { + if (typeof partialInlineContentElement === "string") { + return textStringToStyledText(partialInlineContentElement); + } + + if (isPartialLinkInlineContent(partialInlineContentElement)) { + return partialLinkToLink(partialInlineContentElement); + } + + if (isStyledTextInlineContent(partialInlineContentElement)) { + return partialInlineContentElement; + } + + const content = partialInlineContentElement.content; + const inlineContentConfig = + inlineContentSchema[partialInlineContentElement.type]; + + if (typeof inlineContentConfig === "string") { + throw new Error( + "unexpected, should be custom inline content (not 'text' or 'link'", + ); + } + + return { + type: partialInlineContentElement.type, + props: partialPropsToProps( + partialInlineContentElement.props, + inlineContentConfig.propSchema, + ), + content: + typeof content === "undefined" + ? undefined + : typeof content === "string" + ? [textStringToStyledText(content)] + : content, + }; + }); +} + +export function partialTableContentToTableContent( + partialTableContent: PartialTableContent, + inlineContentSchema: InlineContentSchema, +): TableContent { + const rows: { + cells: TableCell[]; + }[] = partialTableContent.rows.map((row) => { + return { + cells: row.cells.map((cell) => { + const fullCell = mapTableCell(cell); + // `mapTableCell` doesn't actually convert `PartialInlineContent` to + // `InlineContent`, so this is done manually here. + fullCell.content = partialInlineContentToInlineContent( + fullCell.content, + inlineContentSchema, + ); + + return fullCell; + }), + }; + }); + + const columnWidths = partialTableContent.columnWidths || []; + if (!partialTableContent.columnWidths) { + for (const cell of rows[0].cells) { + for (let i = 0; i < (cell.props?.colspan || 1); i++) { + columnWidths.push(undefined); + } + } + } + + return { + type: "tableContent", + headerRows: partialTableContent.headerRows, + headerCols: partialTableContent.headerCols, + columnWidths: columnWidths, + rows, + }; +} + +function partialBlockContentToBlockContent( + partialBlockContent: + | PartialTableContent + | PartialInlineContent + | undefined, + content: "table" | "inline" | "none", + inlineContentSchema: InlineContentSchema, +): + | TableContent + | InlineContent[] + | undefined { + if (content === "table") { + partialBlockContent = partialBlockContent || { + type: "tableContent", + rows: [], + }; + + if ( + typeof partialBlockContent !== "object" || + !("type" in partialBlockContent) || + partialBlockContent.type !== "tableContent" + ) { + throw new Error("Invalid partial block content"); + } + + return partialTableContentToTableContent( + partialBlockContent, + inlineContentSchema, + ); + } else if (content === "inline") { + partialBlockContent = partialBlockContent || undefined; + + if ( + typeof partialBlockContent === "object" && + "type" in partialBlockContent + ) { + throw new Error("Invalid partial block content. Table content passed!?"); + } + + return partialInlineContentToInlineContent( + partialBlockContent, + inlineContentSchema, + ); + } else if (content === "none") { + return undefined; + } else { + throw new UnreachableCaseError(content); + } +} + +export function partialBlockToBlock< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema, +>( + schema: CustomBlockNoteSchema, + partialBlock: PartialBlock, +): Block { + const id = partialBlock.id || UniqueID.options.generateID(); + + // Note: we might want to make "type" required for partial blocks and remove this default + const type: string = partialBlock.type || "paragraph"; + + const props = partialPropsToProps( + partialBlock.props, + schema.blockSchema[type].propSchema, + ); + + const content = partialBlockContentToBlockContent( + partialBlock.content, + schema.blockSchema[type].content, + schema.inlineContentSchema, + ); + + const children = + partialBlock.children?.map((child) => partialBlockToBlock(schema, child)) || + []; + + return { + id, + type, + props, + content, + children, + } as Block; +} + +export function partialBlocksToBlocks< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema, +>( + schema: CustomBlockNoteSchema, + partialBlocks: PartialBlock[], +): Block[] { + return partialBlocks.map((partialBlock) => + partialBlockToBlock(schema, partialBlock), + ); +} diff --git a/packages/core/src/schema/propTypes.ts b/packages/core/src/schema/propTypes.ts index 00e6bcf147..18a72cee08 100644 --- a/packages/core/src/schema/propTypes.ts +++ b/packages/core/src/schema/propTypes.ts @@ -1,61 +1,31 @@ -// The PropSpec specifies the type of a prop and possibly a default value. -// Note that props are always optional when used as "input" -// (i.e., when creating a PartialBlock, for example by calling `insertBlocks({...})`) -// -// However, internally they're always set to `default`, unless a prop is marked optional -// -// At some point we should migrate this to zod or effect-schema -export type PropSpec = - | { - // We infer the type of the prop from the default value - default: PType; - // a list of possible values, for example for a string prop (this will then be used as a string union type) - values?: readonly PType[]; - } - | { - default: undefined; - // Because there is no default value (for an optional prop, the default value is undefined), - // we need to specify the type of the prop manually (we can't infer it from the default value) - type: "string" | "number" | "boolean"; - values?: readonly PType[]; - }; +import * as z from "zod/v4/core"; -// Defines multiple block prop specs. The key of each prop is the name of the -// prop, while the value is a corresponding prop spec. This should be included -// in a block config or schema. From a prop schema, we can derive both the props' -// internal implementation (as TipTap node attributes) and the type information -// for the external API. -export type PropSchema = Record>; - -// Defines Props objects for use in Block objects in the external API. Converts -// each prop spec into a union type of its possible values, or a string if no -// values are specified. -export type Props = { - // for required props, get type from type of "default" value, - // and if values are specified, get type from values - [PName in keyof PSchema]: ( - NonNullable extends - | { default: boolean } - | { type: "boolean" } - ? NonNullable["values"] extends readonly boolean[] - ? NonNullable["values"][number] - : boolean - : NonNullable extends - | { default: number } - | { type: "number" } - ? NonNullable["values"] extends readonly number[] - ? NonNullable["values"][number] - : number - : NonNullable extends - | { default: string } - | { type: "string" } - ? NonNullable["values"] extends readonly string[] - ? NonNullable["values"][number] - : string - : never - ) extends infer T - ? PSchema[PName] extends { optional: true } - ? T | undefined - : T - : never; +export type PropSchema = { + // might not be needed, but otherwise it will say Output unused + _output: Output; + // might not be needed, but otherwise it will say Input unused + _input: Input; + // We keep access to zod source, but typed as generic z.$ZodObject + // This makes sure downstream consumers only have the extracted Output / Input types, + // and reduces load on typescript compiler by not having to parse the zod source on every use + _zodSource: z.$ZodObject; }; + +// Props type is derived from the Zod schema output +export type Props> = + PSchema extends PropSchema ? O : any; + +// We infer Output/Input from the provided schema using z.output / z.input +export function createPropSchemaFromZod(schema: S) { + // TODO: should we validate that everything is optional + return { + _output: undefined as any, + _input: undefined as any, + _zodSource: schema, + } as PropSchema, z.input>; +} + +export type PropSchemaFromZod = PropSchema< + z.output, + z.input +>; diff --git a/packages/core/src/schema/styles/createSpec.ts b/packages/core/src/schema/styles/createSpec.ts index c8700da0f2..d011876d4a 100644 --- a/packages/core/src/schema/styles/createSpec.ts +++ b/packages/core/src/schema/styles/createSpec.ts @@ -1,13 +1,11 @@ import { Mark } from "@tiptap/core"; - import { ParseRule, TagParseRule } from "@tiptap/pm/model"; import { addStyleAttributes, createInternalStyleSpec, stylePropsToAttributes, } from "./internal.js"; -import { StyleConfig, StyleSpec } from "./types.js"; - +import type { StyleConfig, StyleSpec } from "./types.js"; export type CustomStyleImplementation = { render: (value: T["propSchema"] extends "boolean" ? undefined : string) => { dom: HTMLElement; diff --git a/packages/core/src/util/table.ts b/packages/core/src/util/table.ts index f7ecd84910..487c341bcd 100644 --- a/packages/core/src/util/table.ts +++ b/packages/core/src/util/table.ts @@ -1,10 +1,11 @@ import type { + InlineContent, InlineContentSchema, - StyleSchema, PartialInlineContent, - InlineContent, + PartialTableCell, + StyleSchema, + TableCell, } from "../schema"; -import { PartialTableCell, TableCell } from "../schema/blocks/types.js"; /** * This will map a table cell to a TableCell object. @@ -20,31 +21,30 @@ export function mapTableCell< | PartialTableCell | TableCell, ): TableCell { - return isTableCell(content) - ? { ...content } - : isPartialTableCell(content) - ? { - type: "tableCell", - content: ([] as InlineContent[]).concat(content.content as any), - props: { - backgroundColor: content.props?.backgroundColor ?? "default", - textColor: content.props?.textColor ?? "default", - textAlignment: content.props?.textAlignment ?? "left", - colspan: content.props?.colspan ?? 1, - rowspan: content.props?.rowspan ?? 1, - }, - } - : { - type: "tableCell", - content: ([] as InlineContent[]).concat(content as any), - props: { - backgroundColor: "default", - textColor: "default", - textAlignment: "left", - colspan: 1, - rowspan: 1, - }, - }; + return isPartialTableCell(content) + ? { + type: "tableCell", + content: ([] as InlineContent[]).concat(content.content as any), + props: { + backgroundColor: content.props?.backgroundColor ?? "default", + textColor: content.props?.textColor ?? "default", + textAlignment: content.props?.textAlignment ?? "left", + colspan: content.props?.colspan ?? 1, + rowspan: content.props?.rowspan ?? 1, + }, + } + : { + type: "tableCell", + // FIXME: content can actually be Partial, we should probably handle this as well + content: ([] as InlineContent[]).concat(content as any), + props: { + backgroundColor: "default", + textColor: "default", + textAlignment: "left", + colspan: 1, + rowspan: 1, + }, + }; } export function isPartialTableCell< diff --git a/packages/core/src/yjs/utils.ts b/packages/core/src/yjs/utils.ts index 60930a5c9e..9090d47a97 100644 --- a/packages/core/src/yjs/utils.ts +++ b/packages/core/src/yjs/utils.ts @@ -10,7 +10,6 @@ import { type BlockNoteEditor, type BlockSchema, type InlineContentSchema, - type PartialBlock, type StyleSchema, blockToNode, docToBlocks, @@ -45,7 +44,7 @@ export function _blocksToProsemirrorNode< SSchema extends StyleSchema, >( editor: BlockNoteEditor, - blocks: PartialBlock[], + blocks: Block[], ) { const pmNodes = blocks.map((b) => blockToNode(b, editor.pmSchema)); @@ -140,7 +139,7 @@ export function blocksToYDoc< SSchema extends StyleSchema, >( editor: BlockNoteEditor, - blocks: PartialBlock[], + blocks: Block[], xmlFragment = "prosemirror", ) { return prosemirrorToYDoc( diff --git a/packages/dev-scripts/examples/template-react/package.json.template.tsx b/packages/dev-scripts/examples/template-react/package.json.template.tsx index 953a174083..44da290039 100644 --- a/packages/dev-scripts/examples/template-react/package.json.template.tsx +++ b/packages/dev-scripts/examples/template-react/package.json.template.tsx @@ -21,6 +21,7 @@ const template = (project: Project) => ({ "@mantine/core": "^8.3.4", "@mantine/hooks": "^8.3.4", "@mantine/utils": "^6.0.22", + zod: "^4.0.0", react: "^19.2.0", "react-dom": "^19.2.0", ...(project.config.tailwind diff --git a/packages/react/package.json b/packages/react/package.json index 799cab2c9c..8c40f69d44 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -66,7 +66,8 @@ "@tiptap/react": "^3.10.2", "emoji-mart": "^5.6.0", "lodash.merge": "^4.6.2", - "react-icons": "^5.5.0" + "react-icons": "^5.5.0", + "zod": "^4.0.0" }, "devDependencies": { "@types/emoji-mart": "^3.0.14", diff --git a/packages/react/src/blocks/File/helpers/render/AddFileButton.tsx b/packages/react/src/blocks/File/helpers/render/AddFileButton.tsx index 44c0fc9a23..f02d3f9b3c 100644 --- a/packages/react/src/blocks/File/helpers/render/AddFileButton.tsx +++ b/packages/react/src/blocks/File/helpers/render/AddFileButton.tsx @@ -1,15 +1,23 @@ -import { FileBlockConfig } from "@blocknote/core"; +import { FileBlockConfig, PropSchemaFromZod } from "@blocknote/core"; import { ReactNode, useCallback } from "react"; import { RiFile2Line } from "react-icons/ri"; +import { + baseFileZodPropSchema, + optionalFileZodPropSchema, +} from "../../../../../../core/src/blocks/defaultFileProps.js"; import { useDictionary } from "../../../../i18n/dictionary.js"; import { ReactCustomBlockRenderProps } from "../../../../schema/ReactBlockSpec.js"; +const requiredZodPropSchema = baseFileZodPropSchema.extend({ + ...optionalFileZodPropSchema.pick({ url: true }).shape, +}); + export const AddFileButton = ( props: Omit< ReactCustomBlockRenderProps< FileBlockConfig["type"], - FileBlockConfig["propSchema"], + PropSchemaFromZod, FileBlockConfig["content"] >, "contentRef" diff --git a/packages/react/src/blocks/File/helpers/render/FileBlockWrapper.tsx b/packages/react/src/blocks/File/helpers/render/FileBlockWrapper.tsx index 0f852a5f49..2a463029ec 100644 --- a/packages/react/src/blocks/File/helpers/render/FileBlockWrapper.tsx +++ b/packages/react/src/blocks/File/helpers/render/FileBlockWrapper.tsx @@ -1,16 +1,24 @@ -import { FileBlockConfig } from "@blocknote/core"; +import { FileBlockConfig, PropSchemaFromZod } from "@blocknote/core"; import { CSSProperties, ReactNode } from "react"; +import { + baseFileZodPropSchema, + optionalFileZodPropSchema, +} from "../../../../../../core/src/blocks/defaultFileProps.js"; import { useUploadLoading } from "../../../../hooks/useUploadLoading.js"; import { ReactCustomBlockRenderProps } from "../../../../schema/ReactBlockSpec.js"; import { AddFileButton } from "./AddFileButton.js"; import { FileNameWithIcon } from "./FileNameWithIcon.js"; +const requiredZodPropSchema = baseFileZodPropSchema.extend({ + ...optionalFileZodPropSchema.pick({ url: true }).shape, +}); + export const FileBlockWrapper = ( props: Omit< ReactCustomBlockRenderProps< FileBlockConfig["type"], - FileBlockConfig["propSchema"] & { showPreview?: { default: true } }, + PropSchemaFromZod, FileBlockConfig["content"] >, "contentRef" @@ -43,7 +51,8 @@ export const FileBlockWrapper = ( ) : ( // Show the file preview, or the file name and icon. <> - {props.block.props.showPreview === false || !props.children ? ( + {(props.block.props as any).showPreview === false || + !props.children ? ( // Show file name and icon. ) : ( diff --git a/packages/react/src/blocks/File/helpers/render/FileNameWithIcon.tsx b/packages/react/src/blocks/File/helpers/render/FileNameWithIcon.tsx index 3951b1f6dd..b1018a5365 100644 --- a/packages/react/src/blocks/File/helpers/render/FileNameWithIcon.tsx +++ b/packages/react/src/blocks/File/helpers/render/FileNameWithIcon.tsx @@ -1,13 +1,13 @@ -import { FileBlockConfig } from "@blocknote/core"; +import { FileBlockConfig, PropSchemaFromZod } from "@blocknote/core"; import { RiFile2Line } from "react-icons/ri"; - +import { baseFileZodPropSchema } from "../../../../../../core/src/blocks/defaultFileProps.js"; import { ReactCustomBlockRenderProps } from "../../../../schema/ReactBlockSpec.js"; export const FileNameWithIcon = ( props: Omit< ReactCustomBlockRenderProps< FileBlockConfig["type"], - FileBlockConfig["propSchema"], + PropSchemaFromZod, FileBlockConfig["content"] >, "editor" | "contentRef" diff --git a/packages/react/src/blocks/File/helpers/render/ResizableFileBlockWrapper.tsx b/packages/react/src/blocks/File/helpers/render/ResizableFileBlockWrapper.tsx index c1b37eac68..335c07bb87 100644 --- a/packages/react/src/blocks/File/helpers/render/ResizableFileBlockWrapper.tsx +++ b/packages/react/src/blocks/File/helpers/render/ResizableFileBlockWrapper.tsx @@ -1,19 +1,27 @@ -import { FileBlockConfig } from "@blocknote/core"; +import { FileBlockConfig, PropSchemaFromZod } from "@blocknote/core"; import { ReactNode, useCallback, useEffect, useRef, useState } from "react"; +import { + baseFileZodPropSchema, + optionalFileZodPropSchema, +} from "../../../../../../core/src/blocks/defaultFileProps.js"; import { useUploadLoading } from "../../../../hooks/useUploadLoading.js"; import { ReactCustomBlockRenderProps } from "../../../../schema/ReactBlockSpec.js"; import { FileBlockWrapper } from "./FileBlockWrapper.js"; +const requiredZodPropSchema = baseFileZodPropSchema.extend({ + ...optionalFileZodPropSchema.pick({ + url: true, + previewWidth: true, + showPreview: true, + }).shape, +}); + export const ResizableFileBlockWrapper = ( props: Omit< ReactCustomBlockRenderProps< FileBlockConfig["type"], - FileBlockConfig["propSchema"] & { - showPreview?: { default: true }; - previewWidth?: { default: number }; - textAlignment?: { default: "left" }; - }, + PropSchemaFromZod, FileBlockConfig["content"] >, "contentRef" @@ -49,7 +57,7 @@ export const ResizableFileBlockWrapper = ( const clientX = "touches" in event ? event.touches[0].clientX : event.clientX; - if (props.block.props.textAlignment === "center") { + if ((props.block.props as any).textAlignment === "center") { if (resizeParams!.handleUsed === "left") { newWidth = resizeParams!.initialWidth + @@ -87,7 +95,7 @@ export const ResizableFileBlockWrapper = ( const windowMouseUpHandler = () => { setResizeParams(undefined); - (props.editor as any).updateBlock(props.block, { + props.editor.updateBlock(props.block, { props: { previewWidth: width, }, diff --git a/packages/react/src/blocks/ToggleWrapper/ToggleWrapper.tsx b/packages/react/src/blocks/ToggleWrapper/ToggleWrapper.tsx index 82f29d638f..6c33c26da6 100644 --- a/packages/react/src/blocks/ToggleWrapper/ToggleWrapper.tsx +++ b/packages/react/src/blocks/ToggleWrapper/ToggleWrapper.tsx @@ -4,9 +4,8 @@ import { UnreachableCaseError, } from "@blocknote/core"; import { ReactNode, useReducer, useState } from "react"; - -import { ReactCustomBlockRenderProps } from "../../schema/ReactBlockSpec.js"; import { useEditorChange } from "../../hooks/useEditorChange.js"; +import { ReactCustomBlockRenderProps } from "../../schema/ReactBlockSpec.js"; const showChildrenReducer = ( showChildren: boolean, @@ -78,7 +77,11 @@ export const ToggleWrapper = ( }; useEditorChange(() => { - if ("isToggleable" in block.props && !block.props.isToggleable) { + // TODO (as any) + if ( + "isToggleable" in (block.props as any) && + !(block.props as any).isToggleable + ) { return; } @@ -101,7 +104,11 @@ export const ToggleWrapper = ( setChildCount(newChildCount); }); - if ("isToggleable" in block.props && !block.props.isToggleable) { + // TODO + if ( + "isToggleable" in (block.props as any) && + !(block.props as any).isToggleable + ) { return children; } diff --git a/packages/react/src/components/FormattingToolbar/DefaultButtons/FileCaptionButton.tsx b/packages/react/src/components/FormattingToolbar/DefaultButtons/FileCaptionButton.tsx index 38b1fef90c..eb943e2d0b 100644 --- a/packages/react/src/components/FormattingToolbar/DefaultButtons/FileCaptionButton.tsx +++ b/packages/react/src/components/FormattingToolbar/DefaultButtons/FileCaptionButton.tsx @@ -1,8 +1,8 @@ import { - blockHasType, + blockHasZodProps, BlockSchema, - editorHasBlockWithType, InlineContentSchema, + isFileBlock, StyleSchema, } from "@blocknote/core"; import { @@ -14,6 +14,7 @@ import { } from "react"; import { RiInputField } from "react-icons/ri"; +import { baseFileZodPropSchema } from "../../../../../core/src/blocks/defaultFileProps.js"; import { useComponentsContext } from "../../../editor/ComponentsContext.js"; import { useBlockNoteEditor } from "../../../hooks/useBlockNoteEditor.js"; import { useSelectedBlocks } from "../../../hooks/useSelectedBlocks.js"; @@ -42,10 +43,12 @@ export const FileCaptionButton = () => { const block = selectedBlocks[0]; if ( - blockHasType(block, editor, block.type, { - url: "string", - caption: "string", - }) + isFileBlock(editor, block.type) && + blockHasZodProps( + block, + editor, + baseFileZodPropSchema.pick({ caption: true }), + ) ) { setCurrentEditingCaption(block.props.caption); return block; @@ -56,13 +59,7 @@ export const FileCaptionButton = () => { const handleEnter = useCallback( (event: KeyboardEvent) => { - if ( - fileBlock && - editorHasBlockWithType(editor, fileBlock.type, { - caption: "string", - }) && - event.key === "Enter" - ) { + if (fileBlock && event.key === "Enter") { event.preventDefault(); editor.updateBlock(fileBlock, { props: { @@ -80,7 +77,7 @@ export const FileCaptionButton = () => { [], ); - if (!fileBlock || fileBlock.props.url === "" || !editor.isEditable) { + if (!fileBlock || (fileBlock.props as any).url === "" || !editor.isEditable) { return null; } diff --git a/packages/react/src/components/FormattingToolbar/DefaultButtons/FileDeleteButton.tsx b/packages/react/src/components/FormattingToolbar/DefaultButtons/FileDeleteButton.tsx index 2ea096de36..c44a4a3a35 100644 --- a/packages/react/src/components/FormattingToolbar/DefaultButtons/FileDeleteButton.tsx +++ b/packages/react/src/components/FormattingToolbar/DefaultButtons/FileDeleteButton.tsx @@ -1,7 +1,7 @@ import { - blockHasType, BlockSchema, InlineContentSchema, + isFileBlock, StyleSchema, } from "@blocknote/core"; import { useCallback, useMemo } from "react"; @@ -32,7 +32,7 @@ export const FileDeleteButton = () => { const block = selectedBlocks[0]; - if (blockHasType(block, editor, block.type, { url: "string" })) { + if (isFileBlock(editor, block.type)) { return block; } diff --git a/packages/react/src/components/FormattingToolbar/DefaultButtons/FileDownloadButton.tsx b/packages/react/src/components/FormattingToolbar/DefaultButtons/FileDownloadButton.tsx index d19e202564..c55b935ed0 100644 --- a/packages/react/src/components/FormattingToolbar/DefaultButtons/FileDownloadButton.tsx +++ b/packages/react/src/components/FormattingToolbar/DefaultButtons/FileDownloadButton.tsx @@ -1,7 +1,7 @@ import { - blockHasType, BlockSchema, InlineContentSchema, + isFileBlock, StyleSchema, } from "@blocknote/core"; import { useCallback, useMemo } from "react"; @@ -33,7 +33,7 @@ export const FileDownloadButton = () => { const block = selectedBlocks[0]; - if (blockHasType(block, editor, block.type, { url: "string" })) { + if (isFileBlock(editor, block.type)) { return block; } @@ -44,11 +44,12 @@ export const FileDownloadButton = () => { if (fileBlock && fileBlock.props.url) { editor.focus(); + const url = fileBlock.props.url as string; if (!editor.resolveFileUrl) { - window.open(sanitizeUrl(fileBlock.props.url, window.location.href)); + window.open(sanitizeUrl(url, window.location.href)); } else { editor - .resolveFileUrl(fileBlock.props.url) + .resolveFileUrl(url) .then((downloadUrl) => window.open(sanitizeUrl(downloadUrl, window.location.href)), ); diff --git a/packages/react/src/components/FormattingToolbar/DefaultButtons/FilePreviewButton.tsx b/packages/react/src/components/FormattingToolbar/DefaultButtons/FilePreviewButton.tsx index 9e8fcb0425..1368652303 100644 --- a/packages/react/src/components/FormattingToolbar/DefaultButtons/FilePreviewButton.tsx +++ b/packages/react/src/components/FormattingToolbar/DefaultButtons/FilePreviewButton.tsx @@ -1,13 +1,14 @@ import { - blockHasType, + blockHasZodProps, BlockSchema, - editorHasBlockWithType, InlineContentSchema, + isFileBlock, StyleSchema, } from "@blocknote/core"; import { useCallback, useMemo } from "react"; import { RiImageAddFill } from "react-icons/ri"; +import { optionalFileZodPropSchema } from "../../../../../core/src/blocks/defaultFileProps.js"; import { useComponentsContext } from "../../../editor/ComponentsContext.js"; import { useBlockNoteEditor } from "../../../hooks/useBlockNoteEditor.js"; import { useSelectedBlocks } from "../../../hooks/useSelectedBlocks.js"; @@ -34,10 +35,12 @@ export const FilePreviewButton = () => { const block = selectedBlocks[0]; if ( - blockHasType(block, editor, block.type, { - url: "string", - showPreview: "boolean", - }) + isFileBlock(editor, block.type) && + blockHasZodProps( + block, + editor, + optionalFileZodPropSchema.pick({ url: true, showPreview: true }), + ) ) { return block; } @@ -46,12 +49,7 @@ export const FilePreviewButton = () => { }, [editor, selectedBlocks]); const onClick = useCallback(() => { - if ( - fileBlock && - editorHasBlockWithType(editor, fileBlock.type, { - showPreview: "boolean", - }) - ) { + if (fileBlock) { editor.updateBlock(fileBlock, { props: { showPreview: !fileBlock.props.showPreview, diff --git a/packages/react/src/components/FormattingToolbar/DefaultButtons/FileRenameButton.tsx b/packages/react/src/components/FormattingToolbar/DefaultButtons/FileRenameButton.tsx index 583494917f..9bbed31560 100644 --- a/packages/react/src/components/FormattingToolbar/DefaultButtons/FileRenameButton.tsx +++ b/packages/react/src/components/FormattingToolbar/DefaultButtons/FileRenameButton.tsx @@ -1,8 +1,7 @@ import { - blockHasType, BlockSchema, - editorHasBlockWithType, InlineContentSchema, + isFileBlock, StyleSchema, } from "@blocknote/core"; import { @@ -41,12 +40,7 @@ export const FileRenameButton = () => { const block = selectedBlocks[0]; - if ( - blockHasType(block, editor, block.type, { - url: "string", - name: "string", - }) - ) { + if (isFileBlock(editor, block.type)) { setCurrentEditingName(block.props.name); return block; } @@ -56,13 +50,7 @@ export const FileRenameButton = () => { const handleEnter = useCallback( (event: KeyboardEvent) => { - if ( - fileBlock && - editorHasBlockWithType(editor, fileBlock.type, { - name: "string", - }) && - event.key === "Enter" - ) { + if (fileBlock && event.key === "Enter") { event.preventDefault(); editor.updateBlock(fileBlock, { props: { diff --git a/packages/react/src/components/FormattingToolbar/DefaultButtons/FileReplaceButton.tsx b/packages/react/src/components/FormattingToolbar/DefaultButtons/FileReplaceButton.tsx index ed68593186..33f3e0efc6 100644 --- a/packages/react/src/components/FormattingToolbar/DefaultButtons/FileReplaceButton.tsx +++ b/packages/react/src/components/FormattingToolbar/DefaultButtons/FileReplaceButton.tsx @@ -1,7 +1,7 @@ import { - blockHasType, BlockSchema, InlineContentSchema, + isFileBlock, StyleSchema, } from "@blocknote/core"; import { useEffect, useState } from "react"; @@ -35,9 +35,7 @@ export const FileReplaceButton = () => { if ( block === undefined || - !blockHasType(block, editor, block.type, { - url: "string", - }) || + !isFileBlock(editor, block.type) || !editor.isEditable ) { return null; diff --git a/packages/react/src/components/FormattingToolbar/DefaultButtons/TableCellMergeButton.tsx b/packages/react/src/components/FormattingToolbar/DefaultButtons/TableCellMergeButton.tsx index bb11326a08..bf61b8aa0c 100644 --- a/packages/react/src/components/FormattingToolbar/DefaultButtons/TableCellMergeButton.tsx +++ b/packages/react/src/components/FormattingToolbar/DefaultButtons/TableCellMergeButton.tsx @@ -1,4 +1,5 @@ import { + BlockFromConfig, DefaultBlockSchema, InlineContentSchema, StyleSchema, @@ -33,7 +34,9 @@ export const TableCellMergeButton = () => { const block = selectedBlocks[0]; if (block.type === "table") { - return editor.tableHandles?.getMergeDirection(block); + return editor.tableHandles?.getMergeDirection( + block as BlockFromConfig, + ); } return undefined; diff --git a/packages/react/src/components/FormattingToolbar/DefaultButtons/TextAlignButton.tsx b/packages/react/src/components/FormattingToolbar/DefaultButtons/TextAlignButton.tsx index 05b38f6a7a..ff041a1434 100644 --- a/packages/react/src/components/FormattingToolbar/DefaultButtons/TextAlignButton.tsx +++ b/packages/react/src/components/FormattingToolbar/DefaultButtons/TextAlignButton.tsx @@ -1,9 +1,8 @@ import { - blockHasType, + blockHasZodProps, BlockSchema, - defaultProps, - DefaultProps, - editorHasBlockWithType, + DefaultPropSchema, + defaultZodPropSchema, InlineContentSchema, mapTableCell, StyleSchema, @@ -23,7 +22,7 @@ import { useBlockNoteEditor } from "../../../hooks/useBlockNoteEditor.js"; import { useSelectedBlocks } from "../../../hooks/useSelectedBlocks.js"; import { useDictionary } from "../../../i18n/dictionary.js"; -type TextAlignment = DefaultProps["textAlignment"]; +type TextAlignment = DefaultPropSchema["textAlignment"]; const icons: Record = { left: RiAlignLeft, @@ -48,9 +47,11 @@ export const TextAlignButton = (props: { textAlignment: TextAlignment }) => { const block = selectedBlocks[0]; if ( - blockHasType(block, editor, block.type, { - textAlignment: defaultProps.textAlignment, - }) + blockHasZodProps( + block, + editor, + defaultZodPropSchema.pick({ textAlignment: true }), + ) ) { return block.props.textAlignment; } @@ -81,12 +82,11 @@ export const TextAlignButton = (props: { textAlignment: TextAlignment }) => { for (const block of selectedBlocks) { if ( - blockHasType(block, editor, block.type, { - textAlignment: defaultProps.textAlignment, - }) && - editorHasBlockWithType(editor, block.type, { - textAlignment: defaultProps.textAlignment, - }) + blockHasZodProps( + block, + editor, + defaultZodPropSchema.pick({ textAlignment: true }), + ) ) { editor.updateBlock(block, { props: { textAlignment: textAlignment }, @@ -134,9 +134,11 @@ export const TextAlignButton = (props: { textAlignment: TextAlignment }) => { const show = useMemo(() => { return !!selectedBlocks.find( (block) => - blockHasType(block, editor, block.type, { - textAlignment: defaultProps.textAlignment, - }) || + blockHasZodProps( + block, + editor, + defaultZodPropSchema.pick({ textAlignment: true }), + ) || (block.type === "table" && block.children), ); }, [editor, selectedBlocks]); diff --git a/packages/react/src/components/FormattingToolbar/DefaultSelects/BlockTypeSelect.tsx b/packages/react/src/components/FormattingToolbar/DefaultSelects/BlockTypeSelect.tsx index 3aa6f3165d..c53d06bfaf 100644 --- a/packages/react/src/components/FormattingToolbar/DefaultSelects/BlockTypeSelect.tsx +++ b/packages/react/src/components/FormattingToolbar/DefaultSelects/BlockTypeSelect.tsx @@ -1,7 +1,8 @@ import { BlockSchema, Dictionary, - editorHasBlockWithType, + editorHasBlockType, + editorHasBlockTypeAndPropsAreValid, InlineContentSchema, StyleSchema, } from "@blocknote/core"; @@ -45,7 +46,7 @@ export const blockTypeSelectItems = ( icon: RiText, }, { - name: dict.slash_menu.heading.title, + name: dict.slash_menu.heading_1.title, type: "heading", props: { level: 1, isToggleable: false }, icon: RiH1, @@ -81,7 +82,7 @@ export const blockTypeSelectItems = ( icon: RiH6, }, { - name: dict.slash_menu.toggle_heading.title, + name: dict.slash_menu.toggle_heading_1.title, type: "heading", props: { level: 1, isToggleable: true }, icon: RiH1, @@ -142,16 +143,9 @@ export const BlockTypeSelect = (props: { items?: BlockTypeSelectItem[] }) => { const filteredItems = useMemo( () => (props.items || blockTypeSelectItems(editor.dictionary)).filter((item) => - editorHasBlockWithType( - editor, - item.type, - Object.fromEntries( - Object.entries(item.props || {}).map(([propName, propValue]) => [ - propName, - typeof propValue, - ]), - ) as Record, - ), + item.props + ? editorHasBlockTypeAndPropsAreValid(editor, item.type, item.props) + : editorHasBlockType(editor, item.type), ), [editor, props.items], ); diff --git a/packages/react/src/components/FormattingToolbar/FormattingToolbarController.tsx b/packages/react/src/components/FormattingToolbar/FormattingToolbarController.tsx index 6ce960d035..bc49aa87fd 100644 --- a/packages/react/src/components/FormattingToolbar/FormattingToolbarController.tsx +++ b/packages/react/src/components/FormattingToolbar/FormattingToolbarController.tsx @@ -1,6 +1,6 @@ import { BlockSchema, - DefaultProps, + DefaultPropSchema, InlineContentSchema, StyleSchema, } from "@blocknote/core"; @@ -17,7 +17,7 @@ import { FormattingToolbar } from "./FormattingToolbar.js"; import { FormattingToolbarProps } from "./FormattingToolbarProps.js"; const textAlignmentToPlacement = ( - textAlignment: DefaultProps["textAlignment"], + textAlignment: DefaultPropSchema["textAlignment"], ) => { switch (textAlignment) { case "left": @@ -52,7 +52,7 @@ export const FormattingToolbarController = (props: { } return textAlignmentToPlacement( - block.props.textAlignment as DefaultProps["textAlignment"], + block.props.textAlignment as DefaultPropSchema["textAlignment"], ); }, ); @@ -65,7 +65,7 @@ export const FormattingToolbarController = (props: { } else { setPlacement( textAlignmentToPlacement( - block.props.textAlignment as DefaultProps["textAlignment"], + block.props.textAlignment as DefaultPropSchema["textAlignment"], ), ); } diff --git a/packages/react/src/components/SideMenu/DragHandleMenu/DefaultItems/BlockColorsItem.tsx b/packages/react/src/components/SideMenu/DragHandleMenu/DefaultItems/BlockColorsItem.tsx index 24a738960e..199531ae39 100644 --- a/packages/react/src/components/SideMenu/DragHandleMenu/DefaultItems/BlockColorsItem.tsx +++ b/packages/react/src/components/SideMenu/DragHandleMenu/DefaultItems/BlockColorsItem.tsx @@ -1,11 +1,11 @@ import { Block, - blockHasType, BlockSchema, DefaultBlockSchema, DefaultInlineContentSchema, DefaultStyleSchema, - editorHasBlockWithType, + defaultZodPropSchema, + editorHasBlockTypeAndZodProps, InlineContentSchema, StyleSchema, } from "@blocknote/core"; @@ -29,18 +29,19 @@ export const BlockColorsItem = < const editor = useBlockNoteEditor(); - // We cast the block to a generic one, as the base type causes type errors - // with runtime type checking using `blockHasType`. Runtime type checking is - // more valuable than static checks, so better to do it like this. const block = props.block as Block; if ( - !blockHasType(block, editor, block.type, { - textColor: "string", - }) && - !blockHasType(block, editor, block.type, { - backgroundColor: "string", - }) + !editorHasBlockTypeAndZodProps( + editor, + block.type, + defaultZodPropSchema.pick({ textColor: true }), + ) && + !editorHasBlockTypeAndZodProps( + editor, + block.type, + defaultZodPropSchema.pick({ backgroundColor: true }), + ) ) { return null; } @@ -63,12 +64,11 @@ export const BlockColorsItem = < @@ -80,12 +80,11 @@ export const BlockColorsItem = < : undefined } background={ - blockHasType(block, editor, block.type, { - backgroundColor: "string", - }) && - editorHasBlockWithType(editor, block.type, { - backgroundColor: "string", - }) + editorHasBlockTypeAndZodProps( + editor, + block.type, + defaultZodPropSchema.pick({ backgroundColor: true }), + ) ? { color: block.props.backgroundColor, setColor: (color) => diff --git a/packages/react/src/components/SideMenu/DragHandleMenu/DefaultItems/TableHeadersItem.tsx b/packages/react/src/components/SideMenu/DragHandleMenu/DefaultItems/TableHeadersItem.tsx index 29917f00ac..65cdffa3ca 100644 --- a/packages/react/src/components/SideMenu/DragHandleMenu/DefaultItems/TableHeadersItem.tsx +++ b/packages/react/src/components/SideMenu/DragHandleMenu/DefaultItems/TableHeadersItem.tsx @@ -1,10 +1,10 @@ import { + BlockFromConfig, BlockSchema, DefaultBlockSchema, DefaultInlineContentSchema, DefaultStyleSchema, InlineContentSchema, - SpecificBlock, StyleSchema, } from "@blocknote/core"; import { ReactNode } from "react"; @@ -19,7 +19,7 @@ export const TableRowHeaderItem = < S extends StyleSchema = DefaultStyleSchema, >( props: Omit, "block"> & { - block: SpecificBlock<{ table: DefaultBlockSchema["table"] }, "table", I, S>; + block: BlockFromConfig; children: ReactNode; }, ) => { @@ -68,7 +68,7 @@ export const TableColumnHeaderItem = < S extends StyleSchema = DefaultStyleSchema, >( props: Omit, "block"> & { - block: SpecificBlock<{ table: DefaultBlockSchema["table"] }, "table", I, S>; + block: BlockFromConfig; children: ReactNode; }, ) => { diff --git a/packages/react/src/components/TableHandles/TableCellMenu/DefaultButtons/ColorPicker.tsx b/packages/react/src/components/TableHandles/TableCellMenu/DefaultButtons/ColorPicker.tsx index eddbc6b5c7..9800e93540 100644 --- a/packages/react/src/components/TableHandles/TableCellMenu/DefaultButtons/ColorPicker.tsx +++ b/packages/react/src/components/TableHandles/TableCellMenu/DefaultButtons/ColorPicker.tsx @@ -8,12 +8,12 @@ import { StyleSchema, } from "@blocknote/core"; +import { ReactNode } from "react"; import { useComponentsContext } from "../../../../editor/ComponentsContext.js"; import { useBlockNoteEditor } from "../../../../hooks/useBlockNoteEditor.js"; import { useDictionary } from "../../../../i18n/dictionary.js"; import { ColorPicker } from "../../../ColorPicker/ColorPicker.js"; import { TableCellMenuProps } from "../TableCellMenuProps.js"; -import { ReactNode } from "react"; export const ColorPickerButton = < I extends InlineContentSchema = DefaultInlineContentSchema, diff --git a/packages/react/src/components/TableHandles/TableCellMenu/TableCellMenuProps.ts b/packages/react/src/components/TableHandles/TableCellMenu/TableCellMenuProps.ts index b2af7056d4..2223cb4260 100644 --- a/packages/react/src/components/TableHandles/TableCellMenu/TableCellMenuProps.ts +++ b/packages/react/src/components/TableHandles/TableCellMenu/TableCellMenuProps.ts @@ -1,9 +1,9 @@ import { + BlockFromConfig, DefaultBlockSchema, DefaultInlineContentSchema, DefaultStyleSchema, InlineContentSchema, - SpecificBlock, StyleSchema, } from "@blocknote/core"; @@ -11,7 +11,7 @@ export type TableCellMenuProps< I extends InlineContentSchema = DefaultInlineContentSchema, S extends StyleSchema = DefaultStyleSchema, > = { - block: SpecificBlock<{ table: DefaultBlockSchema["table"] }, "table", I, S>; + block: BlockFromConfig; rowIndex: number; colIndex: number; }; diff --git a/packages/react/src/components/TableHandles/TableHandleMenu/TableHandleMenuProps.ts b/packages/react/src/components/TableHandles/TableHandleMenu/TableHandleMenuProps.ts index 74477f8286..315a2b2d0d 100644 --- a/packages/react/src/components/TableHandles/TableHandleMenu/TableHandleMenuProps.ts +++ b/packages/react/src/components/TableHandles/TableHandleMenu/TableHandleMenuProps.ts @@ -1,9 +1,9 @@ -import { +import type { + BlockFromConfig, DefaultBlockSchema, DefaultInlineContentSchema, DefaultStyleSchema, InlineContentSchema, - SpecificBlock, StyleSchema, } from "@blocknote/core"; @@ -12,6 +12,6 @@ export type TableHandleMenuProps< S extends StyleSchema = DefaultStyleSchema, > = { orientation: "row" | "column"; - block: SpecificBlock<{ table: DefaultBlockSchema["table"] }, "table", I, S>; + block: BlockFromConfig; index: number; }; diff --git a/packages/react/src/editor/BlockNoteContext.ts b/packages/react/src/editor/BlockNoteContext.ts index 5ee613e5dc..6a6bc10bc7 100644 --- a/packages/react/src/editor/BlockNoteContext.ts +++ b/packages/react/src/editor/BlockNoteContext.ts @@ -1,6 +1,6 @@ import { BlockNoteEditor, - BlockNoteSchema, + CustomBlockNoteSchema, BlockSchema, DefaultBlockSchema, DefaultInlineContentSchema, @@ -33,7 +33,7 @@ export function useBlockNoteContext< ISchema extends InlineContentSchema = DefaultInlineContentSchema, SSchema extends StyleSchema = DefaultStyleSchema, >( - _schema?: BlockNoteSchema, + _schema?: CustomBlockNoteSchema, ): BlockNoteContextValue | undefined { const context = useContext(BlockNoteContext) as any; diff --git a/packages/react/src/hooks/useBlockNoteEditor.ts b/packages/react/src/hooks/useBlockNoteEditor.ts index 881179d309..f3a2b0baab 100644 --- a/packages/react/src/hooks/useBlockNoteEditor.ts +++ b/packages/react/src/hooks/useBlockNoteEditor.ts @@ -1,6 +1,6 @@ import { BlockNoteEditor, - BlockNoteSchema, + CustomBlockNoteSchema, BlockSchema, DefaultBlockSchema, DefaultInlineContentSchema, @@ -20,7 +20,7 @@ export function useBlockNoteEditor< ISchema extends InlineContentSchema = DefaultInlineContentSchema, SSchema extends StyleSchema = DefaultStyleSchema, >( - _schema?: BlockNoteSchema, + _schema?: CustomBlockNoteSchema, ): BlockNoteEditor { const context = useBlockNoteContext(_schema); diff --git a/packages/react/src/schema/ReactBlockSpec.tsx b/packages/react/src/schema/ReactBlockSpec.tsx index 4abf2a116b..2b8caca9c8 100644 --- a/packages/react/src/schema/ReactBlockSpec.tsx +++ b/packages/react/src/schema/ReactBlockSpec.tsx @@ -1,7 +1,7 @@ import { + Block, BlockConfig, BlockImplementation, - BlockNoDefaults, BlockNoteEditor, BlockNoteExtension, BlockSpec, @@ -19,6 +19,7 @@ import { useReactNodeView, } from "@tiptap/react"; import { FC, ReactNode } from "react"; +import * as z from "zod/v4/core"; import { renderToDOMSpec } from "./@util/ReactRenderUtil.js"; // this file is mostly analogoues to `customBlocks.ts`, but for React blocks @@ -28,16 +29,8 @@ export type ReactCustomBlockRenderProps< TProps extends PropSchema = PropSchema, TContent extends "inline" | "none" = "inline" | "none", > = { - block: BlockNoDefaults< - Record>, - any, - any - >; - editor: BlockNoteEditor< - Record>, - any, - any - >; + block: Block>, any, any>; + editor: BlockNoteEditor; contentRef: (node: HTMLElement | null) => void; }; @@ -99,13 +92,21 @@ export function BlockContentWrapper< // props which are already added as HTML attributes to the parent // `blockContent` element (inheritedProps) and props set to their default // values + // TODO: reuse same code from core {...Object.fromEntries( Object.entries(props.blockProps) .filter(([prop, value]) => { - const spec = props.propSchema[prop]; - return value !== spec.default; + const spec = props.propSchema._zodSource._zod.def.shape[prop]; + const defaultValue = + spec instanceof z.$ZodDefault + ? spec._zod.def.defaultValue + : undefined; + return value !== defaultValue; }) .map(([prop, value]) => { + if (typeof value === "object") { + return [camelToDataKebab(prop), JSON.stringify(value)]; + } return [camelToDataKebab(prop), value]; }), )} @@ -262,12 +263,13 @@ export function createReactBlockSpec< // only created once, so the block we get in the node view will // be outdated. Therefore, we have to get the block in the // `ReactNodeViewRenderer` instead. - const block = getBlockFromPos( - props.getPos, - editor, - props.editor, - blockConfig.type, - ); + const block = getBlockFromPos< + TName, + BlockConfig, + any, + any, + any + >(props.getPos, editor as any, props.editor, blockConfig.type); const ref = useReactNodeView().nodeViewContentRef; diff --git a/packages/react/src/schema/ReactInlineContentSpec.tsx b/packages/react/src/schema/ReactInlineContentSpec.tsx index 341c8981e5..577fc2e585 100644 --- a/packages/react/src/schema/ReactInlineContentSpec.tsx +++ b/packages/react/src/schema/ReactInlineContentSpec.tsx @@ -13,6 +13,7 @@ import { inlineContentToNodes, nodeToCustomInlineContent, PartialCustomInlineContentFromConfig, + partialInlineContentToInlineContent, Props, PropSchema, propsToAttributes, @@ -25,6 +26,7 @@ import { ReactNodeViewRenderer, useReactNodeView, } from "@tiptap/react"; +import * as z from "zod/v4/core"; // import { useReactNodeView } from "@tiptap/react/dist/packages/react/src/useReactNodeView"; import { FC, JSX } from "react"; import { renderToDOMSpec } from "./@util/ReactRenderUtil.js"; @@ -78,13 +80,21 @@ export function InlineContentWrapper< data-inline-content-type={props.inlineContentType} // Adds props as HTML attributes in kebab-case with "data-" prefix. Skips // props set to their default values. + // TODO: reuse same code from core {...Object.fromEntries( Object.entries(props.inlineContentProps) .filter(([prop, value]) => { - const spec = props.propSchema[prop]; - return value !== spec.default; + const spec = props.propSchema._zodSource._zod.def.shape[prop]; + const defaultValue = + spec instanceof z.$ZodDefault + ? spec._zod.def.defaultValue + : undefined; + return value !== defaultValue; }) .map(([prop, value]) => { + if (typeof value === "object") { + return [camelToDataKebab(prop), JSON.stringify(value)]; + } return [camelToDataKebab(prop), value]; }), )} @@ -202,8 +212,12 @@ export function createReactInlineContentSpec< ) as any as InlineContentFromConfig // TODO: fix cast } updateInlineContent={(update) => { - const content = inlineContentToNodes( + const fullUpdate = partialInlineContentToInlineContent( [update], + editor.schema.inlineContentSchema, + ); + const content = inlineContentToNodes( + fullUpdate, editor.pmSchema, ); diff --git a/packages/server-util/src/context/ServerBlockNoteEditor.ts b/packages/server-util/src/context/ServerBlockNoteEditor.ts index 3068bf2f39..49625cc807 100644 --- a/packages/server-util/src/context/ServerBlockNoteEditor.ts +++ b/packages/server-util/src/context/ServerBlockNoteEditor.ts @@ -3,11 +3,11 @@ import { BlockNoteEditor, BlockNoteEditorOptions, BlockSchema, + CustomBlockNoteSchema, DefaultBlockSchema, DefaultInlineContentSchema, DefaultStyleSchema, InlineContentSchema, - PartialBlock, StyleSchema, blocksToMarkdown, createExternalHTMLExporter, @@ -16,9 +16,9 @@ import { } from "@blocknote/core"; import { _blocksToProsemirrorNode as blocksToProsemirrorNodeUtil, - _prosemirrorJSONToBlocks as prosemirrorJSONToBlocksUtil, blocksToYDoc as blocksToYDocUtil, blocksToYXmlFragment as blocksToYXmlFragmentUtil, + _prosemirrorJSONToBlocks as prosemirrorJSONToBlocksUtil, yDocToBlocks as yDocToBlocksUtil, yXmlFragmentToBlocks as yXmlFragmentToBlocksUtil, } from "@blocknote/core/yjs"; @@ -77,15 +77,19 @@ export class ServerBlockNoteEditor< } public static create< - BSchema extends BlockSchema = DefaultBlockSchema, - ISchema extends InlineContentSchema = DefaultInlineContentSchema, - SSchema extends StyleSchema = DefaultStyleSchema, - >(options: Partial> = {}) { - return new ServerBlockNoteEditor(options) as ServerBlockNoteEditor< - BSchema, - ISchema, - SSchema - >; + Options extends Partial> | undefined, + >( + options?: Options, + ): Options extends { + schema: CustomBlockNoteSchema; + } + ? ServerBlockNoteEditor + : ServerBlockNoteEditor< + DefaultBlockSchema, + DefaultInlineContentSchema, + DefaultStyleSchema + > { + return new ServerBlockNoteEditor(options ?? {}) as any; } protected constructor( @@ -120,7 +124,7 @@ export class ServerBlockNoteEditor< * @returns Prosemirror root node */ public _blocksToProsemirrorNode( - blocks: PartialBlock[], + blocks: Block[], ) { return blocksToProsemirrorNodeUtil(this.editor, blocks); } @@ -168,7 +172,7 @@ export class ServerBlockNoteEditor< * @param blocks */ public blocksToYDoc( - blocks: PartialBlock[], + blocks: Block[], xmlFragment = "prosemirror", ) { return blocksToYDocUtil(this.editor, blocks, xmlFragment); @@ -184,7 +188,7 @@ export class ServerBlockNoteEditor< * @returns The blocks, serialized as an HTML string. */ public async blocksToHTMLLossy( - blocks: PartialBlock[], + blocks: Block[], ): Promise { return this._withJSDOM(async () => { const exporter = createExternalHTMLExporter( @@ -208,7 +212,7 @@ export class ServerBlockNoteEditor< * @returns The blocks, serialized as an HTML string. */ public async blocksToFullHTML( - blocks: PartialBlock[], + blocks: Block[], ): Promise { return this._withJSDOM(async () => { const exporter = createInternalHTMLSerializer( @@ -246,7 +250,7 @@ export class ServerBlockNoteEditor< * @returns The blocks, serialized as a Markdown string. */ public async blocksToMarkdownLossy( - blocks: PartialBlock[], + blocks: Block[], ): Promise { return this._withJSDOM(async () => { return blocksToMarkdown(blocks, this.editor.pmSchema, this.editor, { diff --git a/packages/server-util/src/context/__snapshots__/ServerBlockNoteEditor.test.ts.snap b/packages/server-util/src/context/__snapshots__/ServerBlockNoteEditor.test.ts.snap index 3179609ca8..90a1e5e3c0 100644 --- a/packages/server-util/src/context/__snapshots__/ServerBlockNoteEditor.test.ts.snap +++ b/packages/server-util/src/context/__snapshots__/ServerBlockNoteEditor.test.ts.snap @@ -218,6 +218,7 @@ exports[`Test ServerBlockNoteEditor > converts to and from markdown (blocksToMar "backgroundColor": "default", "caption": "", "name": "Example", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "exampleURL", diff --git a/packages/server-util/src/context/react/ReactServer.test.tsx b/packages/server-util/src/context/react/ReactServer.test.tsx index 57c66709e1..c30d26fc0a 100644 --- a/packages/server-util/src/context/react/ReactServer.test.tsx +++ b/packages/server-util/src/context/react/ReactServer.test.tsx @@ -1,7 +1,8 @@ import { BlockNoteSchema, defaultBlockSpecs, - defaultProps, + defaultPropSchema, + partialBlockToBlock, } from "@blocknote/core"; import { createReactBlockSpec } from "@blocknote/react"; import { createContext, useContext } from "react"; @@ -11,7 +12,7 @@ import { ServerBlockNoteEditor } from "../ServerBlockNoteEditor.js"; const SimpleReactCustomParagraph = createReactBlockSpec( { type: "simpleReactCustomParagraph" as const, - propSchema: defaultProps, + propSchema: defaultPropSchema, content: "inline" as const, }, () => ({ @@ -35,7 +36,7 @@ const ReactContextParagraphComponent = (props: any) => { const ReactContextParagraph = createReactBlockSpec( { type: "reactContextParagraph" as const, - propSchema: defaultProps, + propSchema: defaultPropSchema, content: "inline" as const, }, { @@ -56,13 +57,12 @@ describe("Test ServerBlockNoteEditor with React blocks", () => { const editor = ServerBlockNoteEditor.create({ schema, }); - const html = await editor.blocksToFullHTML([ - { - id: "1", - type: "simpleReactCustomParagraph", - content: "React Custom Paragraph", - }, - ]); + const fullBlock = partialBlockToBlock(editor.editor.schema, { + id: "1", + type: "simpleReactCustomParagraph", + content: "React Custom Paragraph", + }); + const html = await editor.blocksToFullHTML([fullBlock]); expect(html).toMatchSnapshot(); }); @@ -75,14 +75,14 @@ describe("Test ServerBlockNoteEditor with React blocks", () => { ({ children }) => ( {children} ), - async () => - editor.blocksToFullHTML([ - { - id: "1", - type: "reactContextParagraph", - content: "React Context Paragraph", - }, - ]), + async () => { + const fullBlock = partialBlockToBlock(editor.editor.schema, { + id: "1", + type: "reactContextParagraph", + content: "React Context Paragraph", + }); + return editor.blocksToFullHTML([fullBlock]); + }, ); expect(html).toMatchSnapshot(); diff --git a/packages/xl-ai/package.json b/packages/xl-ai/package.json index e873b54eaa..ad6b67207a 100644 --- a/packages/xl-ai/package.json +++ b/packages/xl-ai/package.json @@ -87,7 +87,8 @@ "remark-stringify": "^11.0.0", "unified": "^11.0.5", "y-prosemirror": "^1.3.7", - "zustand": "^5.0.8" + "zustand": "^5.0.8", + "zod": "^4.0.0" }, "devDependencies": { "@ai-sdk/anthropic": "^2.0.31", diff --git a/packages/xl-ai/src/api/formats/json/tools/index.ts b/packages/xl-ai/src/api/formats/json/tools/index.ts index 820e3e6aa4..c29e3b2b01 100644 --- a/packages/xl-ai/src/api/formats/json/tools/index.ts +++ b/packages/xl-ai/src/api/formats/json/tools/index.ts @@ -1,4 +1,4 @@ -import { defaultProps, type PartialBlock } from "@blocknote/core"; +import { defaultZodPropSchema, type PartialBlock } from "@blocknote/core"; import { getApplySuggestionsTr, rebaseTool, @@ -38,18 +38,14 @@ export const tools = { rebaseTool: async (_id, editor) => rebaseTool(editor, getApplySuggestionsTr(editor)), toJSONToolCall: async (_editor, chunk) => { - const defaultPropsVals = Object.fromEntries( - Object.entries(defaultProps).map(([key, val]) => { - return [key, val.default]; - }), - ); + const defaults = defaultZodPropSchema.parse({}); return { ...chunk.operation, block: { ...chunk.operation.block, props: { - ...defaultPropsVals, + ...defaults, ...chunk.operation.block.props, }, }, diff --git a/packages/xl-ai/src/api/schema/schemaToJSONSchema.ts b/packages/xl-ai/src/api/schema/schemaToJSONSchema.ts index 0ee05de3b1..880a85f1b0 100644 --- a/packages/xl-ai/src/api/schema/schemaToJSONSchema.ts +++ b/packages/xl-ai/src/api/schema/schemaToJSONSchema.ts @@ -1,11 +1,14 @@ import { - BlockNoteSchema, BlockSchema, + CustomBlockNoteSchema, InlineContentSchema, PropSchema, StyleSchema, - defaultProps, + createPropSchemaFromZod, + defaultPropSchema, } from "@blocknote/core"; +import * as z4 from "zod/v4"; +import * as z from "zod/v4/core"; import { SimpleJSONObjectSchema } from "./JSONSchema.js"; import { mergeSchemas } from "./mergeSchema.js"; /* @@ -122,21 +125,43 @@ function styledTextToJSONSchema() { export function propSchemaToJSONSchema( propSchema: PropSchema, ): SimpleJSONObjectSchema { + // FIXME: we can use something like zod-to-json-schema to generate this + // (for now this code is not used by default, only in experimental JSON mode) return { type: "object", properties: Object.fromEntries( - Object.entries(propSchema) + Object.entries(propSchema._zodSource._zod.def.shape) .filter(([_key, val]) => { // for now skip optional props - return val.default !== undefined; + return !(val instanceof z.$ZodOptional); //&& key !== "language"; }) .map(([key, val]) => { + const v = val instanceof z.$ZodDefault ? val._zod.def.innerType : val; + + // hardcoded for now (see note above to migrate to zod-to-json-schema) + if (v instanceof z.$ZodUnion) { + let type = "object"; + // [0] assumes all options have the same type + if (v._zod.def.options[0] instanceof z.$ZodLiteral) { + type = typeof v._zod.def.options[0]._zod.def.values[0]; + } + return [ + key, + { + type, + enum: v._zod.def.options.flatMap((v) => + v instanceof z.$ZodLiteral ? v._zod.def.values : undefined, + ), + }, + ]; + } + return [ key, { - type: typeof val.default, - enum: val.values, + type: v._zod.def.type, + enum: undefined, }, ]; }), @@ -237,18 +262,15 @@ function blockSchemaToJSONSchema(schema: BlockSchema) { }; } -type Writeable = { -readonly [P in keyof T]: T[P] }; - function schemaOps( - schema: BlockNoteSchema, + schema: CustomBlockNoteSchema, ) { - const clone: Writeable = JSON.parse( - JSON.stringify({ - blockSchema: schema.blockSchema, - inlineContentSchema: schema.inlineContentSchema, - styleSchema: schema.styleSchema, - }), - ); + const clone = { + blockSchema: schema.blockSchema, + inlineContentSchema: schema.inlineContentSchema, + styleSchema: schema.styleSchema, + }; + return { // TODO removeFileBlocks() { @@ -267,11 +289,18 @@ function schemaOps( key, { ...val, - propSchema: Object.fromEntries( - Object.entries(val.propSchema).filter( - (key) => typeof (defaultProps as any)[key[0]] === "undefined", + propSchema: createPropSchemaFromZod( + z4.object( + Object.fromEntries( + Object.entries( + val.propSchema._zodSource._zod.def.shape, + ).filter( + ([key]) => + !(key in defaultPropSchema._zodSource._zod.def.shape), + ), + ), ), - ) as any, + ), }, ]; }), @@ -286,12 +315,16 @@ function schemaOps( } export function blockNoteSchemaToJSONSchema( - schema: BlockNoteSchema, + schema: CustomBlockNoteSchema, ) { schema = schemaOps(schema) .removeFileBlocks() .removeDefaultProps() - .get() as BlockNoteSchema; + .get() as CustomBlockNoteSchema< + BlockSchema, + InlineContentSchema, + StyleSchema + >; return { $defs: { styles: styleSchemaToJSONSchema(schema.styleSchema), diff --git a/packages/xl-ai/src/testUtil/cases/schemas/mention.ts b/packages/xl-ai/src/testUtil/cases/schemas/mention.ts index 40907bf2b1..5f2503562d 100644 --- a/packages/xl-ai/src/testUtil/cases/schemas/mention.ts +++ b/packages/xl-ai/src/testUtil/cases/schemas/mention.ts @@ -1,13 +1,17 @@ -import { BlockNoteSchema, createInlineContentSpec } from "@blocknote/core"; - +import { + BlockNoteSchema, + createInlineContentSpec, + createPropSchemaFromZod, +} from "@blocknote/core"; +import * as z from "zod/v4"; export const mention = createInlineContentSpec( { type: "mention", - propSchema: { - user: { - default: "", - }, - }, + propSchema: createPropSchemaFromZod( + z.object({ + user: z.string().default(""), + }), + ), content: "none", }, { diff --git a/packages/xl-docx-exporter/src/docx/defaultSchema/blocks.ts b/packages/xl-docx-exporter/src/docx/defaultSchema/blocks.ts index c80818fb96..dac92b1de6 100644 --- a/packages/xl-docx-exporter/src/docx/defaultSchema/blocks.ts +++ b/packages/xl-docx-exporter/src/docx/defaultSchema/blocks.ts @@ -3,10 +3,11 @@ import { COLORS_DEFAULT, createPageBreakBlockConfig, DefaultBlockSchema, - DefaultProps, + DefaultPropSchema, StyledText, UnreachableCaseError, } from "@blocknote/core"; +import { multiColumnSchema } from "@blocknote/xl-multi-column"; import { getImageDimensions } from "@shared/util/imageUtil.js"; import { CheckBox, @@ -23,10 +24,9 @@ import { TextRun, } from "docx"; import { Table } from "../util/Table.js"; -import { multiColumnSchema } from "@blocknote/xl-multi-column"; function blockPropsToStyles( - props: Partial, + props: Partial, colors: typeof COLORS_DEFAULT, ): IParagraphOptions { return { @@ -290,7 +290,7 @@ export const docxBlockMappingForDefaultSchema: BlockMapping< }; function file( - props: Partial, + props: Partial, defaultText: string, exporter: any, ) { @@ -311,7 +311,7 @@ function file( } function caption( - props: Partial, + props: Partial, exporter: any, ) { if (!props.caption) { diff --git a/packages/xl-docx-exporter/src/docx/docxExporter.test.ts b/packages/xl-docx-exporter/src/docx/docxExporter.test.ts index 4b2014931f..c2833fe985 100644 --- a/packages/xl-docx-exporter/src/docx/docxExporter.test.ts +++ b/packages/xl-docx-exporter/src/docx/docxExporter.test.ts @@ -1,8 +1,10 @@ import { BlockNoteSchema, - defaultBlockSpecs, createPageBreakBlockSpec, + defaultBlockSpecs, + partialBlocksToBlocks, } from "@blocknote/core"; +import { ColumnBlock, ColumnListBlock } from "@blocknote/xl-multi-column"; import { testDocument } from "@shared/testDocument.js"; import { BlobReader, @@ -16,8 +18,6 @@ import { describe, expect, it } from "vitest"; import xmlFormat from "xml-formatter"; import { docxDefaultSchemaMappings } from "./defaultSchema/index.js"; import { DOCXExporter } from "./docxExporter.js"; -import { ColumnBlock, ColumnListBlock } from "@blocknote/xl-multi-column"; -import { partialBlocksToBlocksForTesting } from "@shared/formatConversionTestUtil.js"; const getZIPEntryContent = (entries: Entry[], fileName: string) => { const entry = entries.find((entry) => { @@ -146,64 +146,66 @@ describe("exporter", () => { }, }); const exporter = new DOCXExporter(schema, docxDefaultSchemaMappings); - const doc = await exporter.toDocxJsDocument( - partialBlocksToBlocksForTesting(schema, [ - { - type: "columnList", - children: [ - { - type: "column", - props: { - width: 0.8, - }, - children: [ - { - type: "paragraph", - content: "This paragraph is in a column!", - }, - ], + const blocks = partialBlocksToBlocks(schema, [ + { + type: "columnList", + children: [ + { + type: "column", + props: { + width: 0.8, }, - { - type: "column", - props: { - width: 1.4, + children: [ + { + type: "paragraph", + content: "This paragraph is in a column!", }, - children: [ - { - type: "heading", - content: "So is this heading!", - }, - ], + ], + }, + { + type: "column", + props: { + width: 1.4, }, - { - type: "column", - props: { - width: 0.8, + children: [ + { + type: "heading", + content: "So is this heading!", }, - children: [ - { - type: "paragraph", - content: "You can have multiple blocks in a column too", - }, - { - type: "bulletListItem", - content: "Block 1", - }, - { - type: "bulletListItem", - content: "Block 2", - }, - { - type: "bulletListItem", - content: "Block 3", - }, - ], + ], + }, + { + type: "column", + props: { + width: 0.8, }, - ], - }, - ]), - { sectionOptions: {}, documentOptions: {}, locale: "en-US" }, - ); + children: [ + { + type: "paragraph", + content: "You can have multiple blocks in a column too", + }, + { + type: "bulletListItem", + content: "Block 1", + }, + { + type: "bulletListItem", + content: "Block 2", + }, + { + type: "bulletListItem", + content: "Block 3", + }, + ], + }, + ], + }, + ]); + const doc = await exporter.toDocxJsDocument(blocks, { + sectionOptions: {}, + documentOptions: {}, + locale: "en-US", + }); const blob = await Packer.toBlob(doc); const zip = new ZipReader(new BlobReader(blob)); diff --git a/packages/xl-docx-exporter/src/docx/docxExporter.ts b/packages/xl-docx-exporter/src/docx/docxExporter.ts index 6a79d5c53d..1436ee9da1 100644 --- a/packages/xl-docx-exporter/src/docx/docxExporter.ts +++ b/packages/xl-docx-exporter/src/docx/docxExporter.ts @@ -1,12 +1,16 @@ import { Block, - BlockNoteSchema, BlockSchema, COLORS_DEFAULT, + CustomBlockNoteSchema, + Exporter, + ExporterOptions, InlineContentSchema, StyleSchema, StyledText, } from "@blocknote/core"; +import { corsProxyResolveFileUrl } from "@shared/api/corsProxy.js"; +import { loadFileBuffer } from "@shared/util/fileUtil.js"; import { AlignmentType, Document, @@ -20,11 +24,6 @@ import { Table, TextRun, } from "docx"; - -import { Exporter, ExporterOptions } from "@blocknote/core"; -import { corsProxyResolveFileUrl } from "@shared/api/corsProxy.js"; -import { loadFileBuffer } from "@shared/util/fileUtil.js"; - // get constructor arg type from Document type DocumentOptions = Partial[0]>; @@ -54,7 +53,7 @@ export class DOCXExporter< /** * The schema of your editor. The mappings are automatically typed checked against this schema. */ - protected readonly schema: BlockNoteSchema, + protected readonly schema: CustomBlockNoteSchema, /** * The mappings that map the BlockNote schema to the docxjs content. * Pass {@link docxDefaultSchemaMappings} for the default schema. diff --git a/packages/xl-email-exporter/package.json b/packages/xl-email-exporter/package.json index 34f0ce81a8..975c015318 100644 --- a/packages/xl-email-exporter/package.json +++ b/packages/xl-email-exporter/package.json @@ -61,7 +61,8 @@ "buffer": "^6.0.3", "react": "^19.2.0", "react-dom": "^19.2.0", - "react-email": "^4.3.0" + "react-email": "^4.3.0", + "zod": "^4.0.0" }, "devDependencies": { "@types/jsdom": "^21.1.7", diff --git a/packages/xl-email-exporter/src/react-email/reactEmailExporter.test.tsx b/packages/xl-email-exporter/src/react-email/reactEmailExporter.test.tsx index 6075852536..f36240919e 100644 --- a/packages/xl-email-exporter/src/react-email/reactEmailExporter.test.tsx +++ b/packages/xl-email-exporter/src/react-email/reactEmailExporter.test.tsx @@ -1,17 +1,19 @@ -import { describe, it, expect } from "vitest"; -import { ReactEmailExporter } from "./reactEmailExporter.jsx"; -import { reactEmailDefaultSchemaMappings } from "./defaultSchema/index.js"; import { BlockNoteSchema, createBlockSpec, createInlineContentSpec, createPageBreakBlockSpec, + createPropSchemaFromZod, createStyleSpec, defaultBlockSpecs, defaultInlineContentSpecs, defaultStyleSpecs, } from "@blocknote/core"; import { testDocument } from "@shared/testDocument.js"; +import { describe, expect, it } from "vitest"; +import * as z from "zod/v4"; +import { reactEmailDefaultSchemaMappings } from "./defaultSchema/index.js"; +import { ReactEmailExporter } from "./reactEmailExporter.jsx"; describe("react email exporter", () => { it("should export a document (HTML snapshot)", async () => { @@ -33,7 +35,7 @@ describe("react email exporter", () => { { content: "none", type: "extraBlock", - propSchema: {}, + propSchema: createPropSchemaFromZod(z.object({})), }, {} as any, )(), @@ -75,7 +77,7 @@ describe("react email exporter", () => { { type: "extraInlineContent", content: "styled", - propSchema: {}, + propSchema: createPropSchemaFromZod(z.object({})), }, {} as any, ), diff --git a/packages/xl-email-exporter/src/react-email/reactEmailExporter.tsx b/packages/xl-email-exporter/src/react-email/reactEmailExporter.tsx index 3721f569b0..01d749308f 100644 --- a/packages/xl-email-exporter/src/react-email/reactEmailExporter.tsx +++ b/packages/xl-email-exporter/src/react-email/reactEmailExporter.tsx @@ -1,9 +1,9 @@ import { Block, - BlockNoteSchema, BlockSchema, COLORS_DEFAULT, - DefaultProps, + CustomBlockNoteSchema, + DefaultPropSchema, Exporter, ExporterOptions, InlineContentSchema, @@ -36,7 +36,7 @@ export class ReactEmailExporter< React.ReactElement > { public constructor( - public readonly schema: BlockNoteSchema, + public readonly schema: CustomBlockNoteSchema, mappings: Exporter< NoInfer, NoInfer, @@ -326,7 +326,7 @@ export class ReactEmailExporter< } protected blocknoteDefaultPropsToReactEmailStyle( - props: Partial, + props: Partial, ): any { return { textAlign: props.textAlignment, diff --git a/packages/xl-multi-column/package.json b/packages/xl-multi-column/package.json index 91af0fb7cb..b1d1e7bf1c 100644 --- a/packages/xl-multi-column/package.json +++ b/packages/xl-multi-column/package.json @@ -59,14 +59,14 @@ "prosemirror-tables": "^1.8.1", "prosemirror-transform": "^1.10.4", "prosemirror-view": "^1.41.3", - "react-icons": "^5.5.0" + "react-icons": "^5.5.0", + "zod": "^4.0.0" }, "devDependencies": { "@types/react": "^19.2.2", "@types/react-dom": "^19.2.2", - "@vitest/ui": "^2.1.9", "eslint": "^8.57.1", - "jsdom": "^21.1.2", + "jsdom": "^25.0.1", "react": "^19.2.0", "react-dom": "^19.2.0", "rimraf": "^5.0.10", diff --git a/packages/xl-multi-column/src/blocks/Columns/index.ts b/packages/xl-multi-column/src/blocks/Columns/index.ts index 8d9bcac3b4..4b70e02d98 100644 --- a/packages/xl-multi-column/src/blocks/Columns/index.ts +++ b/packages/xl-multi-column/src/blocks/Columns/index.ts @@ -1,19 +1,17 @@ +import { createBlockSpecFromTiptapNode, createPropSchemaFromZod } from "@blocknote/core"; +import * as z from "zod/v4"; import { Column } from "../../pm-nodes/Column.js"; import { ColumnList } from "../../pm-nodes/ColumnList.js"; -import { createBlockSpecFromTiptapNode } from "@blocknote/core"; - export const ColumnBlock = createBlockSpecFromTiptapNode( { node: Column, type: "column", content: "none", }, - { - width: { - default: 1, - }, - }, + createPropSchemaFromZod(z.object({ + width: z.number().default(1), + })), ); export const ColumnListBlock = createBlockSpecFromTiptapNode( @@ -22,5 +20,5 @@ export const ColumnListBlock = createBlockSpecFromTiptapNode( type: "columnList", content: "none", }, - {}, + createPropSchemaFromZod(z.object({})), ); diff --git a/packages/xl-multi-column/src/blocks/schema.ts b/packages/xl-multi-column/src/blocks/schema.ts index 4e19ca28cd..49cbd049fb 100644 --- a/packages/xl-multi-column/src/blocks/schema.ts +++ b/packages/xl-multi-column/src/blocks/schema.ts @@ -1,4 +1,5 @@ import { + CustomBlockNoteSchema, BlockNoteSchema, BlockSchema, InlineContentSchema, @@ -21,7 +22,7 @@ export const withMultiColumn = < I extends InlineContentSchema, S extends StyleSchema, >( - schema: BlockNoteSchema, + schema: CustomBlockNoteSchema, ) => { return schema.extend({ blockSpecs: { diff --git a/packages/xl-multi-column/src/test/conversions/htmlConversion.test.ts b/packages/xl-multi-column/src/test/conversions/htmlConversion.test.ts index 78d6462fde..45ff05fde5 100644 --- a/packages/xl-multi-column/src/test/conversions/htmlConversion.test.ts +++ b/packages/xl-multi-column/src/test/conversions/htmlConversion.test.ts @@ -8,11 +8,8 @@ import { StyleSchema, createExternalHTMLExporter, createInternalHTMLSerializer, + partialBlocksToBlocks, } from "@blocknote/core"; -import { - addIdsToBlocks, - partialBlocksToBlocksForTesting, -} from "@shared/formatConversionTestUtil.js"; import { afterEach, beforeEach, describe, expect, it } from "vitest"; import { multiColumnSchemaTestCases } from "./testCases.js"; @@ -28,9 +25,9 @@ async function convertToHTMLAndCompareSnapshots< snapshotDirectory: string, snapshotName: string, ) { - addIdsToBlocks(blocks); + const fullBlocks = partialBlocksToBlocks(editor.schema, blocks); const serializer = createInternalHTMLSerializer(editor.pmSchema, editor); - const internalHTML = serializer.serializeBlocks(blocks, {}); + const internalHTML = serializer.serializeBlocks(fullBlocks, {}); const internalHTMLSnapshotPath = "./__snapshots__/" + snapshotDirectory + @@ -40,14 +37,13 @@ async function convertToHTMLAndCompareSnapshots< await expect(internalHTML).toMatchFileSnapshot(internalHTMLSnapshotPath); // turn the internalHTML back into blocks, and make sure no data was lost - const fullBlocks = partialBlocksToBlocksForTesting(editor.schema, blocks); const parsed = await editor.tryParseHTMLToBlocks(internalHTML); expect(parsed).toStrictEqual(fullBlocks); // Create the "external" HTML, which is a cleaned up HTML representation, but lossy const exporter = createExternalHTMLExporter(editor.pmSchema, editor); - const externalHTML = exporter.exportBlocks(blocks, {}); + const externalHTML = exporter.exportBlocks(fullBlocks, {}); const externalHTMLSnapshotPath = "./__snapshots__/" + snapshotDirectory + diff --git a/packages/xl-multi-column/src/test/conversions/nodeConversion.test.ts b/packages/xl-multi-column/src/test/conversions/nodeConversion.test.ts index 5cad44fe9f..577d9d73c4 100644 --- a/packages/xl-multi-column/src/test/conversions/nodeConversion.test.ts +++ b/packages/xl-multi-column/src/test/conversions/nodeConversion.test.ts @@ -3,40 +3,25 @@ import { afterEach, beforeEach, describe, expect, it } from "vitest"; import { BlockNoteEditor, PartialBlock, - UniqueID, blockToNode, nodeToBlock, + partialBlockToBlock, } from "@blocknote/core"; -import { partialBlockToBlockForTesting } from "@shared/formatConversionTestUtil.js"; import { multiColumnSchemaTestCases } from "./testCases.js"; -function addIdsToBlock(block: PartialBlock) { - if (!block.id) { - block.id = UniqueID.options.generateID(); - } - for (const child of block.children || []) { - addIdsToBlock(child); - } -} - function validateConversion( block: PartialBlock, editor: BlockNoteEditor, ) { - addIdsToBlock(block); - const node = blockToNode(block, editor.pmSchema); + const fullBlock = partialBlockToBlock(editor.schema, block); + const node = blockToNode(fullBlock, editor.pmSchema); expect(node).toMatchSnapshot(); const outputBlock = nodeToBlock(node, editor.pmSchema); - const fullOriginalBlock = partialBlockToBlockForTesting( - editor.schema.blockSchema, - block, - ); - - expect(outputBlock).toStrictEqual(fullOriginalBlock); + expect(outputBlock).toStrictEqual(fullBlock); } const testCases = [multiColumnSchemaTestCases]; diff --git a/packages/xl-odt-exporter/src/odt/__snapshots__/basic/content.xml b/packages/xl-odt-exporter/src/odt/__snapshots__/basic/content.xml index ac2fee74ad..10d61c0558 100644 --- a/packages/xl-odt-exporter/src/odt/__snapshots__/basic/content.xml +++ b/packages/xl-odt-exporter/src/odt/__snapshots__/basic/content.xml @@ -256,7 +256,7 @@ Check List Item - + @@ -381,7 +381,7 @@ Link - + diff --git a/packages/xl-odt-exporter/src/odt/__snapshots__/withCustomOptions/content.xml b/packages/xl-odt-exporter/src/odt/__snapshots__/withCustomOptions/content.xml index a938523f64..155f3104e7 100644 --- a/packages/xl-odt-exporter/src/odt/__snapshots__/withCustomOptions/content.xml +++ b/packages/xl-odt-exporter/src/odt/__snapshots__/withCustomOptions/content.xml @@ -270,7 +270,7 @@ Check List Item - + @@ -395,7 +395,7 @@ Link - + diff --git a/packages/xl-odt-exporter/src/odt/__snapshots__/withMultiColumn/content.xml b/packages/xl-odt-exporter/src/odt/__snapshots__/withMultiColumn/content.xml index fd41c45fa7..e78f92c755 100644 --- a/packages/xl-odt-exporter/src/odt/__snapshots__/withMultiColumn/content.xml +++ b/packages/xl-odt-exporter/src/odt/__snapshots__/withMultiColumn/content.xml @@ -43,7 +43,7 @@ - + diff --git a/packages/xl-odt-exporter/src/odt/defaultSchema/blocks.tsx b/packages/xl-odt-exporter/src/odt/defaultSchema/blocks.tsx index 85fa80d0ff..54d38b075d 100644 --- a/packages/xl-odt-exporter/src/odt/defaultSchema/blocks.tsx +++ b/packages/xl-odt-exporter/src/odt/defaultSchema/blocks.tsx @@ -3,13 +3,13 @@ import { BlockMapping, createPageBreakBlockConfig, DefaultBlockSchema, - DefaultProps, + DefaultPropSchema, mapTableCell, StyledText, TableCell, } from "@blocknote/core"; -import { ODTExporter } from "../odtExporter.js"; import { multiColumnSchema } from "@blocknote/xl-multi-column"; +import { ODTExporter } from "../odtExporter.js"; export const getTabs = (nestingLevel: number) => { return Array.from({ length: nestingLevel }, () => ); @@ -17,7 +17,7 @@ export const getTabs = (nestingLevel: number) => { const createParagraphStyle = ( exporter: ODTExporter, - props: Partial, + props: Partial, parentStyleName = "Standard", styleAttributes: Record = {}, paragraphStyleAttributes: Record = {}, @@ -361,7 +361,7 @@ export const odtBlockMappingForDefaultSchema: BlockMapping< { type: "columnList"; content: "none"; - propSchema: Record; + propSchema: any; }, any, any @@ -382,7 +382,7 @@ export const odtBlockMappingForDefaultSchema: BlockMapping< const style = ex.registerStyle((name) => ( )); diff --git a/packages/xl-odt-exporter/src/odt/odtExporter.test.ts b/packages/xl-odt-exporter/src/odt/odtExporter.test.ts index 9e4e8b2db8..dbf3e2cb55 100644 --- a/packages/xl-odt-exporter/src/odt/odtExporter.test.ts +++ b/packages/xl-odt-exporter/src/odt/odtExporter.test.ts @@ -2,15 +2,15 @@ import { BlockNoteSchema, createPageBreakBlockSpec, defaultBlockSpecs, + partialBlocksToBlocks, } from "@blocknote/core"; +import { ColumnBlock, ColumnListBlock } from "@blocknote/xl-multi-column"; import { testDocument } from "@shared/testDocument.js"; import { BlobReader, FileEntry, TextWriter, ZipReader } from "@zip.js/zip.js"; import { beforeAll, describe, expect, it } from "vitest"; import xmlFormat from "xml-formatter"; import { odtDefaultSchemaMappings } from "./defaultSchema/index.js"; import { ODTExporter } from "./odtExporter.js"; -import { ColumnBlock, ColumnListBlock } from "@blocknote/xl-multi-column"; -import { partialBlocksToBlocksForTesting } from "@shared/formatConversionTestUtil.js"; beforeAll(async () => { // @ts-ignore @@ -78,7 +78,7 @@ describe("exporter", () => { }); const exporter = new ODTExporter(schema, odtDefaultSchemaMappings); const odt = await exporter.toODTDocument( - partialBlocksToBlocksForTesting(schema, [ + partialBlocksToBlocks(schema, [ { type: "columnList", children: [ @@ -163,10 +163,10 @@ async function testODTDocumentAgainstSnapshot( expect(stylesXML).toBeDefined(); expect(contentXML).toBeDefined(); - expect( + await expect( xmlFormat(await stylesXML.getData(stylesXMLWriter)), ).toMatchFileSnapshot(snapshots.styles); - expect( + await expect( xmlFormat(await contentXML.getData(contentXMLWriter)), ).toMatchFileSnapshot(snapshots.content); } diff --git a/packages/xl-odt-exporter/src/odt/odtExporter.tsx b/packages/xl-odt-exporter/src/odt/odtExporter.tsx index 769c557a43..e71fcb1a88 100644 --- a/packages/xl-odt-exporter/src/odt/odtExporter.tsx +++ b/packages/xl-odt-exporter/src/odt/odtExporter.tsx @@ -1,6 +1,6 @@ import { Block, - BlockNoteSchema, + CustomBlockNoteSchema, BlockSchema, COLORS_DEFAULT, Exporter, @@ -49,7 +49,7 @@ export class ODTExporter< public readonly options: ExporterOptions; constructor( - protected readonly schema: BlockNoteSchema, + protected readonly schema: CustomBlockNoteSchema, mappings: Exporter< NoInfer, NoInfer, diff --git a/packages/xl-pdf-exporter/package.json b/packages/xl-pdf-exporter/package.json index ad98a80d9c..ed598256d8 100644 --- a/packages/xl-pdf-exporter/package.json +++ b/packages/xl-pdf-exporter/package.json @@ -79,7 +79,8 @@ "typescript": "^5.9.3", "vite": "^5.4.20", "vite-plugin-eslint": "^1.8.1", - "vitest": "^2.1.9" + "vitest": "^2.1.9", + "zod": "^4.0.0" }, "peerDependencies": { "react": "^18.0 || ^19.0 || >= 19.0.0-rc", diff --git a/packages/xl-pdf-exporter/src/pdf/__snapshots__/example.jsx b/packages/xl-pdf-exporter/src/pdf/__snapshots__/example.jsx index bf68e3e9af..670804ced0 100644 --- a/packages/xl-pdf-exporter/src/pdf/__snapshots__/example.jsx +++ b/packages/xl-pdf-exporter/src/pdf/__snapshots__/example.jsx @@ -11,7 +11,7 @@ paddingTop: 35 }} > - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + , + props: Partial, defaultText: string, icon: React.ReactElement, _exporter: any, @@ -274,7 +274,7 @@ function file( } function caption( - props: Partial, + props: Partial, _exporter: any, ) { if (!props.caption) { diff --git a/packages/xl-pdf-exporter/src/pdf/pdfExporter.test.tsx b/packages/xl-pdf-exporter/src/pdf/pdfExporter.test.tsx index 061471084f..3a76f754fe 100644 --- a/packages/xl-pdf-exporter/src/pdf/pdfExporter.test.tsx +++ b/packages/xl-pdf-exporter/src/pdf/pdfExporter.test.tsx @@ -3,19 +3,21 @@ import { createBlockSpec, createInlineContentSpec, createPageBreakBlockSpec, + createPropSchemaFromZod, createStyleSpec, defaultBlockSpecs, defaultInlineContentSpecs, defaultStyleSpecs, + partialBlocksToBlocks, } from "@blocknote/core"; import { ColumnBlock, ColumnListBlock } from "@blocknote/xl-multi-column"; import { Text } from "@react-pdf/renderer"; import { testDocument } from "@shared/testDocument.js"; import reactElementToJSXString from "react-element-to-jsx-string"; import { describe, expect, it } from "vitest"; +import * as z from "zod/v4"; import { pdfDefaultSchemaMappings } from "./defaultSchema/index.js"; import { PDFExporter } from "./pdfExporter.js"; -import { partialBlocksToBlocksForTesting } from "@shared/formatConversionTestUtil.js"; // import * as ReactPDF from "@react-pdf/renderer"; // expect.extend({ toMatchImageSnapshot }); // import { toMatchImageSnapshot } from "jest-image-snapshot"; @@ -36,7 +38,7 @@ describe("exporter", () => { { content: "none", type: "extraBlock", - propSchema: {}, + propSchema: createPropSchemaFromZod(z.object({})), }, {} as any, )(), @@ -76,7 +78,7 @@ describe("exporter", () => { { type: "extraInlineContent", content: "styled", - propSchema: {}, + propSchema: createPropSchemaFromZod(z.object({})), }, {} as any, ), @@ -235,7 +237,7 @@ describe("exporter", () => { }); const exporter = new PDFExporter(schema, pdfDefaultSchemaMappings); const transformed = await exporter.toReactPDFDocument( - partialBlocksToBlocksForTesting(schema, [ + partialBlocksToBlocks(schema, [ { type: "columnList", children: [ diff --git a/packages/xl-pdf-exporter/src/pdf/pdfExporter.tsx b/packages/xl-pdf-exporter/src/pdf/pdfExporter.tsx index 50ea545e33..cd302550f9 100644 --- a/packages/xl-pdf-exporter/src/pdf/pdfExporter.tsx +++ b/packages/xl-pdf-exporter/src/pdf/pdfExporter.tsx @@ -1,9 +1,9 @@ import { Block, - BlockNoteSchema, BlockSchema, COLORS_DEFAULT, - DefaultProps, + CustomBlockNoteSchema, + DefaultPropSchema, Exporter, ExporterOptions, InlineContentSchema, @@ -78,7 +78,7 @@ export class PDFExporter< /** * The schema of your editor. The mappings are automatically typed checked against this schema. */ - protected readonly schema: BlockNoteSchema, + protected readonly schema: CustomBlockNoteSchema, /** * The mappings that map the BlockNote schema to the react-pdf content. * @@ -289,7 +289,7 @@ export class PDFExporter< } protected blocknoteDefaultPropsToReactPDFStyle( - props: Partial, + props: Partial, ): Style { return { textAlign: props.textAlignment, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3579e735e1..7eb291e47b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -58,6 +58,9 @@ importers: wait-on: specifier: 8.0.3 version: 8.0.3 + zod: + specifier: ^4.0.0 + version: 4.1.12 docs: dependencies: @@ -431,6 +434,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -477,6 +483,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -526,6 +535,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -572,6 +584,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -618,6 +633,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -664,6 +682,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -710,6 +731,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -756,6 +780,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -808,6 +835,9 @@ importers: tw-animate-css: specifier: ^1.4.0 version: 1.4.0 + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@tailwindcss/vite': specifier: ^4.1.14 @@ -857,6 +887,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -903,6 +936,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -949,6 +985,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -995,6 +1034,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -1041,6 +1083,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -1087,6 +1132,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -1133,6 +1181,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -1185,6 +1236,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -1234,6 +1288,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -1280,6 +1337,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -1326,6 +1386,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -1375,6 +1438,9 @@ importers: react-icons: specifier: ^5.2.1 version: 5.5.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -1424,6 +1490,9 @@ importers: react-icons: specifier: ^5.2.1 version: 5.5.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -1473,6 +1542,9 @@ importers: react-icons: specifier: ^5.2.1 version: 5.5.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -1522,6 +1594,9 @@ importers: react-icons: specifier: ^5.2.1 version: 5.5.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -1568,6 +1643,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -1614,6 +1692,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -1660,6 +1741,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -1706,6 +1790,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -1788,6 +1875,9 @@ importers: react-icons: specifier: ^5.2.1 version: 5.5.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -1834,6 +1924,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -1892,6 +1985,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -1938,6 +2034,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -1984,6 +2083,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -2030,6 +2132,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -2076,6 +2181,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -2122,6 +2230,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -2168,6 +2279,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -2214,6 +2328,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -2260,6 +2377,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -2306,6 +2426,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -2355,6 +2478,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -2419,6 +2545,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -2465,6 +2594,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -2511,6 +2643,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -2557,6 +2692,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -2603,6 +2741,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -2658,6 +2799,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -2713,6 +2857,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -2765,6 +2912,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -2817,6 +2967,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -2866,6 +3019,9 @@ importers: react-icons: specifier: ^5.2.1 version: 5.5.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -2912,6 +3068,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -2961,6 +3120,9 @@ importers: react-icons: specifier: ^5.2.1 version: 5.5.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -3010,6 +3172,9 @@ importers: react-icons: specifier: ^5.2.1 version: 5.5.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -3059,6 +3224,9 @@ importers: react-icons: specifier: ^5.2.1 version: 5.5.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -3105,6 +3273,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -3151,6 +3322,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -3197,6 +3371,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -3243,6 +3420,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -3289,6 +3469,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -3335,6 +3518,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -3387,6 +3573,9 @@ importers: yjs: specifier: ^13.6.27 version: 13.6.27 + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -3451,6 +3640,9 @@ importers: yjs: specifier: ^13.6.27 version: 13.6.27 + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -3500,6 +3692,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -3546,6 +3741,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -3595,6 +3793,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -3647,6 +3848,9 @@ importers: yjs: specifier: ^13.6.27 version: 13.6.27 + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -3699,6 +3903,9 @@ importers: yjs: specifier: ^13.6.27 version: 13.6.27 + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -3751,6 +3958,9 @@ importers: yjs: specifier: ^13.6.27 version: 13.6.27 + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -3800,6 +4010,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -3852,6 +4065,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 zustand: specifier: ^5.0.3 version: 5.0.8(@types/react@19.2.2)(immer@10.1.3)(react@19.2.0)(use-sync-external-store@1.6.0(react@19.2.0)) @@ -3907,6 +4123,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 zustand: specifier: ^5.0.3 version: 5.0.8(@types/react@19.2.2)(immer@10.1.3)(react@19.2.0)(use-sync-external-store@1.6.0(react@19.2.0)) @@ -3965,6 +4184,9 @@ importers: react-icons: specifier: ^5.2.1 version: 5.5.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 zustand: specifier: ^5.0.3 version: 5.0.8(@types/react@19.2.2)(immer@10.1.3)(react@19.2.0)(use-sync-external-store@1.6.0(react@19.2.0)) @@ -4026,6 +4248,9 @@ importers: yjs: specifier: ^13.6.27 version: 13.6.27 + zod: + specifier: ^4.0.0 + version: 4.1.12 zustand: specifier: ^5.0.3 version: 5.0.8(@types/react@19.2.2)(immer@10.1.3)(react@19.2.0)(use-sync-external-store@1.6.0(react@19.2.0)) @@ -4087,6 +4312,9 @@ importers: yjs: specifier: ^13.6.27 version: 13.6.27 + zod: + specifier: ^4.0.0 + version: 4.1.12 zustand: specifier: ^5.0.3 version: 5.0.8(@types/react@19.2.2)(immer@10.1.3)(react@19.2.0)(use-sync-external-store@1.6.0(react@19.2.0)) @@ -4145,6 +4373,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 zustand: specifier: ^5.0.3 version: 5.0.8(@types/react@19.2.2)(immer@10.1.3)(react@19.2.0)(use-sync-external-store@1.6.0(react@19.2.0)) @@ -4200,6 +4431,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 zustand: specifier: ^5.0.3 version: 5.0.8(@types/react@19.2.2)(immer@10.1.3)(react@19.2.0)(use-sync-external-store@1.6.0(react@19.2.0)) @@ -4249,6 +4483,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -4295,6 +4532,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -4341,6 +4581,9 @@ importers: react-dom: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -4462,38 +4705,38 @@ importers: specifier: ^3.0.0 version: 3.10.2(@tiptap/pm@3.10.2) '@tiptap/extension-bold': - specifier: ^3.7.2 - version: 3.7.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2)) + specifier: ^3.10.2 + version: 3.10.5(@tiptap/core@3.10.2(@tiptap/pm@3.10.2)) '@tiptap/extension-code': - specifier: ^3.7.2 - version: 3.7.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2)) + specifier: ^3.10.2 + version: 3.10.5(@tiptap/core@3.10.2(@tiptap/pm@3.10.2)) '@tiptap/extension-gapcursor': - specifier: ^3.7.2 - version: 3.7.2(@tiptap/extensions@3.4.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))(@tiptap/pm@3.10.2)) + specifier: ^3.10.2 + version: 3.10.5(@tiptap/extensions@3.4.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))(@tiptap/pm@3.10.2)) '@tiptap/extension-history': - specifier: ^3.7.2 - version: 3.7.2(@tiptap/extensions@3.4.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))(@tiptap/pm@3.10.2)) + specifier: ^3.10.2 + version: 3.10.5(@tiptap/extensions@3.4.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))(@tiptap/pm@3.10.2)) '@tiptap/extension-horizontal-rule': - specifier: ^3.7.2 - version: 3.7.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))(@tiptap/pm@3.10.2) + specifier: ^3.10.2 + version: 3.10.5(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))(@tiptap/pm@3.10.2) '@tiptap/extension-italic': - specifier: ^3.7.2 - version: 3.7.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2)) + specifier: ^3.10.2 + version: 3.10.5(@tiptap/core@3.10.2(@tiptap/pm@3.10.2)) '@tiptap/extension-link': - specifier: ^3.7.2 - version: 3.7.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))(@tiptap/pm@3.10.2) + specifier: ^3.10.2 + version: 3.10.5(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))(@tiptap/pm@3.10.2) '@tiptap/extension-paragraph': - specifier: ^3.7.2 - version: 3.7.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2)) + specifier: ^3.10.2 + version: 3.10.5(@tiptap/core@3.10.2(@tiptap/pm@3.10.2)) '@tiptap/extension-strike': - specifier: ^3.7.2 - version: 3.7.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2)) + specifier: ^3.10.2 + version: 3.10.5(@tiptap/core@3.10.2(@tiptap/pm@3.10.2)) '@tiptap/extension-text': - specifier: ^3.7.2 - version: 3.7.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2)) + specifier: ^3.10.2 + version: 3.10.5(@tiptap/core@3.10.2(@tiptap/pm@3.10.2)) '@tiptap/extension-underline': - specifier: ^3.7.2 - version: 3.7.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2)) + specifier: ^3.10.2 + version: 3.10.5(@tiptap/core@3.10.2(@tiptap/pm@3.10.2)) '@tiptap/pm': specifier: ^3.0.0 version: 3.10.2 @@ -4569,6 +4812,9 @@ importers: yjs: specifier: ^13.6.27 version: 13.6.27 + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/emoji-mart': specifier: ^3.0.14 @@ -4725,6 +4971,9 @@ importers: react-icons: specifier: ^5.5.0 version: 5.5.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/emoji-mart': specifier: ^3.0.14 @@ -5013,6 +5262,9 @@ importers: y-prosemirror: specifier: ^1.3.7 version: 1.3.7(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.3)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27) + zod: + specifier: ^4.0.0 + version: 4.1.12 zustand: specifier: ^5.0.8 version: 5.0.8(@types/react@19.2.2)(immer@10.1.3)(react@19.2.0)(use-sync-external-store@1.6.0(react@19.2.0)) @@ -5247,6 +5499,9 @@ importers: react-email: specifier: ^4.3.0 version: 4.3.0 + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/jsdom': specifier: ^21.1.7 @@ -5305,6 +5560,9 @@ importers: react-icons: specifier: ^5.5.0 version: 5.5.0(react@19.2.0) + zod: + specifier: ^4.0.0 + version: 4.1.12 devDependencies: '@types/react': specifier: ^19.2.2 @@ -5312,15 +5570,12 @@ importers: '@types/react-dom': specifier: ^19.2.2 version: 19.2.2(@types/react@19.2.2) - '@vitest/ui': - specifier: ^2.1.9 - version: 2.1.9(vitest@2.1.9) eslint: specifier: ^8.57.1 version: 8.57.1 jsdom: - specifier: ^21.1.2 - version: 21.1.2(canvas@2.11.2(encoding@0.1.13)) + specifier: ^25.0.1 + version: 25.0.1(canvas@2.11.2(encoding@0.1.13)) react: specifier: ^19.2.0 version: 19.2.0 @@ -5344,7 +5599,7 @@ importers: version: 1.8.1(eslint@8.57.1)(vite@5.4.20(@types/node@24.8.1)(lightningcss@1.30.1)(terser@5.44.1)) vitest: specifier: ^2.1.9 - version: 2.1.9(@types/node@24.8.1)(@vitest/ui@2.1.9)(jsdom@21.1.2(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.11.5(@types/node@24.8.1)(typescript@5.9.3))(terser@5.44.1) + version: 2.1.9(@types/node@24.8.1)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.11.5(@types/node@24.8.1)(typescript@5.9.3))(terser@5.44.1) packages/xl-odt-exporter: dependencies: @@ -5467,6 +5722,9 @@ importers: vitest: specifier: ^2.1.9 version: 2.1.9(@types/node@24.8.1)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.11.5(@types/node@24.8.1)(typescript@5.9.3))(terser@5.44.1) + zod: + specifier: ^4.0.0 + version: 4.1.12 playground: dependencies: @@ -5736,6 +5994,9 @@ importers: vitest: specifier: ^2.1.9 version: 2.1.9(@types/node@20.19.22)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.11.5(@types/node@20.19.22)(typescript@5.9.3))(terser@5.44.1) + zod: + specifier: ^4.0.0 + version: 4.1.12 packages: @@ -9794,8 +10055,8 @@ packages: peerDependencies: '@tiptap/pm': ^3.0.0 - '@tiptap/extension-bold@3.7.2': - resolution: {integrity: sha512-bwCn9lQEXnEi7LfIx3G/oaH4I0ZapAgrHzLCNJH/tNgRKVWym1H1Oa8PlkiFDbalWOdUkbgeAUqUaIB13k408Q==} + '@tiptap/extension-bold@3.10.5': + resolution: {integrity: sha512-YvslsSF4oSwBXMc9tDAUfqr8VmmQ8W/TJVdfdai+gwHSkCWtaqsojUmnAFSiMIyHg5ACVPYMdoThP3aqScNrWQ==} peerDependencies: '@tiptap/core': ^3.0.0 @@ -9805,8 +10066,8 @@ packages: '@tiptap/core': ^3.0.0 '@tiptap/pm': ^3.0.0 - '@tiptap/extension-code@3.7.2': - resolution: {integrity: sha512-J8FaCiKJJnHvQiPcbfbUtc5RNmGx/Gui/K5CDMPc17jhCiQ9JhR9idRPREV24Z2t7GujWX7LG6ZDDR82pSns+g==} + '@tiptap/extension-code@3.10.5': + resolution: {integrity: sha512-zt7w+AQ5El5rERY8QsiDlpCmaw951hLORUeI6p7HjgnA6KQoBJXxz750W8bfqEYnLFJ9uOXQka/Ds37/IyijGA==} peerDependencies: '@tiptap/core': ^3.0.0 @@ -9830,50 +10091,50 @@ packages: '@tiptap/core': ^3.0.0 '@tiptap/pm': ^3.0.0 - '@tiptap/extension-gapcursor@3.7.2': - resolution: {integrity: sha512-vCLo2dL2SfeWjh/gJKDiu0/fz6OF7obGTJvHg/yStkoUqlAEiwKoyHP/NXeTGYJMzZzUi0kY9DtTEJdGFvphuQ==} + '@tiptap/extension-gapcursor@3.10.5': + resolution: {integrity: sha512-/C13mvMGmQ3/8T9jg5KiT1/kMM9rFOXzsI2x0KO6IImTMBke6v259qEJyUCfG+Q90ttf95Muymp4I5FbFqJPww==} peerDependencies: - '@tiptap/extensions': ^3.7.2 + '@tiptap/extensions': ^3.10.5 - '@tiptap/extension-history@3.7.2': - resolution: {integrity: sha512-iAGTUxAr7r+tQ/PtIG94jqTJLy/S/VwE43USfWzXCHvbLn60cPJJG7MTCZxYbd+ZuivZVhEhp3EbzCNmHxjp8A==} + '@tiptap/extension-history@3.10.5': + resolution: {integrity: sha512-c/tm6pG+dQMjgKahpZaIsw6BhqC+QZiYrCNkl3hWWwK5zJkDRWVxMNPHB+uDFQkQER03k4VeqwjD4YXX9MuVWg==} peerDependencies: - '@tiptap/extensions': ^3.7.2 + '@tiptap/extensions': ^3.10.5 - '@tiptap/extension-horizontal-rule@3.7.2': - resolution: {integrity: sha512-pN+1hJAVVP3uqtpZ5Rm7z5XUB/NGprK6wExJ04xG117E4rTVcaEb1FnMILY3J3A5XbdC3vHX+cblR8mOl1PAMw==} + '@tiptap/extension-horizontal-rule@3.10.5': + resolution: {integrity: sha512-okzBJVm68QMb9mwYM74az5bzHuXV6NSuoSb32dRwt3zx8zVdNUK0z585SxlQGDJ3ksB+1UR5tGlcst6sT05esw==} peerDependencies: '@tiptap/core': ^3.0.0 '@tiptap/pm': ^3.0.0 - '@tiptap/extension-italic@3.7.2': - resolution: {integrity: sha512-1tfF37LvKgA5hg09UBgOjdMLNRb1C6keIOBF0r5oHKeWPYOf4z3j5IU9PsFUoOn53XRMb1aiD/TNbGPyoT3Fyw==} + '@tiptap/extension-italic@3.10.5': + resolution: {integrity: sha512-f4RI0KGmtkZgVQlthrSm0dEIwx6Vw1ppbQevJecaaXLQTBoS9jAhqRrZbWkqWnof2fTyO2KK23wAMHAjXOKvmg==} peerDependencies: '@tiptap/core': ^3.0.0 - '@tiptap/extension-link@3.7.2': - resolution: {integrity: sha512-9K54PxBiDSWAMfICqkb8jcQ6cL7vDAtjTk0zqBw4d+XuaUy0FC9QUdbx7r1Pkbf36K1/ApbvM9a7qpOirWk8Xw==} + '@tiptap/extension-link@3.10.5': + resolution: {integrity: sha512-6lb8SZSi2+N37/BzkOwFaHHSbloZ3CG5OT0J+h9MULdH0/X8d8fvK/Kxtfa0NgxYWP446u62HJkjvAk234k/Jw==} peerDependencies: '@tiptap/core': ^3.0.0 '@tiptap/pm': ^3.0.0 - '@tiptap/extension-paragraph@3.7.2': - resolution: {integrity: sha512-HmDuAixTcvP4A/v6OLkh/C6nB86i7/DRNswBf/Udak8TgWUIcSUK0iActxxm5+B3MZTSf3U87JzyI6IeuElLIQ==} + '@tiptap/extension-paragraph@3.10.5': + resolution: {integrity: sha512-YCXFJiWC2w3Q62Q+nAf0SYWNysbQYpBA+fNyczaz+9vJYUBPcuu1WB0kdIGg/07RsUsg0U0txBnx+GuDuWXh2A==} peerDependencies: '@tiptap/core': ^3.0.0 - '@tiptap/extension-strike@3.7.2': - resolution: {integrity: sha512-I1G+4vZbCBTpAMmyVwaO8cLBJgXEf1DyEzc0B+HhTJiBa9qA9OKgRQEGFgisxu1kggjbzB6+d0+taHfjsZC1SQ==} + '@tiptap/extension-strike@3.10.5': + resolution: {integrity: sha512-tyJs3ArYGaYi/cy79NWKfkb7nIcWocFmou3JW229mZ+lFH1jNy9jGnIITN8BG8aizC6QkXBaeEy8+uBUJ+5Tkw==} peerDependencies: '@tiptap/core': ^3.0.0 - '@tiptap/extension-text@3.7.2': - resolution: {integrity: sha512-sKaeGYNP1+bAe2rvmzWLW5qH9DsSFOJlOUEOFchR0OX0rC7bbGS6/KuyAq0w6UkL+cMJnDyAbv3KeD2WEA192w==} + '@tiptap/extension-text@3.10.5': + resolution: {integrity: sha512-anLb/bJ9TfjVjOAdqQGQTDYsvI5Tgid1RgRokpK6vOxVhukBW7q8RnIsyWYj/uV6UefS6YtVOl5H9DAnpCVfvg==} peerDependencies: '@tiptap/core': ^3.0.0 - '@tiptap/extension-underline@3.7.2': - resolution: {integrity: sha512-GDpUZllTD7uIdHjTzYJ6i4jUgCeviW40SCpLVVv1xH0gj1t1xu0Rnxmk+bXkF2XNe8jPXkMCgYNr6DR6eO8roQ==} + '@tiptap/extension-underline@3.10.5': + resolution: {integrity: sha512-2SUQTsD5CYwTAdEFIifGHW/N363B9x5qxdzz2wrzn1mbJB4yG6QKyYY0uAGHmSOeC8iHS8scWDFiU09NlAhoew==} peerDependencies: '@tiptap/core': ^3.0.0 @@ -9902,10 +10163,6 @@ packages: '@tiptap/core': ^3.0.0 '@tiptap/pm': ^3.0.0 - '@tootallnate/once@2.0.0': - resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} - engines: {node: '>= 10'} - '@transloadit/prettier-bytes@0.3.5': resolution: {integrity: sha512-xF4A3d/ZyX2LJWeQZREZQw+qFX4TGQ8bGVP97OLRt6sPO6T0TNHBFTuRHOJh7RNmYOBmQ9MHxpolD9bXihpuVA==} @@ -10445,10 +10702,6 @@ packages: resolution: {integrity: sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==} hasBin: true - abab@2.0.6: - resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} - deprecated: Use your platform's native atob() and btoa() methods instead - abbrev@1.1.1: resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} @@ -10459,9 +10712,6 @@ packages: resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} engines: {node: '>= 0.6'} - acorn-globals@7.0.1: - resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} - acorn-import-attributes@1.9.5: resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==} peerDependencies: @@ -11177,10 +11427,6 @@ packages: engines: {node: '>=4'} hasBin: true - cssstyle@3.0.0: - resolution: {integrity: sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg==} - engines: {node: '>=14'} - cssstyle@4.6.0: resolution: {integrity: sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg==} engines: {node: '>=18'} @@ -11194,10 +11440,6 @@ packages: data-uri-to-buffer@2.0.2: resolution: {integrity: sha512-ND9qDTLc6diwj+Xe5cdAgVTbLVdXbtxTJRXRhli8Mowuaan+0EJOtdqJ0QCHNSSPyoXGx9HX2/VMnKeC34AChA==} - data-urls@4.0.0: - resolution: {integrity: sha512-/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g==} - engines: {node: '>=14'} - data-urls@5.0.0: resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==} engines: {node: '>=18'} @@ -11378,11 +11620,6 @@ packages: domelementtype@2.3.0: resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} - domexception@4.0.0: - resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} - engines: {node: '>=12'} - deprecated: Use your platform's native DOMException instead - domhandler@5.0.3: resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} engines: {node: '>= 4'} @@ -11545,11 +11782,6 @@ packages: resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} engines: {node: '>=12'} - escodegen@2.1.0: - resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} - engines: {node: '>=6.0'} - hasBin: true - eslint-config-react-app@7.0.1: resolution: {integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==} engines: {node: '>=14.0.0'} @@ -12252,10 +12484,6 @@ packages: hsl-to-rgb-for-reals@1.1.1: resolution: {integrity: sha512-LgOWAkrN0rFaQpfdWBQlv/VhkOxb5AsBjk6NQVx4yEzWS923T07X0M1Y0VNko2H52HeSpZrZNNMJ0aFqsdVzQg==} - html-encoding-sniffer@3.0.0: - resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} - engines: {node: '>=12'} - html-encoding-sniffer@4.0.0: resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==} engines: {node: '>=18'} @@ -12276,10 +12504,6 @@ packages: htmlparser2@8.0.2: resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==} - http-proxy-agent@5.0.0: - resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} - engines: {node: '>= 6'} - http-proxy-agent@7.0.2: resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} engines: {node: '>= 14'} @@ -12684,15 +12908,6 @@ packages: resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} hasBin: true - jsdom@21.1.2: - resolution: {integrity: sha512-sCpFmK2jv+1sjff4u7fzft+pUh2KSUbUrEHYHyfSIbGTIcmnjyp83qg6qLwdJ/I3LpTXx33ACxeRL7Lsyc6lGQ==} - engines: {node: '>=14'} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true - jsdom@25.0.1: resolution: {integrity: sha512-8i7LzZj7BF8uplX+ZyOlIz86V6TAsSs+np6m1kpW9u0JWi4z/1t+FzcK1aek+ybTnAC4KhBL4uXCNT0wcUIeCw==} engines: {node: '>=18'} @@ -14064,9 +14279,6 @@ packages: proxy-from-env@1.1.0: resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} - psl@1.15.0: - resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==} - pump@3.0.3: resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==} @@ -14085,9 +14297,6 @@ packages: resolution: {integrity: sha512-pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==} engines: {node: '>=6.0.0'} - querystringify@2.2.0: - resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} - queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} @@ -14368,9 +14577,6 @@ packages: resolution: {integrity: sha512-gAZ+kLqBdHarXB64XpAe2VCjB7rIRv+mU8tfRWziHRJ5umKsIHN2tLLv6EtMw7WCdP19S0ERVMldNvxYCHnhSQ==} engines: {node: '>=8.6.0'} - requires-port@1.0.0: - resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} - resolve-from@4.0.0: resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} engines: {node: '>=4'} @@ -14453,9 +14659,6 @@ packages: rou3@0.5.1: resolution: {integrity: sha512-OXMmJ3zRk2xeXFGfA3K+EOPHC5u7RDFG7lIOx0X1pdnhUkI8MdVrbV+sNsD80ElpUZ+MRHdyxPnFthq9VHs8uQ==} - rrweb-cssom@0.6.0: - resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==} - rrweb-cssom@0.7.1: resolution: {integrity: sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg==} @@ -15010,10 +15213,6 @@ packages: resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} engines: {node: '>=6'} - tough-cookie@4.1.4: - resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} - engines: {node: '>=6'} - tough-cookie@5.1.2: resolution: {integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==} engines: {node: '>=16'} @@ -15025,10 +15224,6 @@ packages: tr46@0.0.3: resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} - tr46@4.1.1: - resolution: {integrity: sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==} - engines: {node: '>=14'} - tr46@5.1.1: resolution: {integrity: sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==} engines: {node: '>=18'} @@ -15218,10 +15413,6 @@ packages: unist-util-visit@5.0.0: resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} - universalify@0.2.0: - resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} - engines: {node: '>= 4.0.0'} - unplugin-utils@0.2.5: resolution: {integrity: sha512-gwXJnPRewT4rT7sBi/IvxKTjsms7jX7QIDLOClApuZwR49SXbrB1z2NLUZ+vDHyqCj/n58OzRRqaW+B8OZi8vg==} engines: {node: '>=18.12.0'} @@ -15250,9 +15441,6 @@ packages: uri-js@4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} - url-parse@1.5.10: - resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} - use-callback-ref@1.3.3: resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==} engines: {node: '>=10'} @@ -15475,10 +15663,6 @@ packages: w3c-keyname@2.2.8: resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==} - w3c-xmlserializer@4.0.0: - resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} - engines: {node: '>=14'} - w3c-xmlserializer@5.0.0: resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==} engines: {node: '>=18'} @@ -15522,26 +15706,14 @@ packages: webpack-cli: optional: true - whatwg-encoding@2.0.0: - resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} - engines: {node: '>=12'} - whatwg-encoding@3.1.1: resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} engines: {node: '>=18'} - whatwg-mimetype@3.0.0: - resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} - engines: {node: '>=12'} - whatwg-mimetype@4.0.0: resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==} engines: {node: '>=18'} - whatwg-url@12.0.1: - resolution: {integrity: sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ==} - engines: {node: '>=14'} - whatwg-url@14.2.0: resolution: {integrity: sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==} engines: {node: '>=18'} @@ -15645,10 +15817,6 @@ packages: resolution: {integrity: sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==} hasBin: true - xml-name-validator@4.0.0: - resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} - engines: {node: '>=12'} - xml-name-validator@5.0.0: resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==} engines: {node: '>=18'} @@ -20746,7 +20914,7 @@ snapshots: dependencies: '@tiptap/pm': 3.10.2 - '@tiptap/extension-bold@3.7.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))': + '@tiptap/extension-bold@3.10.5(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))': dependencies: '@tiptap/core': 3.10.2(@tiptap/pm@3.10.2) @@ -20757,7 +20925,7 @@ snapshots: '@tiptap/pm': 3.10.2 optional: true - '@tiptap/extension-code@3.7.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))': + '@tiptap/extension-code@3.10.5(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))': dependencies: '@tiptap/core': 3.10.2(@tiptap/pm@3.10.2) @@ -20779,42 +20947,42 @@ snapshots: '@tiptap/pm': 3.10.2 optional: true - '@tiptap/extension-gapcursor@3.7.2(@tiptap/extensions@3.4.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))(@tiptap/pm@3.10.2))': + '@tiptap/extension-gapcursor@3.10.5(@tiptap/extensions@3.4.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))(@tiptap/pm@3.10.2))': dependencies: '@tiptap/extensions': 3.4.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))(@tiptap/pm@3.10.2) - '@tiptap/extension-history@3.7.2(@tiptap/extensions@3.4.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))(@tiptap/pm@3.10.2))': + '@tiptap/extension-history@3.10.5(@tiptap/extensions@3.4.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))(@tiptap/pm@3.10.2))': dependencies: '@tiptap/extensions': 3.4.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))(@tiptap/pm@3.10.2) - '@tiptap/extension-horizontal-rule@3.7.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))(@tiptap/pm@3.10.2)': + '@tiptap/extension-horizontal-rule@3.10.5(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))(@tiptap/pm@3.10.2)': dependencies: '@tiptap/core': 3.10.2(@tiptap/pm@3.10.2) '@tiptap/pm': 3.10.2 - '@tiptap/extension-italic@3.7.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))': + '@tiptap/extension-italic@3.10.5(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))': dependencies: '@tiptap/core': 3.10.2(@tiptap/pm@3.10.2) - '@tiptap/extension-link@3.7.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))(@tiptap/pm@3.10.2)': + '@tiptap/extension-link@3.10.5(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))(@tiptap/pm@3.10.2)': dependencies: '@tiptap/core': 3.10.2(@tiptap/pm@3.10.2) '@tiptap/pm': 3.10.2 linkifyjs: 4.3.2 - '@tiptap/extension-paragraph@3.7.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))': + '@tiptap/extension-paragraph@3.10.5(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))': dependencies: '@tiptap/core': 3.10.2(@tiptap/pm@3.10.2) - '@tiptap/extension-strike@3.7.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))': + '@tiptap/extension-strike@3.10.5(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))': dependencies: '@tiptap/core': 3.10.2(@tiptap/pm@3.10.2) - '@tiptap/extension-text@3.7.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))': + '@tiptap/extension-text@3.10.5(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))': dependencies: '@tiptap/core': 3.10.2(@tiptap/pm@3.10.2) - '@tiptap/extension-underline@3.7.2(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))': + '@tiptap/extension-underline@3.10.5(@tiptap/core@3.10.2(@tiptap/pm@3.10.2))': dependencies: '@tiptap/core': 3.10.2(@tiptap/pm@3.10.2) @@ -20866,8 +21034,6 @@ snapshots: '@tiptap/core': 3.10.2(@tiptap/pm@3.10.2) '@tiptap/pm': 3.10.2 - '@tootallnate/once@2.0.0': {} - '@transloadit/prettier-bytes@0.3.5': {} '@ts-morph/common@0.27.0': @@ -21443,9 +21609,10 @@ snapshots: flatted: 3.3.3 pathe: 1.1.2 sirv: 3.0.2 - tinyglobby: 0.2.15 + tinyglobby: 0.2.12 tinyrainbow: 1.2.0 vitest: 2.1.9(@types/node@24.8.1)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.11.5(@types/node@24.8.1)(typescript@5.9.3))(terser@5.44.1) + optional: true '@vitest/utils@2.1.9': dependencies: @@ -21566,8 +21733,6 @@ snapshots: dependencies: argparse: 2.0.1 - abab@2.0.6: {} - abbrev@1.1.1: optional: true @@ -21578,11 +21743,6 @@ snapshots: mime-types: 2.1.35 negotiator: 0.6.3 - acorn-globals@7.0.1: - dependencies: - acorn: 8.15.0 - acorn-walk: 8.3.4 - acorn-import-attributes@1.9.5(acorn@8.15.0): dependencies: acorn: 8.15.0 @@ -22352,10 +22512,6 @@ snapshots: cssesc@3.0.0: {} - cssstyle@3.0.0: - dependencies: - rrweb-cssom: 0.6.0 - cssstyle@4.6.0: dependencies: '@asamuzakjp/css-color': 3.2.0 @@ -22367,12 +22523,6 @@ snapshots: data-uri-to-buffer@2.0.2: {} - data-urls@4.0.0: - dependencies: - abab: 2.0.6 - whatwg-mimetype: 3.0.0 - whatwg-url: 12.0.1 - data-urls@5.0.0: dependencies: whatwg-mimetype: 4.0.0 @@ -22532,10 +22682,6 @@ snapshots: domelementtype@2.3.0: {} - domexception@4.0.0: - dependencies: - webidl-conversions: 7.0.0 - domhandler@5.0.3: dependencies: domelementtype: 2.3.0 @@ -22810,14 +22956,6 @@ snapshots: escape-string-regexp@5.0.0: {} - escodegen@2.1.0: - dependencies: - esprima: 4.0.1 - estraverse: 5.3.0 - esutils: 2.0.3 - optionalDependencies: - source-map: 0.6.1 - eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.27.1(@babel/core@7.28.4))(@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.28.4))(eslint@8.57.1)(typescript@5.9.3): dependencies: '@babel/core': 7.28.4 @@ -23174,7 +23312,8 @@ snapshots: fflate@0.7.4: {} - fflate@0.8.2: {} + fflate@0.8.2: + optional: true figures@3.2.0: dependencies: @@ -23787,10 +23926,6 @@ snapshots: hsl-to-rgb-for-reals@1.1.1: {} - html-encoding-sniffer@3.0.0: - dependencies: - whatwg-encoding: 2.0.0 - html-encoding-sniffer@4.0.0: dependencies: whatwg-encoding: 3.1.1 @@ -23816,14 +23951,6 @@ snapshots: domutils: 3.2.2 entities: 4.5.0 - http-proxy-agent@5.0.0: - dependencies: - '@tootallnate/once': 2.0.0 - agent-base: 6.0.2 - debug: 4.4.3 - transitivePeerDependencies: - - supports-color - http-proxy-agent@7.0.2: dependencies: agent-base: 7.1.4 @@ -24217,41 +24344,6 @@ snapshots: dependencies: argparse: 2.0.1 - jsdom@21.1.2(canvas@2.11.2(encoding@0.1.13)): - dependencies: - abab: 2.0.6 - acorn: 8.15.0 - acorn-globals: 7.0.1 - cssstyle: 3.0.0 - data-urls: 4.0.0 - decimal.js: 10.6.0 - domexception: 4.0.0 - escodegen: 2.1.0 - form-data: 4.0.4 - html-encoding-sniffer: 3.0.0 - http-proxy-agent: 5.0.0 - https-proxy-agent: 5.0.1 - is-potential-custom-element-name: 1.0.1 - nwsapi: 2.2.22 - parse5: 7.3.0 - rrweb-cssom: 0.6.0 - saxes: 6.0.0 - symbol-tree: 3.2.4 - tough-cookie: 4.1.4 - w3c-xmlserializer: 4.0.0 - webidl-conversions: 7.0.0 - whatwg-encoding: 2.0.0 - whatwg-mimetype: 3.0.0 - whatwg-url: 12.0.1 - ws: 8.18.3 - xml-name-validator: 4.0.0 - optionalDependencies: - canvas: 2.11.2(encoding@0.1.13) - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)): dependencies: cssstyle: 4.6.0 @@ -25924,10 +26016,6 @@ snapshots: proxy-from-env@1.1.0: {} - psl@1.15.0: - dependencies: - punycode: 2.3.1 - pump@3.0.3: dependencies: end-of-stream: 1.4.5 @@ -25943,8 +26031,6 @@ snapshots: pvutils@1.1.3: {} - querystringify@2.2.0: {} - queue-microtask@1.2.3: {} queue@6.0.2: @@ -26330,8 +26416,6 @@ snapshots: transitivePeerDependencies: - supports-color - requires-port@1.0.0: {} - resolve-from@4.0.0: {} resolve-pkg-maps@1.0.0: {} @@ -26447,8 +26531,6 @@ snapshots: rou3@0.5.1: {} - rrweb-cssom@0.6.0: {} - rrweb-cssom@0.7.1: {} rrweb-cssom@0.8.0: {} @@ -27104,13 +27186,6 @@ snapshots: totalist@3.0.1: {} - tough-cookie@4.1.4: - dependencies: - psl: 1.15.0 - punycode: 2.3.1 - universalify: 0.2.0 - url-parse: 1.5.10 - tough-cookie@5.1.2: dependencies: tldts: 6.1.86 @@ -27121,10 +27196,6 @@ snapshots: tr46@0.0.3: {} - tr46@4.1.1: - dependencies: - punycode: 2.3.1 - tr46@5.1.1: dependencies: punycode: 2.3.1 @@ -27338,8 +27409,6 @@ snapshots: unist-util-is: 6.0.1 unist-util-visit-parents: 6.0.2 - universalify@0.2.0: {} - unplugin-utils@0.2.5: dependencies: pathe: 2.0.3 @@ -27375,11 +27444,6 @@ snapshots: dependencies: punycode: 2.3.1 - url-parse@1.5.10: - dependencies: - querystringify: 2.2.0 - requires-port: 1.0.0 - use-callback-ref@1.3.3(@types/react@19.2.2)(react@19.2.0): dependencies: react: 19.2.0 @@ -27662,43 +27726,6 @@ snapshots: - supports-color - terser - vitest@2.1.9(@types/node@24.8.1)(@vitest/ui@2.1.9)(jsdom@21.1.2(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.11.5(@types/node@24.8.1)(typescript@5.9.3))(terser@5.44.1): - dependencies: - '@vitest/expect': 2.1.9 - '@vitest/mocker': 2.1.9(msw@2.11.5(@types/node@24.8.1)(typescript@5.9.3))(vite@5.4.20(@types/node@24.8.1)(lightningcss@1.30.1)(terser@5.44.1)) - '@vitest/pretty-format': 2.1.9 - '@vitest/runner': 2.1.9 - '@vitest/snapshot': 2.1.9 - '@vitest/spy': 2.1.9 - '@vitest/utils': 2.1.9 - chai: 5.3.3 - debug: 4.4.3 - expect-type: 1.2.2 - magic-string: 0.30.19 - pathe: 1.1.2 - std-env: 3.10.0 - tinybench: 2.9.0 - tinyexec: 0.3.2 - tinypool: 1.1.1 - tinyrainbow: 1.2.0 - vite: 5.4.20(@types/node@24.8.1)(lightningcss@1.30.1)(terser@5.44.1) - vite-node: 2.1.9(@types/node@24.8.1)(lightningcss@1.30.1)(terser@5.44.1) - why-is-node-running: 2.3.0 - optionalDependencies: - '@types/node': 24.8.1 - '@vitest/ui': 2.1.9(vitest@2.1.9) - jsdom: 21.1.2(canvas@2.11.2(encoding@0.1.13)) - transitivePeerDependencies: - - less - - lightningcss - - msw - - sass - - sass-embedded - - stylus - - sugarss - - supports-color - - terser - vitest@2.1.9(@types/node@24.8.1)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.11.5(@types/node@24.8.1)(typescript@5.9.3))(terser@5.44.1): dependencies: '@vitest/expect': 2.1.9 @@ -27738,10 +27765,6 @@ snapshots: w3c-keyname@2.2.8: {} - w3c-xmlserializer@4.0.0: - dependencies: - xml-name-validator: 4.0.0 - w3c-xmlserializer@5.0.0: dependencies: xml-name-validator: 5.0.0 @@ -27805,23 +27828,12 @@ snapshots: - esbuild - uglify-js - whatwg-encoding@2.0.0: - dependencies: - iconv-lite: 0.6.3 - whatwg-encoding@3.1.1: dependencies: iconv-lite: 0.6.3 - whatwg-mimetype@3.0.0: {} - whatwg-mimetype@4.0.0: {} - whatwg-url@12.0.1: - dependencies: - tr46: 4.1.1 - webidl-conversions: 7.0.0 - whatwg-url@14.2.0: dependencies: tr46: 5.1.1 @@ -27939,8 +27951,6 @@ snapshots: dependencies: sax: 1.4.1 - xml-name-validator@4.0.0: {} - xml-name-validator@5.0.0: {} xml-parser-xo@4.1.5: {} diff --git a/shared/formatConversionTestUtil.ts b/shared/formatConversionTestUtil.ts deleted file mode 100644 index 565f0f1cfb..0000000000 --- a/shared/formatConversionTestUtil.ts +++ /dev/null @@ -1,209 +0,0 @@ -// TODO: remove duplicate file - -import { - Block, - BlockNoteSchema, - BlockSchema, - InlineContent, - InlineContentSchema, - isPartialLinkInlineContent, - isStyledTextInlineContent, - PartialBlock, - PartialInlineContent, - PartialTableCell, - StyledText, - StyleSchema, - TableCell, - TableContent, - UniqueID, -} from "@blocknote/core"; - -function textShorthandToStyledText( - content: string | StyledText[] = "", -): StyledText[] { - if (typeof content === "string") { - return [ - { - type: "text", - text: content, - styles: {}, - }, - ]; - } - return content; -} - -function partialContentToInlineContent( - content: - | PartialInlineContent - | PartialTableCell - | TableContent - | undefined, -): - | InlineContent[] - | TableContent - | TableCell - | undefined { - if (typeof content === "string") { - return textShorthandToStyledText(content); - } - - if (Array.isArray(content)) { - return content.flatMap((partialContent) => { - if (typeof partialContent === "string") { - return textShorthandToStyledText(partialContent); - } else if (isPartialLinkInlineContent(partialContent)) { - return { - ...partialContent, - content: textShorthandToStyledText(partialContent.content), - }; - } else if (isStyledTextInlineContent(partialContent)) { - return partialContent; - } else { - // custom inline content - - return { - props: {}, - ...partialContent, - content: partialContentToInlineContent(partialContent.content), - } as any; - } - }); - } else if (content?.type === "tableContent") { - return { - type: "tableContent", - columnWidths: content.columnWidths, - headerRows: content.headerRows, - headerCols: content.headerCols, - rows: content.rows.map((row) => { - const cells: any[] = row.cells.map((cell) => { - if (!("type" in cell) || cell.type !== "tableCell") { - return partialContentToInlineContent({ - type: "tableCell", - content: cell as any, - }); - } - return partialContentToInlineContent(cell); - }); - - return { - ...row, - cells, - }; - }), - }; - } else if (content?.type === "tableCell") { - return { - type: "tableCell", - content: partialContentToInlineContent(content.content) as any[], - props: { - backgroundColor: content.props?.backgroundColor ?? "default", - textColor: content.props?.textColor ?? "default", - textAlignment: content.props?.textAlignment ?? "left", - colspan: content.props?.colspan ?? 1, - rowspan: content.props?.rowspan ?? 1, - }, - } satisfies TableCell; - } - - return content; -} - -export function partialBlocksToBlocksForTesting< - BSchema extends BlockSchema, - I extends InlineContentSchema, - S extends StyleSchema, ->( - schema: BlockNoteSchema, - partialBlocks: Array>, -): Array> { - return partialBlocks.map((partialBlock) => - partialBlockToBlockForTesting(schema.blockSchema, partialBlock), - ); -} - -export function partialBlockToBlockForTesting< - BSchema extends BlockSchema, - I extends InlineContentSchema, - S extends StyleSchema, ->( - schema: BSchema, - partialBlock: PartialBlock, -): Block { - const contentType: "inline" | "table" | "none" = - schema[partialBlock.type!].content; - - const withDefaults: Block = { - id: "", - type: partialBlock.type!, - props: {} as any, - content: - contentType === "inline" - ? [] - : contentType === "table" - ? { - type: "tableContent", - columnWidths: undefined, - headerRows: undefined, - headerCols: undefined, - rows: [], - } - : (undefined as any), - children: [] as any, - ...partialBlock, - }; - - Object.entries(schema[partialBlock.type!].propSchema).forEach( - ([propKey, propValue]) => { - if ( - withDefaults.props[propKey] === undefined && - propValue.default !== undefined - ) { - (withDefaults.props as any)[propKey] = propValue.default; - } - }, - ); - - if (contentType === "inline") { - const content = withDefaults.content as InlineContent[] | undefined; - withDefaults.content = partialContentToInlineContent(content) as any; - } else if (contentType === "table") { - const content = withDefaults.content as TableContent | undefined; - withDefaults.content = { - type: "tableContent", - columnWidths: - content?.columnWidths || - content?.rows[0]?.cells.map(() => undefined) || - [], - headerRows: content?.headerRows || undefined, - headerCols: content?.headerCols || undefined, - rows: - content?.rows.map((row) => ({ - cells: row.cells.map((cell) => partialContentToInlineContent(cell)), - })) || [], - } as any; - } - - return { - ...withDefaults, - content: partialContentToInlineContent(withDefaults.content), - children: withDefaults.children.map((c) => { - return partialBlockToBlockForTesting(schema, c); - }), - } as any; -} - -export function addIdsToBlock(block: PartialBlock) { - if (!block.id) { - block.id = UniqueID.options.generateID(); - } - if (block.children) { - addIdsToBlocks(block.children); - } -} - -export function addIdsToBlocks(blocks: PartialBlock[]) { - for (const block of blocks) { - addIdsToBlock(block); - } -} diff --git a/shared/testDocument.ts b/shared/testDocument.ts index 22c57bb192..33cad08fe6 100644 --- a/shared/testDocument.ts +++ b/shared/testDocument.ts @@ -1,18 +1,22 @@ import { BlockNoteSchema, - defaultBlockSpecs, createPageBreakBlockSpec, + defaultBlockSpecs, + partialBlocksToBlocks, } from "@blocknote/core"; +import * as z from "zod/v4"; -import { partialBlocksToBlocksForTesting } from "./formatConversionTestUtil.js"; +// @ts-ignore +const y = z; // needed to fix build // TODO: Update tests that use this to the new format and remove -export const testDocument = partialBlocksToBlocksForTesting( +export const testDocument = partialBlocksToBlocks( BlockNoteSchema.create({ blockSpecs: { ...defaultBlockSpecs, pageBreak: createPageBreakBlockSpec() }, }), [ { + id: "test1", type: "paragraph", content: [ { @@ -33,10 +37,12 @@ export const testDocument = partialBlocksToBlocksForTesting( ], children: [ { + id: "test2", type: "paragraph", content: "Hello World nested", children: [ { + id: "test2child", type: "paragraph", content: "Hello World double nested", }, @@ -45,6 +51,7 @@ export const testDocument = partialBlocksToBlocksForTesting( ], }, { + id: "test3", type: "paragraph", content: [ { @@ -58,14 +65,17 @@ export const testDocument = partialBlocksToBlocksForTesting( }, }, { + id: "test4", type: "paragraph", content: "Paragraph", }, { + id: "test5", type: "heading", content: "Heading", }, { + id: "test6", type: "heading", content: "Heading right", props: { @@ -73,6 +83,7 @@ export const testDocument = partialBlocksToBlocksForTesting( }, }, { + id: "test7", type: "paragraph", content: "justified paragraph. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", @@ -81,18 +92,21 @@ export const testDocument = partialBlocksToBlocksForTesting( textAlignment: "justify", }, }, - { type: "pageBreak" }, + { id: "test8", type: "pageBreak" }, { + id: "test9", type: "bulletListItem", content: "Bullet List Item. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", children: [ { + id: "test10", type: "bulletListItem", content: "Bullet List Item. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", }, { + id: "test11", type: "bulletListItem", content: "Bullet List Item right. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", @@ -101,22 +115,27 @@ export const testDocument = partialBlocksToBlocksForTesting( }, }, { + id: "test12", type: "numberedListItem", content: "Numbered List Item 1", }, { + id: "test13", type: "numberedListItem", content: "Numbered List Item 2", children: [ { + id: "test14", type: "numberedListItem", content: "Numbered List Item Nested 1", }, { + id: "test15", type: "numberedListItem", content: "Numbered List Item Nested 2", }, { + id: "test16", type: "numberedListItem", content: "Numbered List Item Nested funky right", props: { @@ -126,6 +145,7 @@ export const testDocument = partialBlocksToBlocksForTesting( }, }, { + id: "test17", type: "numberedListItem", content: "Numbered List Item Nested funky center", props: { @@ -139,14 +159,17 @@ export const testDocument = partialBlocksToBlocksForTesting( ], }, { + id: "test18", type: "numberedListItem", content: "Numbered List Item", }, { + id: "test19", type: "checkListItem", content: "Check List Item", }, { + id: "test20", type: "table", content: { type: "tableContent", @@ -165,9 +188,11 @@ export const testDocument = partialBlocksToBlocksForTesting( }, }, { + id: "test21", type: "file", }, { + id: "test22", type: "image", props: { url: "https://interactive-examples.mdn.mozilla.net/media/cc0-images/grapefruit-slice-332-332.jpg", @@ -176,6 +201,7 @@ export const testDocument = partialBlocksToBlocksForTesting( }, }, { + id: "test23", type: "image", props: { previewWidth: 200, @@ -184,6 +210,7 @@ export const testDocument = partialBlocksToBlocksForTesting( }, }, { + id: "test24", type: "video", props: { url: "https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.webm", @@ -192,6 +219,7 @@ export const testDocument = partialBlocksToBlocksForTesting( }, }, { + id: "test25", type: "audio", props: { url: "https://interactive-examples.mdn.mozilla.net/media/cc0-audio/t-rex-roar.mp3", @@ -200,9 +228,11 @@ export const testDocument = partialBlocksToBlocksForTesting( }, }, { + id: "test26", type: "paragraph", }, { + id: "test27", type: "audio", props: { caption: "Audio file caption", @@ -210,6 +240,7 @@ export const testDocument = partialBlocksToBlocksForTesting( }, }, { + id: "test28", type: "paragraph", content: [ { @@ -220,6 +251,7 @@ export const testDocument = partialBlocksToBlocksForTesting( ], }, { + id: "test29", type: "paragraph", content: [ { @@ -245,6 +277,7 @@ export const testDocument = partialBlocksToBlocksForTesting( ], }, { + id: "test30", type: "table", content: { type: "tableContent", @@ -274,6 +307,7 @@ export const testDocument = partialBlocksToBlocksForTesting( }, }, { + id: "test31", type: "codeBlock", props: { language: "javascript", @@ -282,6 +316,6 @@ export const testDocument = partialBlocksToBlocksForTesting( console.log("Hello World", message); };`, }, - { type: "divider" }, + { id: "test32", type: "divider" }, ], ); diff --git a/tests/package.json b/tests/package.json index 0a877449f8..27849a12aa 100644 --- a/tests/package.json +++ b/tests/package.json @@ -32,7 +32,8 @@ "rimraf": "^5.0.10", "vite": "^5.4.20", "vite-plugin-eslint": "^1.8.1", - "vitest": "^2.1.9" + "vitest": "^2.1.9", + "zod": "^4.0.0" }, "eslintConfig": { "extends": [ diff --git a/tests/src/unit/core/clipboard/copy/__snapshots__/text/html/basicBlocksWithProps.html b/tests/src/unit/core/clipboard/copy/__snapshots__/text/html/basicBlocksWithProps.html index 1eacf47eb2..e9502a9fba 100644 --- a/tests/src/unit/core/clipboard/copy/__snapshots__/text/html/basicBlocksWithProps.html +++ b/tests/src/unit/core/clipboard/copy/__snapshots__/text/html/basicBlocksWithProps.html @@ -43,9 +43,9 @@

Heading 1

( - schema: BlockNoteSchema, + schema: CustomBlockNoteSchema, ): (() => BlockNoteEditor) => { let editor: BlockNoteEditor; const div = document.createElement("div"); diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/blocknoteHTML/custom-blocks/advancedComplexAttributeNode.html b/tests/src/unit/core/formatConversion/export/__snapshots__/blocknoteHTML/custom-blocks/advancedComplexAttributeNode.html new file mode 100644 index 0000000000..5e380f2cc7 --- /dev/null +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/blocknoteHTML/custom-blocks/advancedComplexAttributeNode.html @@ -0,0 +1,15 @@ +
+
+
+
+
+
+
+
+
\ No newline at end of file diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/blocknoteHTML/customParagraph.html b/tests/src/unit/core/formatConversion/export/__snapshots__/blocknoteHTML/customParagraph.html new file mode 100644 index 0000000000..c601981956 --- /dev/null +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/blocknoteHTML/customParagraph.html @@ -0,0 +1,9 @@ +
+
+
+
+ Custom Paragraph +
+
+
+
\ No newline at end of file diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/blocknoteHTML/video.html b/tests/src/unit/core/formatConversion/export/__snapshots__/blocknoteHTML/video.html index 916688f455..6824fb4f1e 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/blocknoteHTML/video.html +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/blocknoteHTML/video.html @@ -17,7 +17,6 @@ src="https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.webm" controls="" draggable="false" - width="0" >
diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/html/custom-blocks/advancedComplexAttributeNode.html b/tests/src/unit/core/formatConversion/export/__snapshots__/html/custom-blocks/advancedComplexAttributeNode.html new file mode 100644 index 0000000000..ff20d6baea --- /dev/null +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/html/custom-blocks/advancedComplexAttributeNode.html @@ -0,0 +1,4 @@ +
\ No newline at end of file diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/html/customParagraph.html b/tests/src/unit/core/formatConversion/export/__snapshots__/html/customParagraph.html new file mode 100644 index 0000000000..353d9753f5 --- /dev/null +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/html/customParagraph.html @@ -0,0 +1 @@ +Custom Paragraph \ No newline at end of file diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/markdown/custom-blocks/advancedComplexAttributeNode.md b/tests/src/unit/core/formatConversion/export/__snapshots__/markdown/custom-blocks/advancedComplexAttributeNode.md new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/markdown/customParagraph.md b/tests/src/unit/core/formatConversion/export/__snapshots__/markdown/customParagraph.md new file mode 100644 index 0000000000..fd50b044f8 --- /dev/null +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/markdown/customParagraph.md @@ -0,0 +1 @@ +Custom Paragraph diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/custom-blocks/advancedComplexAttributeNode.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/custom-blocks/advancedComplexAttributeNode.json new file mode 100644 index 0000000000..e7b111f2bc --- /dev/null +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/custom-blocks/advancedComplexAttributeNode.json @@ -0,0 +1,22 @@ +[ + { + "attrs": { + "id": "1", + }, + "content": [ + { + "attrs": { + "user": { + "age": 30, + "name": { + "first": "USER_FIRST_NAME", + "last": "USER_LAST_NAME", + }, + }, + }, + "type": "advancedComplexAttributeNode", + }, + ], + "type": "blockContainer", + }, +] \ No newline at end of file diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/customParagraph.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/customParagraph.json new file mode 100644 index 0000000000..65440df2d2 --- /dev/null +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/customParagraph.json @@ -0,0 +1,24 @@ +[ + { + "attrs": { + "id": "1", + }, + "content": [ + { + "attrs": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "content": [ + { + "text": "Custom Paragraph", + "type": "text", + }, + ], + "type": "customParagraph", + }, + ], + "type": "blockContainer", + }, +] \ No newline at end of file diff --git a/tests/src/unit/core/formatConversion/export/exportTestInstances.ts b/tests/src/unit/core/formatConversion/export/exportTestInstances.ts index 899331b55d..1271c1f012 100644 --- a/tests/src/unit/core/formatConversion/export/exportTestInstances.ts +++ b/tests/src/unit/core/formatConversion/export/exportTestInstances.ts @@ -1717,6 +1717,18 @@ export const exportTestInstancesBlockNoteHTML: TestInstance< }, executeTest: testExportBlockNoteHTML, }, + { + testCase: { + name: "customParagraph", + content: [ + { + type: "customParagraph", + content: "Custom Paragraph", + }, + ], + }, + executeTest: testExportBlockNoteHTML, + }, { testCase: { name: "custom-blocks/simpleCustomParagraph", @@ -1729,6 +1741,23 @@ export const exportTestInstancesBlockNoteHTML: TestInstance< }, executeTest: testExportBlockNoteHTML, }, + { + testCase: { + name: "custom-blocks/advancedComplexAttributeNode", + content: [ + { + type: "advancedComplexAttributeNode", + props: { + user: { + name: { first: "USER_FIRST_NAME", last: "USER_LAST_NAME" }, + age: 30, + }, + }, + }, + ], + }, + executeTest: testExportBlockNoteHTML, + }, ]; export const exportTestInstancesHTML: TestInstance< diff --git a/tests/src/unit/core/formatConversion/exportParseEquality/exportParseEqualityTestInstances.ts b/tests/src/unit/core/formatConversion/exportParseEquality/exportParseEqualityTestInstances.ts index 33d9b09c15..5985d8308a 100644 --- a/tests/src/unit/core/formatConversion/exportParseEquality/exportParseEqualityTestInstances.ts +++ b/tests/src/unit/core/formatConversion/exportParseEquality/exportParseEqualityTestInstances.ts @@ -314,4 +314,16 @@ export const exportParseEqualityTestInstancesHTML: TestInstance< }, executeTest: testExportParseEqualityHTML, }, + { + testCase: { + name: "customParagraph", + content: [ + { + type: "customParagraph", + content: "Custom Paragraph", + }, + ], + }, + executeTest: testExportParseEqualityHTML, + }, ]; diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/basicBlockTypes.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/basicBlockTypes.json index b8bc803a50..7741de5946 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/basicBlockTypes.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/basicBlockTypes.json @@ -138,6 +138,7 @@ "backgroundColor": "default", "caption": "Image Caption", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "exampleURL", diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/customParagraph.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/customParagraph.json new file mode 100644 index 0000000000..101a550b18 --- /dev/null +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/customParagraph.json @@ -0,0 +1,19 @@ +[ + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Custom Paragraph", + "type": "text", + }, + ], + "id": "1", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "customParagraph", + }, +] \ No newline at end of file diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/deepNestedContent.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/deepNestedContent.json index 420948fc26..54b52159f1 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/deepNestedContent.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/deepNestedContent.json @@ -206,6 +206,7 @@ "backgroundColor": "default", "caption": "Image Caption", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "exampleURL", diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/fakeImageCaption.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/fakeImageCaption.json index c197b4d31e..0262f31030 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/fakeImageCaption.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/fakeImageCaption.json @@ -7,6 +7,7 @@ "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "exampleURL", diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/flattenedListItem.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/flattenedListItem.json index 1ba16ea858..645323567f 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/flattenedListItem.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/flattenedListItem.json @@ -13,6 +13,7 @@ "id": "2", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/googleDocs.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/googleDocs.json index 801547eba0..c828831c35 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/googleDocs.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/googleDocs.json @@ -311,6 +311,7 @@ Hard Break", "id": "14", "props": { "backgroundColor": "transparent", + "start": undefined, "textAlignment": "left", "textColor": "rgb(0, 0, 0)", }, @@ -331,6 +332,7 @@ Hard Break", "id": "15", "props": { "backgroundColor": "transparent", + "start": undefined, "textAlignment": "left", "textColor": "rgb(0, 0, 0)", }, @@ -429,6 +431,7 @@ Hard Break", "id": "18", "props": { "backgroundColor": "transparent", + "start": undefined, "textAlignment": "left", "textColor": "rgb(0, 0, 0)", }, @@ -449,6 +452,7 @@ Hard Break", "id": "19", "props": { "backgroundColor": "transparent", + "start": undefined, "textAlignment": "left", "textColor": "rgb(0, 0, 0)", }, diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/imageInParagraph.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/imageInParagraph.json index 5117c1a549..2c451a05d6 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/imageInParagraph.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/imageInParagraph.json @@ -7,6 +7,7 @@ "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "exampleURL", diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/imageWithParagraphListItem.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/imageWithParagraphListItem.json index 3f15f2ced7..559b989ed7 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/imageWithParagraphListItem.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/imageWithParagraphListItem.json @@ -9,6 +9,7 @@ "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "http://localhost:3000/exampleURL", diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/imageWithTextListItem.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/imageWithTextListItem.json index 090daf84e0..fe0cd8fc68 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/imageWithTextListItem.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/imageWithTextListItem.json @@ -9,6 +9,7 @@ "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "http://localhost:3000/exampleURL", diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/mixedNestedLists.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/mixedNestedLists.json index 5b79ba865f..e90c4249ee 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/mixedNestedLists.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/mixedNestedLists.json @@ -30,6 +30,7 @@ "id": "3", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, @@ -47,6 +48,7 @@ "id": "4", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, @@ -97,6 +99,7 @@ "id": "6", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, @@ -151,6 +154,7 @@ "id": "7", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, @@ -168,6 +172,7 @@ "id": "10", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/nestedLists.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/nestedLists.json index 061ca1c5bc..e1ec7cf3c4 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/nestedLists.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/nestedLists.json @@ -97,6 +97,7 @@ "id": "6", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, @@ -116,6 +117,7 @@ "id": "8", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, @@ -133,6 +135,7 @@ "id": "9", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, @@ -149,6 +152,7 @@ "id": "7", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, @@ -166,6 +170,7 @@ "id": "10", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/nestedListsWithParagraphs.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/nestedListsWithParagraphs.json index 055d8f7d31..540eee1e2a 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/nestedListsWithParagraphs.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/nestedListsWithParagraphs.json @@ -97,6 +97,7 @@ "id": "6", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, @@ -116,6 +117,7 @@ "id": "8", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, @@ -133,6 +135,7 @@ "id": "9", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, @@ -149,6 +152,7 @@ "id": "7", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, @@ -166,6 +170,7 @@ "id": "10", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/notion.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/notion.json index 9b9d39ca35..8450926d45 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/notion.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/notion.json @@ -254,6 +254,7 @@ "id": "14", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, @@ -271,6 +272,7 @@ "id": "15", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, @@ -354,6 +356,7 @@ "id": "18", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, @@ -371,6 +374,7 @@ "id": "19", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/orderedListStart.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/orderedListStart.json index 3532f949a8..4efd4f3a04 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/orderedListStart.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/orderedListStart.json @@ -29,6 +29,7 @@ "id": "2", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, @@ -46,6 +47,7 @@ "id": "3", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/paragraphWithImageListItem.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/paragraphWithImageListItem.json index 5b9be57500..97b250c750 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/paragraphWithImageListItem.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/paragraphWithImageListItem.json @@ -9,6 +9,7 @@ "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "http://localhost:3000/exampleURL", diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/styledTextWithImageListItem.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/styledTextWithImageListItem.json index 7e87d012cc..a738caef5f 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/styledTextWithImageListItem.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/styledTextWithImageListItem.json @@ -9,6 +9,7 @@ "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "http://localhost:3000/exampleURL", diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/textWithImageListItem.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/textWithImageListItem.json index 5b9be57500..97b250c750 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/textWithImageListItem.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/textWithImageListItem.json @@ -9,6 +9,7 @@ "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "http://localhost:3000/exampleURL", diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/basic.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/basic.json index 9c5868ccea..7d971d8169 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/basic.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/basic.json @@ -64,6 +64,7 @@ "id": "4", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/complex.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/complex.json index 8f30c274ae..cb0bb17e32 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/complex.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/complex.json @@ -291,6 +291,7 @@ "id": "18", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, @@ -308,6 +309,7 @@ "id": "19", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, @@ -327,6 +329,7 @@ "id": "21", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, @@ -343,6 +346,7 @@ "id": "20", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/image.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/image.json index 80317eaddd..f4edbe673d 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/image.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/image.json @@ -7,6 +7,7 @@ "backgroundColor": "default", "caption": "", "name": "Image", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png", diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/nested.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/nested.json index 5fd18050dd..176a04bf9b 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/nested.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/nested.json @@ -49,6 +49,7 @@ "id": "4", "props": { "backgroundColor": "default", + "start": undefined, "textAlignment": "left", "textColor": "default", }, diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/video.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/video.json index 5070e1873e..6c07867341 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/video.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/video.json @@ -7,6 +7,7 @@ "backgroundColor": "default", "caption": "", "name": "", + "previewWidth": undefined, "showPreview": true, "textAlignment": "left", "url": "https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.webm", diff --git a/tests/src/unit/core/formatConversion/parse/parseTestInstances.ts b/tests/src/unit/core/formatConversion/parse/parseTestInstances.ts index 86fe9157be..372cc69ae8 100644 --- a/tests/src/unit/core/formatConversion/parse/parseTestInstances.ts +++ b/tests/src/unit/core/formatConversion/parse/parseTestInstances.ts @@ -935,6 +935,13 @@ console.log("Third Line")`, testCase: { name: "divider", content: `
` }, executeTest: testParseHTML, }, + { + testCase: { + name: "customParagraph", + content: `Custom Paragraph`, + }, + executeTest: testParseHTML, + }, ]; export const parseTestInstancesMarkdown: TestInstance< diff --git a/tests/src/unit/core/schema/__snapshots__/blocks.json b/tests/src/unit/core/schema/__snapshots__/blocks.json index fe083f3e8b..c4e1ea6541 100644 --- a/tests/src/unit/core/schema/__snapshots__/blocks.json +++ b/tests/src/unit/core/schema/__snapshots__/blocks.json @@ -1,24 +1,38 @@ { - "audio": { + "advancedComplexAttributeNode": { "config": { "content": "none", "propSchema": { - "backgroundColor": { - "default": "default", - }, - "caption": { - "default": "", - }, - "name": { - "default": "", - }, - "showPreview": { - "default": true, - }, - "url": { - "default": "", + "user": { + "age": 30, + "name": { + "first": "John", + "last": "Doe", + }, }, }, + "type": "advancedComplexAttributeNode", + }, + "extensions": undefined, + "implementation": { + "node": null, + "render": [Function], + "runsBefore": [ + "default", + ], + "toExternalHTML": [Function], + }, + }, + "audio": { + "config": { + "content": "none", + "propSchema": { + "backgroundColor": "default", + "caption": "", + "name": "", + "showPreview": true, + "url": "", + }, "type": "audio", }, "extensions": undefined, @@ -41,21 +55,9 @@ "config": { "content": "inline", "propSchema": { - "backgroundColor": { - "default": "default", - }, - "textAlignment": { - "default": "left", - "values": [ - "left", - "center", - "right", - "justify", - ], - }, - "textColor": { - "default": "default", - }, + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", }, "type": "bulletListItem", }, @@ -84,6 +86,7 @@ "parse": [Function], "parseContent": [Function], "render": [Function], + "runsBefore": [], "toExternalHTML": [Function], }, }, @@ -91,25 +94,10 @@ "config": { "content": "inline", "propSchema": { - "backgroundColor": { - "default": "default", - }, - "checked": { - "default": false, - "type": "boolean", - }, - "textAlignment": { - "default": "left", - "values": [ - "left", - "center", - "right", - "justify", - ], - }, - "textColor": { - "default": "default", - }, + "backgroundColor": "default", + "checked": false, + "textAlignment": "left", + "textColor": "default", }, "type": "checkListItem", }, @@ -152,9 +140,7 @@ "config": { "content": "inline", "propSchema": { - "language": { - "default": "text", - }, + "language": "text", }, "type": "codeBlock", }, @@ -214,6 +200,7 @@ "parse": [Function], "parseContent": [Function], "render": [Function], + "runsBefore": [], "toExternalHTML": [Function], }, }, @@ -221,21 +208,9 @@ "config": { "content": "inline", "propSchema": { - "backgroundColor": { - "default": "default", - }, - "textAlignment": { - "default": "left", - "values": [ - "left", - "center", - "right", - "justify", - ], - }, - "textColor": { - "default": "default", - }, + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", }, "type": "customParagraph", }, @@ -244,6 +219,9 @@ "node": null, "parse": [Function], "render": [Function], + "runsBefore": [ + "default", + ], "toExternalHTML": [Function], }, }, @@ -274,6 +252,7 @@ "node": null, "parse": [Function], "render": [Function], + "runsBefore": [], "toExternalHTML": [Function], }, }, @@ -281,18 +260,10 @@ "config": { "content": "none", "propSchema": { - "backgroundColor": { - "default": "default", - }, - "caption": { - "default": "", - }, - "name": { - "default": "", - }, - "url": { - "default": "", - }, + "backgroundColor": "default", + "caption": "", + "name": "", + "url": "", }, "type": "file", }, @@ -306,6 +277,7 @@ "node": null, "parse": [Function], "render": [Function], + "runsBefore": [], "toExternalHTML": [Function], }, }, @@ -313,36 +285,11 @@ "config": { "content": "inline", "propSchema": { - "backgroundColor": { - "default": "default", - }, - "isToggleable": { - "default": false, - "optional": true, - }, - "level": { - "default": 1, - "values": [ - 1, - 2, - 3, - 4, - 5, - 6, - ], - }, - "textAlignment": { - "default": "left", - "values": [ - "left", - "center", - "right", - "justify", - ], - }, - "textColor": { - "default": "default", - }, + "backgroundColor": "default", + "isToggleable": false, + "level": 1, + "textAlignment": "left", + "textColor": "default", }, "type": "heading", }, @@ -394,6 +341,7 @@ "node": null, "parse": [Function], "render": [Function], + "runsBefore": [], "toExternalHTML": [Function], }, }, @@ -401,34 +349,12 @@ "config": { "content": "none", "propSchema": { - "backgroundColor": { - "default": "default", - }, - "caption": { - "default": "", - }, - "name": { - "default": "", - }, - "previewWidth": { - "default": undefined, - "type": "number", - }, - "showPreview": { - "default": true, - }, - "textAlignment": { - "default": "left", - "values": [ - "left", - "center", - "right", - "justify", - ], - }, - "url": { - "default": "", - }, + "backgroundColor": "default", + "caption": "", + "name": "", + "showPreview": true, + "textAlignment": "left", + "url": "", }, "type": "image", }, @@ -452,25 +378,9 @@ "config": { "content": "inline", "propSchema": { - "backgroundColor": { - "default": "default", - }, - "start": { - "default": undefined, - "type": "number", - }, - "textAlignment": { - "default": "left", - "values": [ - "left", - "center", - "right", - "justify", - ], - }, - "textColor": { - "default": "default", - }, + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", }, "type": "numberedListItem", }, @@ -518,6 +428,7 @@ "parse": [Function], "parseContent": [Function], "render": [Function], + "runsBefore": [], "toExternalHTML": [Function], }, }, @@ -532,6 +443,7 @@ "node": null, "parse": [Function], "render": [Function], + "runsBefore": [], "toExternalHTML": [Function], }, }, @@ -539,21 +451,9 @@ "config": { "content": "inline", "propSchema": { - "backgroundColor": { - "default": "default", - }, - "textAlignment": { - "default": "left", - "values": [ - "left", - "center", - "right", - "justify", - ], - }, - "textColor": { - "default": "default", - }, + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", }, "type": "paragraph", }, @@ -585,12 +485,8 @@ "config": { "content": "inline", "propSchema": { - "backgroundColor": { - "default": "default", - }, - "textColor": { - "default": "default", - }, + "backgroundColor": "default", + "textColor": "default", }, "type": "quote", }, @@ -617,6 +513,7 @@ "node": null, "parse": [Function], "render": [Function], + "runsBefore": [], "toExternalHTML": [Function], }, }, @@ -624,21 +521,9 @@ "config": { "content": "inline", "propSchema": { - "backgroundColor": { - "default": "default", - }, - "textAlignment": { - "default": "left", - "values": [ - "left", - "center", - "right", - "justify", - ], - }, - "textColor": { - "default": "default", - }, + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", }, "type": "simpleCustomParagraph", }, @@ -646,6 +531,9 @@ "implementation": { "node": null, "render": [Function], + "runsBefore": [ + "default", + ], "toExternalHTML": [Function], }, }, @@ -653,34 +541,12 @@ "config": { "content": "none", "propSchema": { - "backgroundColor": { - "default": "default", - }, - "caption": { - "default": "", - }, - "name": { - "default": "", - }, - "previewWidth": { - "default": undefined, - "type": "number", - }, - "showPreview": { - "default": true, - }, - "textAlignment": { - "default": "left", - "values": [ - "left", - "center", - "right", - "justify", - ], - }, - "url": { - "default": "", - }, + "backgroundColor": "default", + "caption": "", + "name": "", + "showPreview": true, + "textAlignment": "left", + "url": "", }, "type": "simpleImage", }, @@ -688,6 +554,9 @@ "implementation": { "node": null, "render": [Function], + "runsBefore": [ + "default", + ], "toExternalHTML": [Function], }, }, @@ -695,9 +564,7 @@ "config": { "content": "table", "propSchema": { - "textColor": { - "default": "default", - }, + "textColor": "default", }, "type": "table", }, @@ -802,21 +669,9 @@ "config": { "content": "inline", "propSchema": { - "backgroundColor": { - "default": "default", - }, - "textAlignment": { - "default": "left", - "values": [ - "left", - "center", - "right", - "justify", - ], - }, - "textColor": { - "default": "default", - }, + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", }, "type": "toggleListItem", }, @@ -838,6 +693,7 @@ }, "node": null, "render": [Function], + "runsBefore": [], "toExternalHTML": [Function], }, }, @@ -845,34 +701,12 @@ "config": { "content": "none", "propSchema": { - "backgroundColor": { - "default": "default", - }, - "caption": { - "default": "", - }, - "name": { - "default": "", - }, - "previewWidth": { - "default": undefined, - "type": "number", - }, - "showPreview": { - "default": true, - }, - "textAlignment": { - "default": "left", - "values": [ - "left", - "center", - "right", - "justify", - ], - }, - "url": { - "default": "", - }, + "backgroundColor": "default", + "caption": "", + "name": "", + "showPreview": true, + "textAlignment": "left", + "url": "", }, "type": "video", }, diff --git a/tests/src/unit/core/schema/__snapshots__/inlinecontent.json b/tests/src/unit/core/schema/__snapshots__/inlinecontent.json index c682709782..2aa361d3a8 100644 --- a/tests/src/unit/core/schema/__snapshots__/inlinecontent.json +++ b/tests/src/unit/core/schema/__snapshots__/inlinecontent.json @@ -7,9 +7,7 @@ "config": { "content": "none", "propSchema": { - "user": { - "default": "", - }, + "user": "", }, "type": "mention", }, diff --git a/tests/src/unit/core/schema/runTests.test.ts b/tests/src/unit/core/schema/runTests.test.ts index f14b0740de..5396a708bc 100644 --- a/tests/src/unit/core/schema/runTests.test.ts +++ b/tests/src/unit/core/schema/runTests.test.ts @@ -1,5 +1,5 @@ import { describe, expect, it } from "vitest"; - +import * as z from "zod/v4/core"; import { createTestEditor } from "../createTestEditor.js"; import { testSchema } from "../testSchema.js"; @@ -12,6 +12,9 @@ describe("Schema test", () => { it("Block specs test", async () => { const specs = getEditor().schema.blockSpecs; Object.values(specs).forEach((spec) => { + // Use an empty object validation to check if a zod propSchema is the same shape + // @ts-ignore this is just to check the shape, not that zod instance is a certain shape + spec.config.propSchema = z.parse(spec.config.propSchema._zodSource, {}); if ( typeof spec.implementation === "object" && spec.implementation !== null && @@ -26,12 +29,17 @@ describe("Schema test", () => { it("Inline content specs test", async () => { const specs = getEditor().schema.inlineContentSpecs; Object.values(specs).forEach((spec) => { - if ( - typeof spec.implementation === "object" && - spec.implementation !== null && - typeof spec.implementation.node === "object" - ) { - spec.implementation.node = null as any; + if (typeof spec.config === "object" && "propSchema" in spec.config) { + // Use an empty object validation to check if a zod propSchema is the same shape + // @ts-ignore this is just to check the shape, not that zod instance is a certain shape + spec.config.propSchema = z.parse(spec.config.propSchema._zodSource, {}); + if ( + typeof spec.implementation === "object" && + spec.implementation !== null && + typeof spec.implementation.node === "object" + ) { + spec.implementation.node = null as any; + } } }); await expect(specs).toMatchFileSnapshot( diff --git a/tests/src/unit/core/selection/getSelection/__snapshots__/regular/blockWithoutContent.json b/tests/src/unit/core/selection/getSelection/__snapshots__/regular/blockWithoutContent.json index c937e00159..17f022c455 100644 --- a/tests/src/unit/core/selection/getSelection/__snapshots__/regular/blockWithoutContent.json +++ b/tests/src/unit/core/selection/getSelection/__snapshots__/regular/blockWithoutContent.json @@ -10,9 +10,9 @@ "props": { "textAlignment": "left", "backgroundColor": "default", + "caption": "", "name": "", "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", - "caption": "", "showPreview": true }, "children": [] diff --git a/tests/src/unit/core/selection/incrementSelection/__snapshots__/end/basic.txt b/tests/src/unit/core/selection/incrementSelection/__snapshots__/end/basic.txt index 7c6c2f9b52..47ee5f4d2e 100644 --- a/tests/src/unit/core/selection/incrementSelection/__snapshots__/end/basic.txt +++ b/tests/src/unit/core/selection/incrementSelection/__snapshots__/end/basic.txt @@ -184,93 +184,93 @@ {"_meta":{"startPos":0,"endPos":183},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]}]} {"_meta":{"startPos":0,"endPos":183},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]}]} {"_meta":{"startPos":0,"endPos":183},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":186},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[]}]}],"blockCutAtEnd":"10"} -{"_meta":{"startPos":0,"endPos":186},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[]}]}],"blockCutAtEnd":"10"} -{"_meta":{"startPos":0,"endPos":186},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[]}]}],"blockCutAtEnd":"10"} -{"_meta":{"startPos":0,"endPos":186},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[]}]}],"blockCutAtEnd":"10"} -{"_meta":{"startPos":0,"endPos":190},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":191},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":192},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":193},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":194},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":195},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":196},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":197},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":198},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":199},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":200},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":201},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":202},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":203},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":204},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":217},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"T","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":218},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Ta","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":219},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Tab","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":220},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Tabl","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":221},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":222},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table ","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":223},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table C","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":224},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Ce","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":225},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cel","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":228},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":228},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":228},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":231},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"T","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":232},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Ta","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":233},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Tab","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":234},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Tabl","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":235},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":236},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table ","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":237},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table C","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":238},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Ce","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":239},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cel","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":247},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"T","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":248},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Ta","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":249},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Tab","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":250},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Tabl","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":251},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":252},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table ","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":253},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table C","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":254},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Ce","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":255},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cel","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":258},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":258},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":258},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":261},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"T","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":262},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Ta","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":263},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Tab","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":264},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Tabl","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":265},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":266},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table ","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":267},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table C","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":268},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Ce","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":269},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cel","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":186},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[]}]}],"blockCutAtEnd":"10"} +{"_meta":{"startPos":0,"endPos":186},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[]}]}],"blockCutAtEnd":"10"} +{"_meta":{"startPos":0,"endPos":186},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[]}]}],"blockCutAtEnd":"10"} +{"_meta":{"startPos":0,"endPos":186},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[]}]}],"blockCutAtEnd":"10"} +{"_meta":{"startPos":0,"endPos":190},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":191},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":192},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":193},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":194},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":195},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":196},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":197},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":198},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":199},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":200},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":201},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":202},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":203},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":204},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":217},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"T","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":218},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Ta","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":219},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Tab","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":220},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Tabl","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":221},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":222},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table ","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":223},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table C","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":224},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Ce","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":225},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cel","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":228},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":228},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":228},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":231},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"T","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":232},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Ta","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":233},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Tab","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":234},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Tabl","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":235},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":236},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table ","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":237},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table C","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":238},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Ce","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":239},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cel","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":247},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"T","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":248},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Ta","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":249},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Tab","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":250},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Tabl","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":251},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":252},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table ","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":253},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table C","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":254},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Ce","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":255},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cel","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":258},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":258},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":258},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":261},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"T","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":262},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Ta","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":263},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Tab","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":264},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Tabl","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":265},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":266},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table ","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":267},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table C","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":268},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Ce","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":269},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cel","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} diff --git a/tests/src/unit/core/selection/incrementSelection/__snapshots__/start/basic.txt b/tests/src/unit/core/selection/incrementSelection/__snapshots__/start/basic.txt index 35dbdb1d78..4741f36545 100644 --- a/tests/src/unit/core/selection/incrementSelection/__snapshots__/start/basic.txt +++ b/tests/src/unit/core/selection/incrementSelection/__snapshots__/start/basic.txt @@ -1,189 +1,189 @@ -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":4,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"eading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} -{"_meta":{"startPos":5,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} -{"_meta":{"startPos":6,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ding 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} -{"_meta":{"startPos":7,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ing 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} -{"_meta":{"startPos":8,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ng 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} -{"_meta":{"startPos":9,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"g 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} -{"_meta":{"startPos":10,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":" 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} -{"_meta":{"startPos":11,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} -{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":17,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":18,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":19,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":20,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":21,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":22,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":23,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":24,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":25,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":26,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":27,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":28,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":29,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":30,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":31,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":32,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":33,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":39,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":40,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":41,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":42,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":43,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":44,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":45,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":46,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":47,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":48,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":49,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":50,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":51,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":52,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":53,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":54,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":55,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":61,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":62,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":63,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":64,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":65,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":66,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":67,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":68,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":69,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":70,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":71,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":72,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":73,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":74,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":75,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":76,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":77,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":85,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"eading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} -{"_meta":{"startPos":86,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} -{"_meta":{"startPos":87,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ding 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} -{"_meta":{"startPos":88,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ing 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} -{"_meta":{"startPos":89,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ng 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} -{"_meta":{"startPos":90,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"g 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} -{"_meta":{"startPos":91,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":" 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} -{"_meta":{"startPos":92,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} -{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":98,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":99,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":100,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":101,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":102,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":103,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":104,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":105,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":106,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":107,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":108,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":109,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":110,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":111,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":112,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":113,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":114,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":120,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":121,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":122,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":123,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":124,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":125,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":126,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":127,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":128,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":129,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":130,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":131,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":132,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":133,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":134,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":135,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":136,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":142,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":143,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":144,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":145,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":146,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":147,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":148,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":149,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":150,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":151,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":152,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":153,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":154,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":155,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":156,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":157,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":158,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":166,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"old","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":167,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ld","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":168,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"d","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":169,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":170,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"talic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":171,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"alic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":172,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"lic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":173,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":174,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"c","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":175,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":176,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"egular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":177,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"gular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":178,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":179,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"lar","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":180,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ar","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":181,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"r","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":183,"endPos":276},"blocks":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":183,"endPos":276},"blocks":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":183,"endPos":276},"blocks":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":183,"endPos":276},"blocks":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":4,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"eading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} +{"_meta":{"startPos":5,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} +{"_meta":{"startPos":6,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ding 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} +{"_meta":{"startPos":7,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ing 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} +{"_meta":{"startPos":8,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ng 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} +{"_meta":{"startPos":9,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"g 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} +{"_meta":{"startPos":10,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":" 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} +{"_meta":{"startPos":11,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} +{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":17,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":18,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":19,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":20,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":21,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":22,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":23,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":24,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":25,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":26,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":27,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":28,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":29,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":30,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":31,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":32,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":33,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":39,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":40,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":41,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":42,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":43,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":44,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":45,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":46,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":47,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":48,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":49,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":50,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":51,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":52,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":53,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":54,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":55,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":61,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":62,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":63,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":64,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":65,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":66,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":67,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":68,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":69,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":70,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":71,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":72,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":73,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":74,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":75,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":76,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":77,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":85,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"eading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} +{"_meta":{"startPos":86,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} +{"_meta":{"startPos":87,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ding 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} +{"_meta":{"startPos":88,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ing 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} +{"_meta":{"startPos":89,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ng 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} +{"_meta":{"startPos":90,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"g 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} +{"_meta":{"startPos":91,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":" 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} +{"_meta":{"startPos":92,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} +{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":98,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":99,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":100,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":101,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":102,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":103,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":104,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":105,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":106,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":107,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":108,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":109,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":110,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":111,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":112,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":113,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":114,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":120,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":121,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":122,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":123,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":124,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":125,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":126,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":127,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":128,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":129,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":130,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":131,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":132,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":133,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":134,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":135,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":136,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":142,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":143,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":144,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":145,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":146,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":147,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":148,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":149,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":150,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":151,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":152,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":153,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":154,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":155,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":156,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":157,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":158,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":166,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"old","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":167,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ld","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":168,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"d","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":169,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":170,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"talic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":171,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"alic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":172,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"lic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":173,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":174,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"c","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":175,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":176,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"egular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":177,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"gular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":178,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ular","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":179,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"lar","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":180,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"ar","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":181,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"backgroundColor":"default","textColor":"red","textAlignment":"left","level":2,"isToggleable":false},"content":[{"type":"text","text":"r","styles":{}}],"children":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":183,"endPos":276},"blocks":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":183,"endPos":276},"blocks":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":183,"endPos":276},"blocks":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":183,"endPos":276},"blocks":[{"id":"10","type":"image","props":{"textAlignment":"left","backgroundColor":"default","caption":"","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} {"_meta":{"startPos":186,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} {"_meta":{"startPos":186,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} {"_meta":{"startPos":186,"endPos":276},"blocks":[{"id":"11","type":"paragraph","props":{"backgroundColor":"default","textColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} diff --git a/tests/src/unit/core/testSchema.ts b/tests/src/unit/core/testSchema.ts index eca37363fa..a7ddf73929 100644 --- a/tests/src/unit/core/testSchema.ts +++ b/tests/src/unit/core/testSchema.ts @@ -6,10 +6,12 @@ import { createImageBlockSpec, createInlineContentSpec, createPageBreakBlockSpec, + createPropSchemaFromZod, createStyleSpec, - defaultProps, + defaultPropSchema, parseDefaultProps, } from "@blocknote/core"; +import z from "zod/v4"; // BLOCKS ---------------------------------------------------------------------- @@ -41,25 +43,20 @@ const CustomParagraph = createBlockSpec( () => ({ type: "customParagraph", - propSchema: defaultProps, + propSchema: defaultPropSchema, content: "inline", }) as const, ), { parse: (e) => { - if (e.tagName !== "P") { - return undefined; - } - - if (e.classList.contains("custom-paragraph")) { + if (e.tagName === "CUSTOM-PARAGRAPH") { return parseDefaultProps(e); } return undefined; }, render: () => { - const paragraph = document.createElement("p"); - paragraph.className = "custom-paragraph"; + const paragraph = document.createElement("custom-paragraph"); return { dom: paragraph, @@ -67,11 +64,11 @@ const CustomParagraph = createBlockSpec( }; }, toExternalHTML: () => { - const paragraph = document.createElement("p"); - paragraph.className = "custom-paragraph"; + const paragraph = document.createElement("custom-paragraph"); return { dom: paragraph, + contentDOM: paragraph, }; }, }, @@ -82,7 +79,7 @@ const SimpleCustomParagraph = createBlockSpec( () => ({ type: "simpleCustomParagraph", - propSchema: defaultProps, + propSchema: defaultPropSchema, content: "inline", }) as const, ), @@ -99,16 +96,53 @@ const SimpleCustomParagraph = createBlockSpec( }, ); +const ComplexAttributeNode = createBlockSpec( + createBlockConfig( + () => + ({ + type: "advancedComplexAttributeNode", + propSchema: createPropSchemaFromZod( + z.object({ + user: z + .object({ + name: z.object({ + first: z.string(), + last: z.string(), + }), + age: z.number(), + }) + .default({ name: { first: "John", last: "Doe" }, age: 30 }), + }), + ), + content: "none", + }) as const, + ), + { + render(block) { + const paragraph = document.createElement("div"); + + paragraph.setAttribute( + "data-user-manual", + JSON.stringify(block.props.user), + ); + + return { + dom: paragraph, + }; + }, + }, +); + // INLINE CONTENT -------------------------------------------------------------- const Mention = createInlineContentSpec( { type: "mention", - propSchema: { - user: { - default: "", - }, - }, + propSchema: createPropSchemaFromZod( + z.object({ + user: z.string().default(""), + }), + ), content: "none", }, { @@ -152,7 +186,7 @@ const Mention = createInlineContentSpec( const Tag = createInlineContentSpec( { type: "tag" as const, - propSchema: {}, + propSchema: createPropSchemaFromZod(z.object({})), content: "styled", }, { @@ -222,6 +256,7 @@ export const testSchema = BlockNoteSchema.create().extend({ customParagraph: CustomParagraph(), simpleCustomParagraph: SimpleCustomParagraph(), simpleImage: SimpleImage(), + advancedComplexAttributeNode: ComplexAttributeNode(), }, inlineContentSpecs: { mention: Mention, diff --git a/tests/src/unit/core/typeGuards/runTests.test.ts b/tests/src/unit/core/typeGuards/runTests.test.ts index a803e5f1e5..5bd3e7ca96 100644 --- a/tests/src/unit/core/typeGuards/runTests.test.ts +++ b/tests/src/unit/core/typeGuards/runTests.test.ts @@ -1,135 +1,275 @@ -import { BlockNoteEditor, editorHasBlockWithType } from "@blocknote/core"; +import { + BlockNoteEditor, + BlockSchema, + editorHasBlockType, + editorHasBlockTypeAndPropsAreValid, + editorHasBlockTypeAndZodProps, + InlineContentSchema, + StyleSchema, +} from "@blocknote/core"; import { describe, expect, it } from "vitest"; - +import * as z from "zod/v4"; import { createTestEditor } from "../createTestEditor.js"; import { testSchema } from "../testSchema.js"; // Tests for verifying that type guards which check if an editor's schema // contains a block (and its props) are working correctly. -describe("Editor block schema type guard tests", () => { - const getEditor = createTestEditor(testSchema) as () => BlockNoteEditor< - any, - any, - any - >; +// TODO +describe("Editor block schema type guard tests", () => { + const getEditor = createTestEditor( + testSchema, + ) as any as () => BlockNoteEditor; + + it("editorHasBlockType valid", () => { + const editor = getEditor(); + + if (editorHasBlockType(editor, "heading")) { + // if we're not checking props, we should be able to update the block with any props + + // Below is just for type checking. We don't actually execute this + // @ts-expect-error + // eslint-disable-next-line @typescript-eslint/no-unused-vars + const _f = () => { + editor.updateBlock("fake-id", { + type: "heading", + props: { + textColor: "default", + level: 1, + anyRandomProp: "anyRandomValue", + }, + }); - it("blockType", () => { - expect(editorHasBlockWithType(getEditor(), "heading")).toBeTruthy(); + // @ts-expect-error + editor.updateBlock("fake-id", { + type: "invalid-type", + props: { + textColor: "default", + level: 1, + }, + }); + }; + } else { + throw new Error("Heading block not found"); + } }); - it("blockTypeInvalid", () => { - expect(editorHasBlockWithType(getEditor(), "embed")).toBeFalsy(); + it("editorHasBlockType invalid", () => { + expect(editorHasBlockType(getEditor(), "embed")).toBeFalsy(); }); - it("blockWithPropTypes", () => { - expect( - editorHasBlockWithType(getEditor(), "heading", { - level: "number", - textColor: "string", - }), - ).toBeTruthy(); + it("editorHasBlockTypeAndPropsAreValid valid", () => { + const editor = getEditor(); + + if ( + editorHasBlockTypeAndPropsAreValid(editor, "heading", { + level: 3 as const, + }) + ) { + // Below is just for type checking. We don't actually execute this + // @ts-expect-error + // eslint-disable-next-line @typescript-eslint/no-unused-vars + const _f = () => { + // if we're not checking props, we should be able to update the block with any props + editor.updateBlock("fake-id", { + type: "heading", + props: { + level: 3, + }, + }); + + // @ts-expect-error + editor.updateBlock("fake-id", { + type: "heading", + props: { + level: 1, + }, + }); + }; + } else { + throw new Error("Heading block not found"); + } }); - it("blockWithPropTypesInvalidType", () => { + it("editorHasBlockTypeAndPropsAreValid invalid", () => { + const editor = getEditor(); + expect( - editorHasBlockWithType(getEditor(), "heading", { - level: "number", - textColor: "number", + editorHasBlockTypeAndPropsAreValid(editor, "heading", { + level: "hello", }), ).toBeFalsy(); }); - it("blockWithPropSchema", () => { + it("editorHasBlockTypeAndZodProps valid", () => { + const editor = getEditor(); + + if ( + editorHasBlockTypeAndZodProps( + editor, + "heading", + z.object({ + textColor: z.string().default("default"), + }), + ) + ) { + // Below is just for type checking. We don't actually execute this + // @ts-expect-error + // eslint-disable-next-line @typescript-eslint/no-unused-vars + const _f = () => { + // if we're not checking props, we should be able to update the block with any props + editor.updateBlock("fake-id", { + type: "heading", + props: { + textColor: "red", + }, + }); + + // @ts-expect-error + editor.updateBlock("fake-id", { + type: "heading", + props: { + level: 1, + }, + }); + }; + } else { + throw new Error("Heading block not found"); + } + }); + + it("editorHasBlockTypeAndZodProps invalid", () => { expect( - editorHasBlockWithType(getEditor(), "heading", { - level: { default: 1, values: [1, 2, 3] }, - textColor: { default: "default" }, - }), - ).toBeTruthy(); + editorHasBlockTypeAndZodProps( + getEditor(), + "heading", + z.object({ + textColor: z.number(), + }), + ), + ).toBeFalsy(); }); - it("blockWithPropSchemaInvalidType", () => { + it("editorHasBlockTypeAndZodProps invalid 2", () => { expect( - editorHasBlockWithType(getEditor(), "heading", { - level: { default: 1, values: [1, 2, 3] }, - textColor: { default: 1 }, - }), + editorHasBlockTypeAndZodProps( + getEditor(), + "heading", + z.object({ + level: z.union([z.literal(1), z.literal(2), z.literal(3)]).default(1), + textColor: z.number().default(1), + }), + ), ).toBeFalsy(); }); - it("blockWithPropSchemaInvalidValues", () => { + it("editorHasBlockTypeAndZodProps invalid 3", () => { expect( - editorHasBlockWithType(getEditor(), "heading", { - level: { default: 1, values: [1, 2, 3, 4, 5, 6, 7] }, - textColor: { default: "default" }, - }), + editorHasBlockTypeAndZodProps( + getEditor(), + "heading", + z.object({ + level: z.union([z.literal(1), z.literal(2), z.literal(3)]).default(1), + textColor: z.string().default("default"), + }), + ), ).toBeFalsy(); }); - it("blockWithPropTypesUndefinedDefault", () => { + it("editorHasBlockTypeAndZodProps valid 2", () => { expect( - editorHasBlockWithType(getEditor(), "numberedListItem", { - start: "number", - textColor: "string", - }), + editorHasBlockTypeAndZodProps( + getEditor(), + "numberedListItem", + z.object({ + start: z.number().optional(), + textColor: z.string().default("default"), + }), + ), ).toBeTruthy(); }); - it("blockWithPropSchemaUndefinedDefaultInvalidType", () => { + it("editorHasBlockTypeAndZodProps invalid 4", () => { expect( - editorHasBlockWithType(getEditor(), "numberedListItem", { - start: "string", - textColor: "string", - }), + editorHasBlockTypeAndZodProps( + getEditor(), + "numberedListItem", + z.object({ + start: z.string().optional(), + textColor: z.string().default("default"), + }), + ), ).toBeFalsy(); }); - it("customBlockType", () => { - expect(editorHasBlockWithType(getEditor(), "simpleImage")).toBeTruthy(); + it("editorhasBlockType valid customBlockType", () => { + expect(editorHasBlockType(getEditor(), "simpleImage")).toBeTruthy(); }); - it("customBlockWithPropTypes", () => { + it("editorHasBlockTypeAndZodProps valid 3", () => { expect( - editorHasBlockWithType(getEditor(), "simpleImage", { - name: "string", - url: "string", - }), + editorHasBlockTypeAndZodProps( + getEditor(), + "simpleImage", + z.object({ + name: z.string().default(""), + url: z.string().default(""), + }), + ), ).toBeTruthy(); }); - it("customBlockWithPropTypesInvalidType", () => { + it("editorHasBlockTypeAndZodProps invalid customBlockType", () => { expect( - editorHasBlockWithType(getEditor(), "simpleImage", { - name: "string", - url: "number", - }), + editorHasBlockTypeAndZodProps( + getEditor(), + "simpleImage", + z.object({ + name: z.string(), + url: z.number(), + }), + ), ).toBeFalsy(); }); - it("customBlockWithPropSchema", () => { + it("editorHasBlockTypeAndZodProps valid customBlockType", () => { expect( - editorHasBlockWithType(getEditor(), "simpleImage", { - name: { default: "" }, - url: { default: "" }, - }), + editorHasBlockTypeAndZodProps( + getEditor(), + "simpleImage", + z.object({ + name: z.string().default(""), + url: z.string().default(""), + }), + ), ).toBeTruthy(); }); - it("customBlockWithPropSchemaInvalidType", () => { + it("editorHasBlockTypeAndZodProps invalid customBlockType 2", () => { expect( - editorHasBlockWithType(getEditor(), "simpleImage", { - name: { default: false }, - url: { default: "" }, - }), + editorHasBlockTypeAndZodProps( + getEditor(), + "simpleImage", + z.object({ + name: z.boolean().default(false), + url: z.string().default(""), + }), + ), ).toBeFalsy(); }); - it("customBlockWithPropSchemaInvalidValues", () => { + it("editorHasBlockTypeAndZodProps invalid customBlockType 3", () => { expect( - editorHasBlockWithType(getEditor(), "simpleImage", { - name: { default: "", values: ["image", "photo"] }, - url: { default: "" }, - }), + editorHasBlockTypeAndZodProps( + getEditor(), + "simpleImage", + z.object({ + name: z + .union([z.literal("image"), z.literal("photo")]) + .default("photo"), + url: z.string().default(""), + }), + ), ).toBeFalsy(); }); }); diff --git a/tests/src/unit/react/formatConversion/export/__snapshots__/blocknoteHTML/advancedComplexAttributeNode/basic.html b/tests/src/unit/react/formatConversion/export/__snapshots__/blocknoteHTML/advancedComplexAttributeNode/basic.html new file mode 100644 index 0000000000..f5e0e4f461 --- /dev/null +++ b/tests/src/unit/react/formatConversion/export/__snapshots__/blocknoteHTML/advancedComplexAttributeNode/basic.html @@ -0,0 +1,17 @@ +
+
+
+
+
+
+
+
+
\ No newline at end of file diff --git a/tests/src/unit/react/formatConversion/export/__snapshots__/html/advancedComplexAttributeNode/basic.html b/tests/src/unit/react/formatConversion/export/__snapshots__/html/advancedComplexAttributeNode/basic.html new file mode 100644 index 0000000000..ff20d6baea --- /dev/null +++ b/tests/src/unit/react/formatConversion/export/__snapshots__/html/advancedComplexAttributeNode/basic.html @@ -0,0 +1,4 @@ +
\ No newline at end of file diff --git a/tests/src/unit/react/formatConversion/export/exportTestInstances.ts b/tests/src/unit/react/formatConversion/export/exportTestInstances.ts index d822928fb6..d4ba00d103 100644 --- a/tests/src/unit/react/formatConversion/export/exportTestInstances.ts +++ b/tests/src/unit/react/formatConversion/export/exportTestInstances.ts @@ -470,6 +470,23 @@ export const exportTestInstancesBlockNoteHTML: TestInstance< }, executeTest: testExportBlockNoteHTML, }, + { + testCase: { + name: "advancedComplexAttributeNode/basic", + content: [ + { + type: "advancedComplexAttributeNode", + props: { + user: { + name: { first: "USER_FIRST_NAME", last: "USER_LAST_NAME" }, + age: 30, + }, + }, + }, + ], + }, + executeTest: testExportBlockNoteHTML, + }, ]; export const exportTestInstancesHTML: TestInstance< diff --git a/tests/src/unit/react/setupTestEditor.tsx b/tests/src/unit/react/setupTestEditor.tsx index 94867cd8c9..29b4b47ee8 100644 --- a/tests/src/unit/react/setupTestEditor.tsx +++ b/tests/src/unit/react/setupTestEditor.tsx @@ -1,7 +1,7 @@ import { BlockNoteEditor, - BlockNoteSchema, BlockSchema, + CustomBlockNoteSchema, InlineContentSchema, StyleSchema, } from "@blocknote/core"; @@ -17,7 +17,7 @@ export const setupTestEditor = < I extends InlineContentSchema, S extends StyleSchema, >( - schema: BlockNoteSchema, + schema: CustomBlockNoteSchema, ): (() => BlockNoteEditor) => { let editor: BlockNoteEditor; const div = document.createElement("div"); diff --git a/tests/src/unit/react/testSchema.tsx b/tests/src/unit/react/testSchema.tsx index aa6ebff0f8..bab021c0d9 100644 --- a/tests/src/unit/react/testSchema.tsx +++ b/tests/src/unit/react/testSchema.tsx @@ -1,7 +1,8 @@ import { BlockNoteSchema, createPageBreakBlockSpec, - defaultProps, + createPropSchemaFromZod, + defaultPropSchema, } from "@blocknote/core"; import { createReactBlockSpec, @@ -9,13 +10,14 @@ import { createReactStyleSpec, } from "@blocknote/react"; import { createContext, useContext } from "react"; +import { z } from "zod/v4"; // BLOCKS ---------------------------------------------------------------------- const createCustomParagraph = createReactBlockSpec( { type: "customParagraph", - propSchema: defaultProps, + propSchema: defaultPropSchema, content: "inline", }, { @@ -31,7 +33,7 @@ const createCustomParagraph = createReactBlockSpec( const createSimpleCustomParagraph = createReactBlockSpec( { type: "simpleCustomParagraph", - propSchema: defaultProps, + propSchema: defaultPropSchema, content: "inline", }, { @@ -55,7 +57,7 @@ const ContextParagraphComponent = (props: any) => { const createContextParagraph = createReactBlockSpec( { type: "contextParagraph", - propSchema: defaultProps, + propSchema: defaultPropSchema, content: "inline", }, { @@ -63,16 +65,41 @@ const createContextParagraph = createReactBlockSpec( }, ); +const ComplexAttributeNode = createReactBlockSpec( + { + type: "advancedComplexAttributeNode", + propSchema: createPropSchemaFromZod( + z.object({ + user: z.object({ + name: z.object({ + first: z.string(), + last: z.string(), + }), + age: z.number(), + }), + }), + ), + content: "none", + }, + { + render: (props) => { + return
; + }, + // Run with higher priority than paragraph + runsBefore: ["paragraph"], + }, +); + // INLINE CONTENT -------------------------------------------------------------- const Mention = createReactInlineContentSpec( { type: "mention", - propSchema: { - user: { - default: "", - }, - }, + propSchema: createPropSchemaFromZod( + z.object({ + user: z.string().default(""), + }), + ), content: "none", }, { @@ -111,7 +138,7 @@ const Mention = createReactInlineContentSpec( const Tag = createReactInlineContentSpec( { type: "tag", - propSchema: {}, + propSchema: createPropSchemaFromZod(z.object({})), content: "styled", }, { @@ -168,6 +195,7 @@ export const testSchema = BlockNoteSchema.create().extend({ customParagraph: createCustomParagraph(), simpleCustomParagraph: createSimpleCustomParagraph(), contextParagraph: createContextParagraph(), + advancedComplexAttributeNode: ComplexAttributeNode(), }, inlineContentSpecs: { mention: Mention, diff --git a/tests/src/unit/shared/formatConversion/export/exportTestExecutors.ts b/tests/src/unit/shared/formatConversion/export/exportTestExecutors.ts index e7ccef6e5b..ab0daa21cf 100644 --- a/tests/src/unit/shared/formatConversion/export/exportTestExecutors.ts +++ b/tests/src/unit/shared/formatConversion/export/exportTestExecutors.ts @@ -3,9 +3,10 @@ import { BlockSchema, blockToNode, InlineContentSchema, + partialBlocksToBlocks, + partialBlockToBlock, StyleSchema, } from "@blocknote/core"; -import { addIdsToBlocks } from "@shared/formatConversionTestUtil.js"; import { prettify } from "htmlfy"; import { expect } from "vitest"; @@ -21,12 +22,15 @@ export const testExportBlockNoteHTML = async < ) => { (window as any).__TEST_OPTIONS.mockID = 0; - addIdsToBlocks(testCase.content); - await expect( - prettify(await editor.blocksToFullHTML(testCase.content), { - tag_wrap: true, - }), + prettify( + await editor.blocksToFullHTML( + partialBlocksToBlocks(editor.schema, testCase.content), + ), + { + tag_wrap: true, + }, + ), ).toMatchFileSnapshot(`./__snapshots__/blocknoteHTML/${testCase.name}.html`); }; @@ -40,12 +44,15 @@ export const testExportHTML = async < ) => { (window as any).__TEST_OPTIONS.mockID = 0; - addIdsToBlocks(testCase.content); - await expect( - prettify(await editor.blocksToHTMLLossy(testCase.content), { - tag_wrap: true, - }), + prettify( + await editor.blocksToHTMLLossy( + partialBlocksToBlocks(editor.schema, testCase.content), + ), + { + tag_wrap: true, + }, + ), ).toMatchFileSnapshot(`./__snapshots__/html/${testCase.name}.html`); }; @@ -59,10 +66,10 @@ export const testExportMarkdown = async < ) => { (window as any).__TEST_OPTIONS.mockID = 0; - addIdsToBlocks(testCase.content); - await expect( - await editor.blocksToMarkdownLossy(testCase.content), + await editor.blocksToMarkdownLossy( + partialBlocksToBlocks(editor.schema, testCase.content), + ), ).toMatchFileSnapshot(`./__snapshots__/markdown/${testCase.name}.md`); }; @@ -76,11 +83,13 @@ export const testExportNodes = async < ) => { (window as any).__TEST_OPTIONS.mockID = 0; - addIdsToBlocks(testCase.content); - await expect( testCase.content.map((block) => - blockToNode(block, editor.pmSchema, editor.schema.styleSchema), + blockToNode( + partialBlockToBlock(editor.schema, block), + editor.pmSchema, + editor.schema.styleSchema, + ), ), ).toMatchFileSnapshot(`./__snapshots__/nodes/${testCase.name}.json`); }; diff --git a/tests/src/unit/shared/formatConversion/exportParseEquality/exportParseEqualityTestExecutors.ts b/tests/src/unit/shared/formatConversion/exportParseEquality/exportParseEqualityTestExecutors.ts index a42f7c7c4b..0e59e73486 100644 --- a/tests/src/unit/shared/formatConversion/exportParseEquality/exportParseEqualityTestExecutors.ts +++ b/tests/src/unit/shared/formatConversion/exportParseEquality/exportParseEqualityTestExecutors.ts @@ -4,12 +4,9 @@ import { blockToNode, InlineContentSchema, nodeToBlock, + partialBlocksToBlocks, StyleSchema, } from "@blocknote/core"; -import { - addIdsToBlocks, - partialBlocksToBlocksForTesting, -} from "@shared/formatConversionTestUtil.js"; import { expect } from "vitest"; import { ExportParseEqualityTestCase } from "./exportParseEqualityTestCase.js"; @@ -23,20 +20,16 @@ export const testExportParseEqualityBlockNoteHTML = async < testCase: ExportParseEqualityTestCase, ) => { (window as any).__TEST_OPTIONS.mockID = 0; + const fullBlocks = partialBlocksToBlocks(editor.schema, testCase.content); - addIdsToBlocks(testCase.content); - - const exported = await editor.blocksToFullHTML(testCase.content); + const exported = await editor.blocksToFullHTML(fullBlocks); + const parsed = await editor.tryParseHTMLToBlocks(exported); if (testCase.name.startsWith("malformed/")) { // We purposefully are okay with malformed response, we know they won't match - expect(await editor.tryParseHTMLToBlocks(exported)).not.toStrictEqual( - partialBlocksToBlocksForTesting(editor.schema, testCase.content), - ); + expect(parsed).not.toStrictEqual(fullBlocks); } else { - expect(await editor.tryParseHTMLToBlocks(exported)).toStrictEqual( - partialBlocksToBlocksForTesting(editor.schema, testCase.content), - ); + expect(parsed).toStrictEqual(fullBlocks); } }; @@ -50,17 +43,16 @@ export const testExportParseEqualityHTML = async < ) => { (window as any).__TEST_OPTIONS.mockID = 0; - addIdsToBlocks(testCase.content); + const fullBlocks = partialBlocksToBlocks(editor.schema, testCase.content); - const exported = await editor.blocksToHTMLLossy(testCase.content); + const exported = await editor.blocksToHTMLLossy(fullBlocks); // Reset mock ID as we don't expect block IDs to be preserved in this // conversion. (window as any).__TEST_OPTIONS.mockID = 0; - expect(await editor.tryParseHTMLToBlocks(exported)).toStrictEqual( - partialBlocksToBlocksForTesting(editor.schema, testCase.content), - ); + const parsed = await editor.tryParseHTMLToBlocks(exported); + expect(parsed).toStrictEqual(fullBlocks); }; export const testExportParseEqualityNodes = async < @@ -73,15 +65,13 @@ export const testExportParseEqualityNodes = async < ) => { (window as any).__TEST_OPTIONS.mockID = 0; - addIdsToBlocks(testCase.content); + const fullBlocks = partialBlocksToBlocks(editor.schema, testCase.content); - const exported = testCase.content.map((block) => + const exported = fullBlocks.map((block) => blockToNode(block, editor.pmSchema), ); expect( exported.map((node) => nodeToBlock(node, editor.pmSchema)), - ).toStrictEqual( - partialBlocksToBlocksForTesting(editor.schema, testCase.content), - ); + ).toStrictEqual(fullBlocks); }; diff --git a/tests/src/utils/customblocks/Alert.tsx b/tests/src/utils/customblocks/Alert.tsx index 103c9d3e25..3405f7c936 100644 --- a/tests/src/utils/customblocks/Alert.tsx +++ b/tests/src/utils/customblocks/Alert.tsx @@ -4,8 +4,10 @@ import { BlockSchemaWithBlock, PartialBlock, addNodeAndExtensionsToSpec, - defaultProps, + createPropSchemaFromZod, + defaultZodPropSchema, } from "@blocknote/core"; +import { z } from "zod/v4"; import { RiAlertFill } from "react-icons/ri"; const values = { @@ -30,14 +32,18 @@ const values = { export const Alert = addNodeAndExtensionsToSpec( { type: "alert" as const, - propSchema: { - textAlignment: defaultProps.textAlignment, - textColor: defaultProps.textColor, - type: { - default: "warning", - values: ["warning", "error", "info", "success"], - }, - }, + propSchema: createPropSchemaFromZod( + defaultZodPropSchema + .pick({ + textColor: true, + textAlignment: true, + }) + .extend({ + type: z + .enum(["warning", "error", "info", "success"]) + .default("warning"), + }), + ), content: "inline", }, { diff --git a/tests/src/utils/customblocks/Button.tsx b/tests/src/utils/customblocks/Button.tsx index 07672cbb8c..54830137b0 100644 --- a/tests/src/utils/customblocks/Button.tsx +++ b/tests/src/utils/customblocks/Button.tsx @@ -1,16 +1,19 @@ import { BlockNoteEditor, addNodeAndExtensionsToSpec, - defaultProps, + createPropSchemaFromZod, + defaultZodPropSchema, } from "@blocknote/core"; import { RiRadioButtonFill } from "react-icons/ri"; export const Button = addNodeAndExtensionsToSpec( { type: "button" as const, - propSchema: { - backgroundColor: defaultProps.backgroundColor, - } as const, + propSchema: createPropSchemaFromZod( + defaultZodPropSchema.pick({ + backgroundColor: true, + }), + ), content: "none", }, { diff --git a/tests/src/utils/customblocks/Embed.tsx b/tests/src/utils/customblocks/Embed.tsx index 2d55e28c54..828eb0896f 100644 --- a/tests/src/utils/customblocks/Embed.tsx +++ b/tests/src/utils/customblocks/Embed.tsx @@ -1,15 +1,20 @@ -import { BlockNoteEditor, addNodeAndExtensionsToSpec } from "@blocknote/core"; +import { + BlockNoteEditor, + addNodeAndExtensionsToSpec, + createPropSchemaFromZod, +} from "@blocknote/core"; +import { z } from "zod/v4"; import { RiLayout5Fill } from "react-icons/ri"; export const Embed = addNodeAndExtensionsToSpec( { type: "embed" as const, - propSchema: { - src: { - default: "https://www.youtube.com/embed/wjfuB8Xjhc4", - }, - } as const, + propSchema: createPropSchemaFromZod( + z.object({ + src: z.string().default("https://www.youtube.com/embed/wjfuB8Xjhc4"), + }), + ), content: "none", }, { diff --git a/tests/src/utils/customblocks/Image.tsx b/tests/src/utils/customblocks/Image.tsx index e2597d1b84..44472ac104 100644 --- a/tests/src/utils/customblocks/Image.tsx +++ b/tests/src/utils/customblocks/Image.tsx @@ -1,18 +1,19 @@ import { BlockNoteEditor, addNodeAndExtensionsToSpec, - defaultProps, + createPropSchemaFromZod, + defaultZodPropSchema, } from "@blocknote/core"; import { RiImage2Fill } from "react-icons/ri"; +import { z } from "zod/v4"; export const Image = addNodeAndExtensionsToSpec( { type: "image" as const, - propSchema: { - ...defaultProps, - src: { - default: "https://via.placeholder.com/1000", - }, - } as const, + propSchema: createPropSchemaFromZod( + defaultZodPropSchema.extend({ + src: z.string().default("https://via.placeholder.com/1000"), + }), + ), content: "inline", }, { diff --git a/tests/src/utils/customblocks/ReactAlert.tsx b/tests/src/utils/customblocks/ReactAlert.tsx index fd5f0e124c..909e373951 100644 --- a/tests/src/utils/customblocks/ReactAlert.tsx +++ b/tests/src/utils/customblocks/ReactAlert.tsx @@ -1,8 +1,13 @@ /* eslint-disable no-console */ -import { BlockNoteEditor, defaultProps } from "@blocknote/core"; +import { + BlockNoteEditor, + createPropSchemaFromZod, + defaultZodPropSchema, +} from "@blocknote/core"; import { createReactBlockSpec } from "@blocknote/react"; import { useEffect, useState } from "react"; import { RiAlertFill } from "react-icons/ri"; +import { z } from "zod/v4"; const values = { warning: { @@ -26,14 +31,18 @@ const values = { export const ReactAlert = createReactBlockSpec( { type: "reactAlert" as const, - propSchema: { - textAlignment: defaultProps.textAlignment, - textColor: defaultProps.textColor, - type: { - default: "warning", - values: ["warning", "error", "info", "success"], - } as const, - }, + propSchema: createPropSchemaFromZod( + defaultZodPropSchema + .pick({ + textAlignment: true, + textColor: true, + }) + .extend({ + type: z + .enum(["warning", "error", "info", "success"]) + .default("warning"), + }), + ), content: "inline" as const, }, { diff --git a/tests/src/utils/customblocks/ReactImage.tsx b/tests/src/utils/customblocks/ReactImage.tsx index cf7aed5145..ab82657e0e 100644 --- a/tests/src/utils/customblocks/ReactImage.tsx +++ b/tests/src/utils/customblocks/ReactImage.tsx @@ -1,16 +1,20 @@ -import { BlockNoteEditor, defaultProps } from "@blocknote/core"; +import { + BlockNoteEditor, + createPropSchemaFromZod, + defaultZodPropSchema, +} from "@blocknote/core"; import { createReactBlockSpec } from "@blocknote/react"; import { RiImage2Fill } from "react-icons/ri"; +import { z } from "zod/v4"; export const ReactImage = createReactBlockSpec( { type: "reactImage" as const, - propSchema: { - ...defaultProps, - src: { - default: "https://via.placeholder.com/1000", - }, - }, + propSchema: createPropSchemaFromZod( + defaultZodPropSchema.extend({ + src: z.string().default("https://via.placeholder.com/1000"), + }), + ), content: "inline" as const, }, { diff --git a/tests/src/utils/customblocks/Separator.tsx b/tests/src/utils/customblocks/Separator.tsx index 07f7664d73..67ef57f043 100644 --- a/tests/src/utils/customblocks/Separator.tsx +++ b/tests/src/utils/customblocks/Separator.tsx @@ -1,11 +1,16 @@ -import { BlockNoteEditor, addNodeAndExtensionsToSpec } from "@blocknote/core"; +import { + BlockNoteEditor, + addNodeAndExtensionsToSpec, + createPropSchemaFromZod, +} from "@blocknote/core"; +import { z } from "zod/v4"; import { RiSeparator } from "react-icons/ri"; export const Separator = addNodeAndExtensionsToSpec( { type: "separator" as const, - propSchema: {} as const, + propSchema: createPropSchemaFromZod(z.object({})), content: "none", }, {