diff --git a/.gitignore b/.gitignore index bc0541fef..ce6d13ba4 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,5 @@ release /test-results/ /playwright-report/ /playwright/.cache/ +.env +*.pem diff --git a/.todo.txt b/.todo.txt new file mode 100644 index 000000000..446b47ddc --- /dev/null +++ b/.todo.txt @@ -0,0 +1,7 @@ + +review toolbar code +fix design of menus (smaller items, border?) + +see if addToHistory: false is needed +track last affected position to update toolbar +enable / disable show selection plugin \ No newline at end of file diff --git a/docs/pages/examples/_meta.json b/docs/pages/examples/_meta.json index aa81bb87a..ea06b6952 100644 --- a/docs/pages/examples/_meta.json +++ b/docs/pages/examples/_meta.json @@ -7,5 +7,6 @@ "interoperability": "Interoperability", "custom-schema": "Custom Schemas", "collaboration": "Collaboration", - "extensions": "Extensions" + "extensions": "Extensions", + "ai": "AI" } diff --git a/examples/03-ui-components/02-formatting-toolbar-buttons/BlueButton.tsx b/examples/03-ui-components/02-formatting-toolbar-buttons/BlueButton.tsx index 48400a273..359b9b95c 100644 --- a/examples/03-ui-components/02-formatting-toolbar-buttons/BlueButton.tsx +++ b/examples/03-ui-components/02-formatting-toolbar-buttons/BlueButton.tsx @@ -1,9 +1,9 @@ +import "@blocknote/mantine/style.css"; import { useBlockNoteEditor, useComponentsContext, useEditorContentOrSelectionChange, } from "@blocknote/react"; -import "@blocknote/mantine/style.css"; import { useState } from "react"; // Custom Formatting Toolbar Button to toggle blue text & background color. diff --git a/examples/03-ui-components/06-suggestion-menus-slash-menu-items/App.tsx b/examples/03-ui-components/06-suggestion-menus-slash-menu-items/App.tsx index 984cf3d4e..95c348144 100644 --- a/examples/03-ui-components/06-suggestion-menus-slash-menu-items/App.tsx +++ b/examples/03-ui-components/06-suggestion-menus-slash-menu-items/App.tsx @@ -4,18 +4,19 @@ import { PartialBlock, } from "@blocknote/core"; import "@blocknote/core/fonts/inter.css"; +import { BlockNoteView } from "@blocknote/mantine"; +import "@blocknote/mantine/style.css"; import { DefaultReactSuggestionItem, getDefaultReactSlashMenuItems, SuggestionMenuController, useCreateBlockNote, } from "@blocknote/react"; -import { BlockNoteView } from "@blocknote/mantine"; -import "@blocknote/mantine/style.css"; import { HiOutlineGlobeAlt } from "react-icons/hi"; // Custom Slash Menu item to insert a block after the current one. const insertHelloWorldItem = (editor: BlockNoteEditor) => ({ + key: "hello_world", title: "Insert Hello World", onItemClick: () => { // Block that the text cursor is currently in. diff --git a/examples/06-custom-schema/01-alert-block/App.tsx b/examples/06-custom-schema/01-alert-block/App.tsx index 6d58d740e..044486440 100644 --- a/examples/06-custom-schema/01-alert-block/App.tsx +++ b/examples/06-custom-schema/01-alert-block/App.tsx @@ -29,6 +29,7 @@ const schema = BlockNoteSchema.create({ // Slash menu item to insert an Alert block const insertAlert = (editor: typeof schema.BlockNoteEditor) => ({ + key: "alert", title: "Alert", onItemClick: () => { insertOrUpdateBlock(editor, { diff --git a/examples/06-custom-schema/02-suggestion-menus-mentions/App.tsx b/examples/06-custom-schema/02-suggestion-menus-mentions/App.tsx index c1fec94a4..f4116fbec 100644 --- a/examples/06-custom-schema/02-suggestion-menus-mentions/App.tsx +++ b/examples/06-custom-schema/02-suggestion-menus-mentions/App.tsx @@ -12,7 +12,7 @@ import { useCreateBlockNote, } from "@blocknote/react"; -import { Mention } from "./Mention"; +import { Mention } from "./Mention.js"; // Our schema with inline content specs, which contain the configs and // implementations for inline content that we want our editor to use. @@ -32,6 +32,7 @@ const getMentionMenuItems = ( const users = ["Steve", "Bob", "Joe", "Mike"]; return users.map((user) => ({ + key: user.toLowerCase(), title: user, onItemClick: () => { editor.insertInlineContent([ diff --git a/examples/06-custom-schema/04-pdf-file-block/App.tsx b/examples/06-custom-schema/04-pdf-file-block/App.tsx index 1c3129e3b..42edf9068 100644 --- a/examples/06-custom-schema/04-pdf-file-block/App.tsx +++ b/examples/06-custom-schema/04-pdf-file-block/App.tsx @@ -30,6 +30,7 @@ const schema = BlockNoteSchema.create({ // Slash menu item to insert a PDF block const insertPDF = (editor: typeof schema.BlockNoteEditor) => ({ + key: "pdf", title: "PDF", onItemClick: () => { insertOrUpdateBlock(editor, { diff --git a/examples/06-custom-schema/react-custom-styles/App.tsx b/examples/06-custom-schema/react-custom-styles/App.tsx index f19533c79..a3bfbbd8a 100644 --- a/examples/06-custom-schema/react-custom-styles/App.tsx +++ b/examples/06-custom-schema/react-custom-styles/App.tsx @@ -1,17 +1,17 @@ import { BlockNoteSchema, defaultStyleSpecs } from "@blocknote/core"; import "@blocknote/core/fonts/inter.css"; +import { BlockNoteView } from "@blocknote/mantine"; +import "@blocknote/mantine/style.css"; import { - createReactStyleSpec, FormattingToolbar, FormattingToolbarController, FormattingToolbarProps, + createReactStyleSpec, useActiveStyles, useBlockNoteEditor, useComponentsContext, useCreateBlockNote, } from "@blocknote/react"; -import { BlockNoteView } from "@blocknote/mantine"; -import "@blocknote/mantine/style.css"; const small = createReactStyleSpec( { diff --git a/examples/09-ai/01-minimal/.bnexample.json b/examples/09-ai/01-minimal/.bnexample.json new file mode 100644 index 000000000..74c5fdccf --- /dev/null +++ b/examples/09-ai/01-minimal/.bnexample.json @@ -0,0 +1,13 @@ +{ + "playground": true, + "docs": true, + "author": "yousefed", + "tags": ["AI", "llm"], + "dependencies": { + "@blocknote/xl-ai": "latest", + "@mantine/core": "^7.10.1", + "ai": "^4.1.0", + "@ai-sdk/openai": "^1.1.0", + "@ai-sdk/groq": "^1.1.0" + } +} diff --git a/examples/09-ai/01-minimal/App.tsx b/examples/09-ai/01-minimal/App.tsx new file mode 100644 index 000000000..c4862c8d7 --- /dev/null +++ b/examples/09-ai/01-minimal/App.tsx @@ -0,0 +1,184 @@ +import { + AIShowSelectionPlugin, + AIToolbarButton, + BlockNoteAIContextProvider, + BlockNoteAIUI, + locales as aiLocales, + createBlockNoteAIClient, + getAISlashMenuItems, + useBlockNoteAIContext, +} from "@blocknote/xl-ai"; + +import { createGroq } from "@ai-sdk/groq"; +import { createOpenAI } from "@ai-sdk/openai"; +import { + BlockNoteEditor, + BlockNoteSchema, + defaultBlockSpecs, + filterSuggestionItems, + locales, +} from "@blocknote/core"; +import "@blocknote/core/fonts/inter.css"; +import { BlockNoteView } from "@blocknote/mantine"; +import "@blocknote/mantine/style.css"; +import { + FormattingToolbar, + FormattingToolbarController, + SuggestionMenuController, + blockTypeSelectItems, + getDefaultReactSlashMenuItems, + getFormattingToolbarItems, + useCreateBlockNote, +} from "@blocknote/react"; +import "@blocknote/xl-ai/style.css"; +import { Fieldset, Switch } from "@mantine/core"; +import { useMemo, useState } from "react"; +import { BasicAutocomplete } from "./AutoComplete.js"; +import RadioGroupComponent from "./components/RadioGroupComponent.js"; + +const schema = BlockNoteSchema.create({ + blockSpecs: { + ...defaultBlockSpecs, + // ai: AIBlock, + }, +}); + +const client = createBlockNoteAIClient({ + apiKey: import.meta.env.VITE_BLOCKNOTE_AI_SERVER_API_KEY || "PLACEHOLDER", + baseURL: + import.meta.env.VITE_BLOCKNOTE_AI_SERVER_BASE_URL || + "https://localhost:3000/ai", +}); + +export default function App() { + const [aiModelString, setAiModelString] = useState( + "openai/gpt-4o-2024-08-06" + ); + // Creates a new editor instance. + const editor = useCreateBlockNote({ + schema, + dictionary: { + ...locales.en, + ai: aiLocales.en, + } as any, + _extensions: { + // TODO: things will break when user provides different keys. Define name on plugins instead? + // aiBlockToolbar: new AIBlockToolbarProsemirrorPlugin(), + aiSelection: new AIShowSelectionPlugin(), + }, + }); + + const model = useMemo(() => { + const [provider, ...modelNameParts] = aiModelString.split("/"); + const modelName = modelNameParts.join("/"); + if (provider === "openai") { + return createOpenAI({ + ...client.getProviderSettings("openai"), + })(modelName, {}); + } else if (provider === "groq") { + return createGroq({ + ...client.getProviderSettings("groq"), + })(modelName); + } else if (provider === "albert-etalab") { + return createOpenAI({ + // albert-etalab/neuralmagic/Meta-Llama-3.1-70B-Instruct-FP8 + baseURL: "https://albert.api.staging.etalab.gouv.fr/v1", + ...client.getProviderSettings("albert-etalab"), + compatibility: "compatible", + })(modelName); + } + throw new Error(`Unknown model: ${aiModelString}`); + }, [aiModelString]); + + const [dataFormat, setDataFormat] = useState<"json" | "markdown">("json"); + + const [streamStateValue, setStream] = useState(true); + + const stream = dataFormat === "markdown" ? false : streamStateValue; + + // Renders the editor instance using a React component. + return ( +
+
+ + + setDataFormat(value as "json" | "markdown")} + /> + + setStream(e.target.checked)} + label="Streaming" + /> +
+ + + + + ( + + {...getFormattingToolbarItems([ + ...blockTypeSelectItems(editor.dictionary), + // ...aiBlockTypeSelectItems(aiLocales.en), + ])} + + + )} + /> + + + {/* TODO: Side Menu customization */} + +
+ ); +} + +function SuggestionMenu(props: { editor: BlockNoteEditor }) { + const ctx = useBlockNoteAIContext(); + return ( + + filterSuggestionItems( + [ + ...getDefaultReactSlashMenuItems(props.editor), + ...getAISlashMenuItems(props.editor, ctx), + ], + query + ) + } + /> + ); +} + +/** + * - correct commands + * - FIX UI + * + * API: + * - context (which part of document to pass along) + * - based on selection + * + * - box with proposal + * + */ diff --git a/examples/09-ai/01-minimal/AutoComplete.tsx b/examples/09-ai/01-minimal/AutoComplete.tsx new file mode 100644 index 000000000..27217e899 --- /dev/null +++ b/examples/09-ai/01-minimal/AutoComplete.tsx @@ -0,0 +1,60 @@ +import { Combobox, TextInput, useCombobox } from "@mantine/core"; +import { AI_MODELS } from "./data/aimodels.js"; + +// https://mantine.dev/combobox/?e=BasicAutocomplete +export function BasicAutocomplete(props: { + value: string; + onChange: (value: string) => void; +}) { + const { value, onChange } = props; + const combobox = useCombobox(); + + const shouldFilterOptions = !AI_MODELS.some((item) => item === value); + const filteredOptions = shouldFilterOptions + ? AI_MODELS.filter((item) => + item.toLowerCase().includes(value.toLowerCase().trim()) + ) + : AI_MODELS; + + const options = filteredOptions.map((item) => ( + + {item} + + )); + + return ( + { + onChange(optionValue); + combobox.closeDropdown(); + }} + store={combobox} + withinPortal={false}> + + { + onChange(event.currentTarget.value); + combobox.openDropdown(); + combobox.updateSelectedOptionIndex(); + }} + onClick={() => combobox.openDropdown()} + onFocus={() => combobox.openDropdown()} + onBlur={() => combobox.closeDropdown()} + /> + + + + + {options.length === 0 ? ( + Nothing found + ) : ( + options + )} + + + + ); +} diff --git a/examples/09-ai/01-minimal/README.md b/examples/09-ai/01-minimal/README.md new file mode 100644 index 000000000..ceef0db5f --- /dev/null +++ b/examples/09-ai/01-minimal/README.md @@ -0,0 +1,7 @@ +# AI integration + +This example shows how to use the `@blocknote/xl-ai` package to add AI capabilities to BlockNote. + +**Relevant Docs:** + +- TODO diff --git a/examples/09-ai/01-minimal/components/RadioGroupComponent.module.css b/examples/09-ai/01-minimal/components/RadioGroupComponent.module.css new file mode 100644 index 000000000..46eedff7d --- /dev/null +++ b/examples/09-ai/01-minimal/components/RadioGroupComponent.module.css @@ -0,0 +1,33 @@ +.root { + position: relative; + padding: var(--mantine-spacing-md); + transition: border-color 150ms ease; + + &[data-checked] { + border-color: var(--mantine-primary-color-filled); + } + + @mixin hover { + @mixin light { + background-color: var(--mantine-color-gray-0); + } + + @mixin dark { + background-color: var(--mantine-color-dark-6); + } + } +} + +.label { + font-family: var(--mantine-font-family-monospace); + font-weight: bold; + font-size: var(--mantine-font-size-md); + line-height: 1.3; + color: var(--mantine-color-bright); +} + +.description { + margin-top: 8px; + color: var(--mantine-color-dimmed); + font-size: var(--mantine-font-size-xs); +} diff --git a/examples/09-ai/01-minimal/components/RadioGroupComponent.tsx b/examples/09-ai/01-minimal/components/RadioGroupComponent.tsx new file mode 100644 index 000000000..f1cbed150 --- /dev/null +++ b/examples/09-ai/01-minimal/components/RadioGroupComponent.tsx @@ -0,0 +1,44 @@ +import { Radio, Stack } from "@mantine/core"; +import React from "react"; + +interface RadioGroupComponentProps { + label: string; + items: Array<{ + name: string; + description: string; + value: string; + }>; + value: string; + onChange: (value: string) => void; +} + +const RadioGroupComponent: React.FC = ({ + label, + items, + value, + onChange, +}) => ( + + + {items.map((item) => ( + + // TODO: doesn't work well with our mantive version or styles + // + // + // + //
+ // {item.name} + // {item.description} + //
+ //
+ //
+ ))} +
+
+); + +export default RadioGroupComponent; diff --git a/examples/09-ai/01-minimal/data/aimodels.ts b/examples/09-ai/01-minimal/data/aimodels.ts new file mode 100644 index 000000000..85cffedbb --- /dev/null +++ b/examples/09-ai/01-minimal/data/aimodels.ts @@ -0,0 +1,36 @@ +export const AI_MODELS = [ + "openai/o1-preview", + "openai/o1-mini", + "openai/gpt-4o", + "openai/gpt-4o-2024-05-13", + "openai/gpt-4o-2024-08-06", + "openai/gpt-4o-2024-11-20", + "openai/gpt-4o-audio-preview", + "openai/gpt-4o-audio-preview-2024-10-01", + "openai/gpt-4o-mini", + "openai/gpt-4o-mini-2024-07-18", + "openai/gpt-4-turbo", + "openai/gpt-4-turbo-2024-04-09", + "openai/gpt-4-turbo-preview", + "openai/gpt-4-0125-preview", + "openai/gpt-4-1106-preview", + "openai/gpt-4", + "openai/gpt-4-0613", + "openai/gpt-3.5-turbo-0125", + "openai/gpt-3.5-turbo", + "openai/gpt-3.5-turbo-1106", + "groq/gemma2-9b-it", + "groq/llama-3.3-70b-versatile", + "groq/llama-3.1-8b-instant", + "groq/llama-guard-3-8b", + "groq/llama3-70b-8192", + "groq/llama3-8b-8192", + "groq/mixtral-8x7b-32768", + "groq/deepseek-r1-distill-llama-70b-specdec", + "groq/deepseek-r1-distill-llama-70b", + "groq/llama-3.3-70b-specdec", + "groq/llama-3.2-1b-preview", + "groq/llama-3.2-3b-preview", + "groq/llama-3.2-11b-vision-preview", + "groq/llama-3.2-90b-vision-preview", +]; diff --git a/examples/09-ai/01-minimal/index.html b/examples/09-ai/01-minimal/index.html new file mode 100644 index 000000000..76bfd55b1 --- /dev/null +++ b/examples/09-ai/01-minimal/index.html @@ -0,0 +1,14 @@ + + + + + + AI integration + + +
+ + + diff --git a/examples/09-ai/01-minimal/main.tsx b/examples/09-ai/01-minimal/main.tsx new file mode 100644 index 000000000..f88b490fb --- /dev/null +++ b/examples/09-ai/01-minimal/main.tsx @@ -0,0 +1,11 @@ +// AUTO-GENERATED FILE, DO NOT EDIT DIRECTLY +import React from "react"; +import { createRoot } from "react-dom/client"; +import App from "./App"; + +const root = createRoot(document.getElementById("root")!); +root.render( + + + +); diff --git a/examples/09-ai/01-minimal/package.json b/examples/09-ai/01-minimal/package.json new file mode 100644 index 000000000..f2b26a20c --- /dev/null +++ b/examples/09-ai/01-minimal/package.json @@ -0,0 +1,42 @@ +{ + "name": "@blocknote/example-minimal", + "description": "AUTO-GENERATED FILE, DO NOT EDIT DIRECTLY", + "private": true, + "version": "0.12.4", + "scripts": { + "start": "vite", + "dev": "vite", + "build": "tsc && vite build", + "preview": "vite preview", + "lint": "eslint . --max-warnings 0" + }, + "dependencies": { + "@blocknote/core": "latest", + "@blocknote/react": "latest", + "@blocknote/ariakit": "latest", + "@blocknote/mantine": "latest", + "@blocknote/shadcn": "latest", + "react": "^18.3.1", + "react-dom": "^18.3.1", + "@blocknote/xl-ai": "latest", + "@mantine/core": "^7.10.1", + "ai": "^4.1.0", + "@ai-sdk/openai": "^1.1.0", + "@ai-sdk/groq": "^1.1.0" + }, + "devDependencies": { + "@types/react": "^18.0.25", + "@types/react-dom": "^18.0.9", + "@vitejs/plugin-react": "^4.3.1", + "eslint": "^8.10.0", + "vite": "^5.3.4" + }, + "eslintConfig": { + "extends": [ + "../../../.eslintrc.js" + ] + }, + "eslintIgnore": [ + "dist" + ] +} \ No newline at end of file diff --git a/examples/09-ai/01-minimal/tsconfig.json b/examples/09-ai/01-minimal/tsconfig.json new file mode 100644 index 000000000..1bd8ab3c5 --- /dev/null +++ b/examples/09-ai/01-minimal/tsconfig.json @@ -0,0 +1,36 @@ +{ + "__comment": "AUTO-GENERATED FILE, DO NOT EDIT DIRECTLY", + "compilerOptions": { + "target": "ESNext", + "useDefineForClassFields": true, + "lib": [ + "DOM", + "DOM.Iterable", + "ESNext" + ], + "allowJs": false, + "skipLibCheck": true, + "esModuleInterop": false, + "allowSyntheticDefaultImports": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "module": "ESNext", + "moduleResolution": "Node", + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "jsx": "react-jsx", + "composite": true + }, + "include": [ + "." + ], + "__ADD_FOR_LOCAL_DEV_references": [ + { + "path": "../../../packages/core/" + }, + { + "path": "../../../packages/react/" + } + ] +} \ No newline at end of file diff --git a/examples/09-ai/01-minimal/vite-env.d.ts b/examples/09-ai/01-minimal/vite-env.d.ts new file mode 100644 index 000000000..835d74da9 --- /dev/null +++ b/examples/09-ai/01-minimal/vite-env.d.ts @@ -0,0 +1,10 @@ +/// + +interface ImportMetaEnv { + readonly VITE_BLOCKNOTE_AI_SERVER_API_KEY: string; + readonly VITE_BLOCKNOTE_AI_SERVER_BASE_URL: string; +} + +interface ImportMeta { + readonly env: ImportMetaEnv; +} diff --git a/examples/09-ai/01-minimal/vite.config.ts b/examples/09-ai/01-minimal/vite.config.ts new file mode 100644 index 000000000..f62ab20bc --- /dev/null +++ b/examples/09-ai/01-minimal/vite.config.ts @@ -0,0 +1,32 @@ +// AUTO-GENERATED FILE, DO NOT EDIT DIRECTLY +import react from "@vitejs/plugin-react"; +import * as fs from "fs"; +import * as path from "path"; +import { defineConfig } from "vite"; +// import eslintPlugin from "vite-plugin-eslint"; +// https://vitejs.dev/config/ +export default defineConfig((conf) => ({ + plugins: [react()], + optimizeDeps: {}, + build: { + sourcemap: true, + }, + resolve: { + alias: + conf.command === "build" || + !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + ? {} + : ({ + // Comment out the lines below to load a built version of blocknote + // or, keep as is to load live from sources with live reload working + "@blocknote/core": path.resolve( + __dirname, + "../../packages/core/src/" + ), + "@blocknote/react": path.resolve( + __dirname, + "../../packages/react/src/" + ), + } as any), + }, +})); diff --git a/examples/vanilla-js/react-vanilla-custom-styles/App.tsx b/examples/vanilla-js/react-vanilla-custom-styles/App.tsx index 813952cda..78bf78aaf 100644 --- a/examples/vanilla-js/react-vanilla-custom-styles/App.tsx +++ b/examples/vanilla-js/react-vanilla-custom-styles/App.tsx @@ -4,6 +4,8 @@ import { defaultStyleSpecs, } from "@blocknote/core"; import "@blocknote/core/fonts/inter.css"; +import { BlockNoteView } from "@blocknote/mantine"; +import "@blocknote/mantine/style.css"; import { FormattingToolbar, FormattingToolbarController, @@ -13,8 +15,6 @@ import { useComponentsContext, useCreateBlockNote, } from "@blocknote/react"; -import { BlockNoteView } from "@blocknote/mantine"; -import "@blocknote/mantine/style.css"; const small = createStyleSpec( { diff --git a/package-lock.json b/package-lock.json index d56bb94e9..9d26dccd5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,10 +1,12 @@ { "name": "root", + "version": "0.23.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "root", + "version": "0.23.0", "workspaces": [ "shared", "packages/*", @@ -156,6 +158,149 @@ } } }, + "node_modules/@ai-sdk/groq": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@ai-sdk/groq/-/groq-1.1.0.tgz", + "integrity": "sha512-IMYRb0DXRc0ie4kY12O67/fsaSyvGPxrJOPCq2F3lAprOk1RddviUl4G4M4zhUFRIOIzGsit5qAtsBYdsIdy9w==", + "dependencies": { + "@ai-sdk/provider": "1.0.4", + "@ai-sdk/provider-utils": "2.1.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "zod": "^3.0.0" + } + }, + "node_modules/@ai-sdk/groq/node_modules/@ai-sdk/provider": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@ai-sdk/provider/-/provider-1.0.4.tgz", + "integrity": "sha512-lJi5zwDosvvZER3e/pB8lj1MN3o3S7zJliQq56BRr4e9V3fcRyFtwP0JRxaRS5vHYX3OJ154VezVoQNrk0eaKw==", + "dependencies": { + "json-schema": "^0.4.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@ai-sdk/groq/node_modules/@ai-sdk/provider-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@ai-sdk/provider-utils/-/provider-utils-2.1.0.tgz", + "integrity": "sha512-rBUabNoyB25PBUjaiMSk86fHNSCqTngNZVvXxv8+6mvw47JX5OexW+ZHRsEw8XKTE8+hqvNFVzctaOrRZ2i9Zw==", + "dependencies": { + "@ai-sdk/provider": "1.0.4", + "eventsource-parser": "^3.0.0", + "nanoid": "^3.3.8", + "secure-json-parse": "^2.7.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "zod": "^3.0.0" + }, + "peerDependenciesMeta": { + "zod": { + "optional": true + } + } + }, + "node_modules/@ai-sdk/openai": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@ai-sdk/openai/-/openai-1.1.2.tgz", + "integrity": "sha512-9rfcwjl4g1/Bdr2SmgFQr+aw81r62MvIKE7QDHMC4ulFd/Hej2oClROSMpDFZHXzs7RGeb32VkRyCHUWWgN3RQ==", + "dependencies": { + "@ai-sdk/provider": "1.0.6", + "@ai-sdk/provider-utils": "2.1.2" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "zod": "^3.0.0" + } + }, + "node_modules/@ai-sdk/provider": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@ai-sdk/provider/-/provider-1.0.6.tgz", + "integrity": "sha512-hwj/gFNxpDgEfTaYzCYoslmw01IY9kWLKl/wf8xuPvHtQIzlfXWmmUwc8PnCwxyt8cKzIuV0dfUghCf68HQ0SA==", + "dependencies": { + "json-schema": "^0.4.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@ai-sdk/provider-utils": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@ai-sdk/provider-utils/-/provider-utils-2.1.2.tgz", + "integrity": "sha512-ezpQT6kzy/2O4yyn/2YigMqynBYjZIOam3/EMNVzju+Ogj+Z+pf27c/Th78ce0A2ltgrXx6xN14sal/HHZNOOw==", + "dependencies": { + "@ai-sdk/provider": "1.0.6", + "eventsource-parser": "^3.0.0", + "nanoid": "^3.3.8", + "secure-json-parse": "^2.7.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "zod": "^3.0.0" + }, + "peerDependenciesMeta": { + "zod": { + "optional": true + } + } + }, + "node_modules/@ai-sdk/react": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@ai-sdk/react/-/react-1.1.2.tgz", + "integrity": "sha512-bBcRsDaNHzCKSIBbPngMeqbnwZ1RFadXQo9XzHoGrvLANYRwuphGNB8XTXYVLC/eXjoaGVGw2wWf/TYigEnCuA==", + "dependencies": { + "@ai-sdk/provider-utils": "2.1.2", + "@ai-sdk/ui-utils": "1.1.2", + "swr": "^2.2.5", + "throttleit": "2.1.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "react": "^18 || ^19 || ^19.0.0-rc", + "zod": "^3.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "zod": { + "optional": true + } + } + }, + "node_modules/@ai-sdk/ui-utils": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@ai-sdk/ui-utils/-/ui-utils-1.1.2.tgz", + "integrity": "sha512-+0kfBF4Y9jmlg1KlbNKIxchmXx9PzuReSpgRNWhpU10vfl1eeer4xK/XL2qHnzAWhsMFe/SVZXJIQObk44zNEQ==", + "dependencies": { + "@ai-sdk/provider": "1.0.6", + "@ai-sdk/provider-utils": "2.1.2", + "zod-to-json-schema": "^3.24.1" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "zod": "^3.0.0" + }, + "peerDependenciesMeta": { + "zod": { + "optional": true + } + } + }, "node_modules/@alloc/quick-lru": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", @@ -1541,9 +1686,9 @@ } }, "node_modules/@babel/helper-string-parser": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.7.tgz", - "integrity": "sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", + "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", "engines": { "node": ">=6.9.0" } @@ -1672,9 +1817,12 @@ } }, "node_modules/@babel/parser": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.7.tgz", - "integrity": "sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==", + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.6.tgz", + "integrity": "sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==", + "dependencies": { + "@babel/types": "^7.25.6" + }, "bin": { "parser": "bin/babel-parser.js" }, @@ -3310,11 +3458,11 @@ } }, "node_modules/@babel/types": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.7.tgz", - "integrity": "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==", + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.6.tgz", + "integrity": "sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==", "dependencies": { - "@babel/helper-string-parser": "^7.24.7", + "@babel/helper-string-parser": "^7.24.8", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" }, @@ -3369,6 +3517,14 @@ "resolved": "tests", "link": true }, + "node_modules/@blocknote/xl-ai": { + "resolved": "packages/xl-ai", + "link": true + }, + "node_modules/@blocknote/xl-ai-server": { + "resolved": "packages/xl-ai-server", + "link": true + }, "node_modules/@blocknote/xl-docx-exporter": { "resolved": "packages/xl-docx-exporter", "link": true @@ -3386,6 +3542,43 @@ "resolved": "https://registry.npmjs.org/@braintree/sanitize-url/-/sanitize-url-6.0.4.tgz", "integrity": "sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==" }, + "node_modules/@bundled-es-modules/cookie": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@bundled-es-modules/cookie/-/cookie-2.0.1.tgz", + "integrity": "sha512-8o+5fRPLNbjbdGRRmJj3h6Hh1AQJf2dk3qQ/5ZFb+PXkRNiSoMGGUKlsgLfrxneb72axVJyIYji64E2+nNfYyw==", + "dev": true, + "dependencies": { + "cookie": "^0.7.2" + } + }, + "node_modules/@bundled-es-modules/cookie/node_modules/cookie": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz", + "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/@bundled-es-modules/statuses": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@bundled-es-modules/statuses/-/statuses-1.0.1.tgz", + "integrity": "sha512-yn7BklA5acgcBr+7w064fGV+SGIFySjCKpqjcWgBAIfrAkY+4GQTJJHQMeT3V/sgz23VTEVV8TtOmkvJAhFVfg==", + "dev": true, + "dependencies": { + "statuses": "^2.0.1" + } + }, + "node_modules/@bundled-es-modules/tough-cookie": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@bundled-es-modules/tough-cookie/-/tough-cookie-0.1.6.tgz", + "integrity": "sha512-dvMHbL464C0zI+Yqxbz6kZ5TOEp7GLW+pry/RWndAR8MJQAXZ2rPmIs8tziTZjeIyhSNZgZbCePtfSbdWqStJw==", + "dev": true, + "dependencies": { + "@types/tough-cookie": "^4.0.5", + "tough-cookie": "^4.1.4" + } + }, "node_modules/@cloudflare/workerd-darwin-64": { "version": "1.20240129.0", "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20240129.0.tgz", @@ -3466,6 +3659,29 @@ "resolved": "https://registry.npmjs.org/@cloudflare/workers-types/-/workers-types-4.20240129.0.tgz", "integrity": "sha512-VyHbih/bqh/RN2FRxnXznG0bpBIg9RfSP1ldbAVnCXFinjOdv0zm2P/RWqOVN9+FgU5sanRltwwT7jGngxZy8w==" }, + "node_modules/@cronvel/get-pixels": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/@cronvel/get-pixels/-/get-pixels-3.4.1.tgz", + "integrity": "sha512-gB5C5nDIacLUdsMuW8YsM9SzK3vaFANe4J11CVXpovpy7bZUGrcJKmc6m/0gWG789pKr6XSZY2aEetjFvSRw5g==", + "optional": true, + "dependencies": { + "jpeg-js": "^0.4.4", + "ndarray": "^1.0.19", + "ndarray-pack": "^1.1.1", + "node-bitmap": "0.0.1", + "omggif": "^1.0.10", + "pngjs": "^6.0.0" + } + }, + "node_modules/@cronvel/get-pixels/node_modules/pngjs": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-6.0.0.tgz", + "integrity": "sha512-TRzzuFRRmEoSW/p1KVAmiOgPco2Irlah+bGFCeNfJXxxYGwSw7YwAOAcd7X28K/m5bjBWKsC29KyoMfHbypayg==", + "optional": true, + "engines": { + "node": ">=12.13.0" + } + }, "node_modules/@cspotcode/source-map-support": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", @@ -4118,6 +4334,14 @@ "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, + "node_modules/@ewoudenberg/difflib": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@ewoudenberg/difflib/-/difflib-0.1.0.tgz", + "integrity": "sha512-OU5P5mJyD3OoWYMWY+yIgwvgNS9cFAU10f+DDuvtogcWQOoJIsQ4Hy2McSfUfhKjq8L0FuWVb4Rt7kgA+XK86A==", + "dependencies": { + "heap": ">= 0.2.0" + } + }, "node_modules/@fastify/busboy": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.1.1.tgz", @@ -4204,6 +4428,17 @@ "react": ">= 16" } }, + "node_modules/@hono/node-server": { + "version": "1.13.7", + "resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-1.13.7.tgz", + "integrity": "sha512-kTfUMsoloVKtRA2fLiGSd9qBddmru9KadNyhJCwgKBxTiNkaAJEwkVN9KV/rS4HtmmNRtUh6P+YpmjRMl0d9vQ==", + "engines": { + "node": ">=18.14.1" + }, + "peerDependencies": { + "hono": "^4" + } + }, "node_modules/@hookform/resolvers": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/@hookform/resolvers/-/resolvers-3.6.0.tgz", @@ -4598,6 +4833,115 @@ "url": "https://opencollective.com/libvips" } }, + "node_modules/@inquirer/confirm": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-5.1.3.tgz", + "integrity": "sha512-fuF9laMmHoOgWapF9h9hv6opA5WvmGFHsTYGCmuFxcghIhEhb3dN0CdQR4BUMqa2H506NCj8cGX4jwMsE4t6dA==", + "dev": true, + "dependencies": { + "@inquirer/core": "^10.1.4", + "@inquirer/type": "^3.0.2" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + } + }, + "node_modules/@inquirer/core": { + "version": "10.1.4", + "resolved": "https://registry.npmjs.org/@inquirer/core/-/core-10.1.4.tgz", + "integrity": "sha512-5y4/PUJVnRb4bwWY67KLdebWOhOc7xj5IP2J80oWXa64mVag24rwQ1VAdnj7/eDY/odhguW0zQ1Mp1pj6fO/2w==", + "dev": true, + "dependencies": { + "@inquirer/figures": "^1.0.9", + "@inquirer/type": "^3.0.2", + "ansi-escapes": "^4.3.2", + "cli-width": "^4.1.0", + "mute-stream": "^2.0.0", + "signal-exit": "^4.1.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^6.2.0", + "yoctocolors-cjs": "^2.1.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/core/node_modules/cli-width": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz", + "integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==", + "dev": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/@inquirer/core/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/@inquirer/core/node_modules/mute-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-2.0.0.tgz", + "integrity": "sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==", + "dev": true, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/@inquirer/core/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@inquirer/core/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@inquirer/figures": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.9.tgz", + "integrity": "sha512-BXvGj0ehzrngHTPTDqUoDT3NXL8U0RxUk2zJm2A66RhCEIWdtU1v6GuUqNAgArW4PQ9CinqIWyHdQgdwOj06zQ==", + "dev": true, + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/type": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@inquirer/type/-/type-3.0.2.tgz", + "integrity": "sha512-ZhQ4TvhwHZF+lGhQ2O/rsjo80XoZR5/5qhOY3t6FJuX5XBg5Be8YzYTvaUGJnc12AUGI2nr4QSUE4PhKSigx7g==", + "dev": true, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + } + }, "node_modules/@isaacs/cliui": { "version": "8.0.2", "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", @@ -6007,6 +6351,23 @@ "react": ">=16" } }, + "node_modules/@mswjs/interceptors": { + "version": "0.37.5", + "resolved": "https://registry.npmjs.org/@mswjs/interceptors/-/interceptors-0.37.5.tgz", + "integrity": "sha512-AAwRb5vXFcY4L+FvZ7LZusDuZ0vEe0Zm8ohn1FM6/X7A3bj4mqmkAcGRWuvC2JwSygNwHAAmMnAI73vPHeqsHA==", + "dev": true, + "dependencies": { + "@open-draft/deferred-promise": "^2.2.0", + "@open-draft/logger": "^0.3.0", + "@open-draft/until": "^2.0.0", + "is-node-process": "^1.2.0", + "outvariant": "^1.4.3", + "strict-event-emitter": "^0.5.1" + }, + "engines": { + "node": ">=18" + } + }, "node_modules/@mui/core-downloads-tracker": { "version": "5.16.6", "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.16.6.tgz", @@ -7354,6 +7715,36 @@ "@octokit/openapi-types": "^18.0.0" } }, + "node_modules/@open-draft/deferred-promise": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@open-draft/deferred-promise/-/deferred-promise-2.2.0.tgz", + "integrity": "sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==", + "dev": true + }, + "node_modules/@open-draft/logger": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@open-draft/logger/-/logger-0.3.0.tgz", + "integrity": "sha512-X2g45fzhxH238HKO4xbSr7+wBS8Fvw6ixhTDuvLd5mqh6bJJCFAPwU9mPDxbcrRtfxv4u5IHCEH77BmxvXmmxQ==", + "dev": true, + "dependencies": { + "is-node-process": "^1.2.0", + "outvariant": "^1.4.0" + } + }, + "node_modules/@open-draft/until": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@open-draft/until/-/until-2.1.0.tgz", + "integrity": "sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==", + "dev": true + }, + "node_modules/@opentelemetry/api": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.9.0.tgz", + "integrity": "sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==", + "engines": { + "node": ">=8.0.0" + } + }, "node_modules/@panva/hkdf": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/@panva/hkdf/-/hkdf-1.1.1.tgz", @@ -10052,6 +10443,17 @@ "@types/ms": "*" } }, + "node_modules/@types/diff": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@types/diff/-/diff-6.0.0.tgz", + "integrity": "sha512-dhVCYGv3ZSbzmQaBSagrv1WJ6rXCdkyTcDyoNu1MD8JohI7pR7k8wdZEm+mvdxRKXyHVwckFzWU1vJc+Z29MlA==", + "dev": true + }, + "node_modules/@types/diff-match-patch": { + "version": "1.0.36", + "resolved": "https://registry.npmjs.org/@types/diff-match-patch/-/diff-match-patch-1.0.36.tgz", + "integrity": "sha512-xFdR6tkm0MWvBfO8xXCSsinYxHcqkQUlcHeSpMC2ukzOb6lwQAfDmW+Qt0AvlGd8HpsS28qKsB+oPeJn9I39jg==" + }, "node_modules/@types/emoji-mart": { "version": "3.0.14", "resolved": "https://registry.npmjs.org/@types/emoji-mart/-/emoji-mart-3.0.14.tgz", @@ -10175,6 +10577,12 @@ "parse5": "^7.0.0" } }, + "node_modules/@types/json-diff": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@types/json-diff/-/json-diff-1.0.3.tgz", + "integrity": "sha512-Qvxm8fpRMv/1zZR3sQWImeRK2mBYJji20xF51Fq9Gt//Ed18u0x6/FNLogLS1xhfUWTEmDyqveJqn95ltB6Kvw==", + "dev": true + }, "node_modules/@types/json-schema": { "version": "7.0.15", "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", @@ -10329,6 +10737,12 @@ "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", "dev": true }, + "node_modules/@types/statuses": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@types/statuses/-/statuses-2.0.5.tgz", + "integrity": "sha512-jmIUGWrAiwu3dZpxntxieC+1n/5c3mjrImkmOSQ2NC5uP6cYO4aAZDdSmRcI5C1oiTmqlZGHC+/NmJrKogbP5A==", + "dev": true + }, "node_modules/@types/tough-cookie": { "version": "4.0.5", "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz", @@ -11364,9 +11778,9 @@ "integrity": "sha512-d8XPSGjfyzlXC3Xx891DJRyZfqk5JU0BJrDQcsWomFIV1/BIzPW5HDH5iDdWpqWaav0YVIEzT1RHTwWr0FFshA==" }, "node_modules/acorn": { - "version": "8.11.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", - "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "version": "8.14.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", + "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", "bin": { "acorn": "bin/acorn" }, @@ -11461,18 +11875,46 @@ "node": ">=8" } }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "node_modules/ai": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ai/-/ai-4.1.3.tgz", + "integrity": "sha512-wkPCjnHiS4R1isZUwvsFTVfS4GEBgsrNoHqCe/cDB9o7l6Q8iiyRWZUQOb+laQCsax9XJzT7Ab/8OAgejmIsZQ==", "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "@ai-sdk/provider": "1.0.6", + "@ai-sdk/provider-utils": "2.1.2", + "@ai-sdk/react": "1.1.2", + "@ai-sdk/ui-utils": "1.1.2", + "@opentelemetry/api": "1.9.0", + "jsondiffpatch": "0.6.0" }, - "funding": { - "type": "github", + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "react": "^18 || ^19 || ^19.0.0-rc", + "zod": "^3.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "zod": { + "optional": true + } + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", "url": "https://github.com/sponsors/epoberezkin" } }, @@ -12649,6 +13091,12 @@ "node": ">=10" } }, + "node_modules/chroma-js": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/chroma-js/-/chroma-js-2.6.0.tgz", + "integrity": "sha512-BLHvCB9s8Z1EV4ethr6xnkl/P2YRFOGqfgvuMG/MyCbZPrTA+NeiByY6XvgF0zP4/2deU2CXnWyMa3zu1LqQ3A==", + "optional": true + }, "node_modules/chrome-trace-event": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", @@ -13027,6 +13475,14 @@ "color-support": "bin.js" } }, + "node_modules/colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", + "engines": { + "node": ">=0.1.90" + } + }, "node_modules/columnify": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/columnify/-/columnify-1.6.0.tgz", @@ -13424,6 +13880,15 @@ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" }, + "node_modules/cwise-compiler": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/cwise-compiler/-/cwise-compiler-1.1.3.tgz", + "integrity": "sha512-WXlK/m+Di8DMMcCjcWr4i+XzcQra9eCdXIJrgh4TUgh0pIS/yJduLxS9JgefsHJ/YVLdgPtXm9r62W92MvanEQ==", + "optional": true, + "dependencies": { + "uniq": "^1.0.0" + } + }, "node_modules/cytoscape": { "version": "3.29.2", "resolved": "https://registry.npmjs.org/cytoscape/-/cytoscape-3.29.2.tgz", @@ -14241,6 +14706,11 @@ "node": ">=0.3.1" } }, + "node_modules/diff-match-patch": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/diff-match-patch/-/diff-match-patch-1.0.5.tgz", + "integrity": "sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==" + }, "node_modules/dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", @@ -14378,6 +14848,17 @@ "node": ">=10" } }, + "node_modules/dreamopt": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/dreamopt/-/dreamopt-0.8.0.tgz", + "integrity": "sha512-vyJTp8+mC+G+5dfgsY+r3ckxlz+QMX40VjPQsZc5gxVAxLmi64TBoVkP54A/pRAXMXsbu2GMMBrZPxNv23waMg==", + "dependencies": { + "wordwrap": ">=0.0.2" + }, + "engines": { + "node": ">=0.4.0" + } + }, "node_modules/duplexer": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", @@ -14638,10 +15119,9 @@ } }, "node_modules/es-module-lexer": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.3.tgz", - "integrity": "sha512-i1gCgmR9dCl6Vil6UKPI/trA69s08g/syhiDK9TG0Nf1RJjjFI+AzoWW7sPufzkgYAn861skuCwJa0pIIHYxvg==", - "peer": true + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", + "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==" }, "node_modules/es-object-atoms": { "version": "1.0.0", @@ -15428,6 +15908,14 @@ "node": ">=0.8.x" } }, + "node_modules/eventsource-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-3.0.0.tgz", + "integrity": "sha512-T1C0XCUimhxVQzW4zFipdx0SficT651NnkR0ZSH3yQwh+mFMdLfgjABVi4YtMTtaL4s168593DaoaRLMqryavA==", + "engines": { + "node": ">=18.0.0" + } + }, "node_modules/execa": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", @@ -15572,6 +16060,11 @@ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true }, + "node_modules/fast-myers-diff": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/fast-myers-diff/-/fast-myers-diff-3.2.0.tgz", + "integrity": "sha512-DxNm4a3gnV35AluvqjeAV3Zx3CAySs0tsaDjnex5JhnJAa2rxEUVCwmaL2gpz42ea1B+IJorlo7XLThXUaTQog==" + }, "node_modules/fast-xml-parser": { "version": "4.2.5", "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.2.5.tgz", @@ -16460,6 +16953,15 @@ "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", "dev": true }, + "node_modules/graphql": { + "version": "16.9.0", + "resolved": "https://registry.npmjs.org/graphql/-/graphql-16.9.0.tgz", + "integrity": "sha512-GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0" + } + }, "node_modules/gray-matter": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz", @@ -17512,6 +18014,17 @@ "url": "https://opencollective.com/unified" } }, + "node_modules/headers-polyfill": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/headers-polyfill/-/headers-polyfill-4.0.3.tgz", + "integrity": "sha512-IScLbePpkvO846sIwOtOTDjutRMWdXdJmXdMvk6gCBHxFO8d+QKOQedyZSxFTTFYRSmlgSTDtXqqq4pcenBXLQ==", + "dev": true + }, + "node_modules/heap": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/heap/-/heap-0.2.7.tgz", + "integrity": "sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==" + }, "node_modules/hex-rgb": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/hex-rgb/-/hex-rgb-4.3.0.tgz", @@ -17531,6 +18044,14 @@ "react-is": "^16.7.0" } }, + "node_modules/hono": { + "version": "4.6.12", + "resolved": "https://registry.npmjs.org/hono/-/hono-4.6.12.tgz", + "integrity": "sha512-eHtf4kSDNw6VVrdbd5IQi16r22m3s7mWPLd7xOMhg1a/Yyb1A0qpUFq8xYMX4FMuDe1nTKeMX5rTx7Nmw+a+Ag==", + "engines": { + "node": ">=16.9.0" + } + }, "node_modules/hosted-git-info": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", @@ -17976,6 +18497,12 @@ "loose-envify": "^1.0.0" } }, + "node_modules/iota-array": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/iota-array/-/iota-array-1.0.0.tgz", + "integrity": "sha512-pZ2xT+LOHckCatGQ3DcG/a+QuEqvoxqkiL7tvE8nn3uuu+f6i1TtpB5/FtWFbxUuVr5PZCx8KskuGatbJDXOWA==", + "optional": true + }, "node_modules/ip-address": { "version": "9.0.5", "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", @@ -18357,6 +18884,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/is-node-process": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-node-process/-/is-node-process-1.2.0.tgz", + "integrity": "sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==", + "dev": true + }, "node_modules/is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", @@ -18421,13 +18954,18 @@ "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" }, "node_modules/is-reference": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.2.tgz", - "integrity": "sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.3.tgz", + "integrity": "sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==", "dependencies": { - "@types/estree": "*" + "@types/estree": "^1.0.6" } }, + "node_modules/is-reference/node_modules/@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==" + }, "node_modules/is-regex": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", @@ -18833,6 +19371,12 @@ "url": "https://github.com/sponsors/panva" } }, + "node_modules/jpeg-js": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.4.tgz", + "integrity": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==", + "optional": true + }, "node_modules/js-base64": { "version": "3.7.7", "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-3.7.7.tgz", @@ -18951,6 +19495,47 @@ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", "dev": true }, + "node_modules/json-diff": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/json-diff/-/json-diff-1.0.6.tgz", + "integrity": "sha512-tcFIPRdlc35YkYdGxcamJjllUhXWv4n2rK9oJ2RsAzV4FBkuV4ojKEDgcZ+kpKxDmJKv+PFK65+1tVVOnSeEqA==", + "dependencies": { + "@ewoudenberg/difflib": "0.1.0", + "colors": "^1.4.0", + "dreamopt": "~0.8.0" + }, + "bin": { + "json-diff": "bin/json-diff.js" + }, + "engines": { + "node": "*" + } + }, + "node_modules/json-diff-kit": { + "version": "1.0.29", + "resolved": "https://registry.npmjs.org/json-diff-kit/-/json-diff-kit-1.0.29.tgz", + "integrity": "sha512-+Ir9l5mvv2UB4ZiSpwmobTd9iImwHMWQ9vH/o4EqbKflIQssRXy7YRPka4ppBVCyA1fojdnURN3ht/pYW1l9jA==", + "dependencies": { + "commander": "^11.1.0", + "fast-myers-diff": "^3.0.1", + "lodash": "^4.17.21", + "prompts": "^2.4.2" + }, + "bin": { + "jsondiff": "bin/jsondiff.cjs" + }, + "optionalDependencies": { + "terminal-kit": "^3.0.1" + } + }, + "node_modules/json-diff-kit/node_modules/commander": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz", + "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==", + "engines": { + "node": ">=16" + } + }, "node_modules/json-parse-better-errors": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", @@ -18962,6 +19547,11 @@ "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" }, + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + }, "node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", @@ -19004,6 +19594,33 @@ "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" }, + "node_modules/jsondiffpatch": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/jsondiffpatch/-/jsondiffpatch-0.6.0.tgz", + "integrity": "sha512-3QItJOXp2AP1uv7waBkao5nCvhEv+QmJAd38Ybq7wNI74Q+BBmnLn4EDKz6yI9xGAIQoUF87qHt+kc1IVxB4zQ==", + "dependencies": { + "@types/diff-match-patch": "^1.0.36", + "chalk": "^5.3.0", + "diff-match-patch": "^1.0.5" + }, + "bin": { + "jsondiffpatch": "bin/jsondiffpatch.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + } + }, + "node_modules/jsondiffpatch/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, "node_modules/jsonfile": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", @@ -19193,6 +19810,15 @@ "resolved": "https://registry.npmjs.org/layout-base/-/layout-base-1.0.2.tgz", "integrity": "sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==" }, + "node_modules/lazyness": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/lazyness/-/lazyness-1.2.0.tgz", + "integrity": "sha512-KenL6EFbwxBwRxG93t0gcUyi0Nw0Ub31FJKN1laA4UscdkL1K1AxUd0gYZdcLU3v+x+wcFi4uQKS5hL+fk500g==", + "optional": true, + "engines": { + "node": ">=6.0.0" + } + }, "node_modules/lerna": { "version": "5.6.2", "resolved": "https://registry.npmjs.org/lerna/-/lerna-5.6.2.tgz", @@ -21729,6 +22355,137 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" }, + "node_modules/msw": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/msw/-/msw-2.7.0.tgz", + "integrity": "sha512-BIodwZ19RWfCbYTxWTUfTXc+sg4OwjCAgxU1ZsgmggX/7S3LdUifsbUPJs61j0rWb19CZRGY5if77duhc0uXzw==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "@bundled-es-modules/cookie": "^2.0.1", + "@bundled-es-modules/statuses": "^1.0.1", + "@bundled-es-modules/tough-cookie": "^0.1.6", + "@inquirer/confirm": "^5.0.0", + "@mswjs/interceptors": "^0.37.0", + "@open-draft/deferred-promise": "^2.2.0", + "@open-draft/until": "^2.1.0", + "@types/cookie": "^0.6.0", + "@types/statuses": "^2.0.4", + "graphql": "^16.8.1", + "headers-polyfill": "^4.0.2", + "is-node-process": "^1.2.0", + "outvariant": "^1.4.3", + "path-to-regexp": "^6.3.0", + "picocolors": "^1.1.1", + "strict-event-emitter": "^0.5.1", + "type-fest": "^4.26.1", + "yargs": "^17.7.2" + }, + "bin": { + "msw": "cli/index.js" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/mswjs" + }, + "peerDependencies": { + "typescript": ">= 4.8.x" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/msw-snapshot": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/msw-snapshot/-/msw-snapshot-5.2.0.tgz", + "integrity": "sha512-vcgRtVkE8ZRoDZ5IDpaJ4Mdwx/SdwnJXMIw9gm3LYSQTQxJBUwda+txMe6Sn20cYDF3a+VpmWhhnQyZXGvAs5A==", + "dev": true, + "peerDependencies": { + "msw": "^2.0.0" + } + }, + "node_modules/msw/node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/msw/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/msw/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/msw/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/msw/node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/msw/node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, "node_modules/multimatch": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-5.0.0.tgz", @@ -21793,9 +22550,9 @@ "devOptional": true }, "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", "funding": [ { "type": "github", @@ -21821,6 +22578,32 @@ "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", "dev": true }, + "node_modules/ndarray": { + "version": "1.0.19", + "resolved": "https://registry.npmjs.org/ndarray/-/ndarray-1.0.19.tgz", + "integrity": "sha512-B4JHA4vdyZU30ELBw3g7/p9bZupyew5a7tX1Y/gGeF2hafrPaQZhgrGQfsvgfYbgdFZjYwuEcnaobeM/WMW+HQ==", + "optional": true, + "dependencies": { + "iota-array": "^1.0.0", + "is-buffer": "^1.0.2" + } + }, + "node_modules/ndarray-pack": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ndarray-pack/-/ndarray-pack-1.2.1.tgz", + "integrity": "sha512-51cECUJMT0rUZNQa09EoKsnFeDL4x2dHRT0VR5U2H5ZgEcm95ZDWcMA5JShroXjHOejmAD/fg8+H+OvUnVXz2g==", + "optional": true, + "dependencies": { + "cwise-compiler": "^1.1.2", + "ndarray": "^1.0.13" + } + }, + "node_modules/ndarray/node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "optional": true + }, "node_modules/negotiator": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", @@ -21976,6 +22759,15 @@ "node": "^10 || ^12 || >=14" } }, + "node_modules/nextgen-events": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/nextgen-events/-/nextgen-events-1.5.3.tgz", + "integrity": "sha512-P6qw6kenNXP+J9XlKJNi/MNHUQ+Lx5K8FEcSfX7/w8KJdZan5+BB5MKzuNgL2RTjHG1Svg8SehfseVEp8zAqwA==", + "optional": true, + "engines": { + "node": ">=6.0.0" + } + }, "node_modules/nextra": { "version": "2.13.4", "resolved": "https://registry.npmjs.org/nextra/-/nextra-2.13.4.tgz", @@ -22066,6 +22858,15 @@ "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==", "dev": true }, + "node_modules/node-bitmap": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/node-bitmap/-/node-bitmap-0.0.1.tgz", + "integrity": "sha512-Jx5lPaaLdIaOsj2mVLWMWulXF6GQVdyLvNSxmiYCvZ8Ma2hfKX0POoR2kgKOqz+oFsRreq0yYZjQ2wjE9VNzCA==", + "optional": true, + "engines": { + "node": ">=v0.6.5" + } + }, "node_modules/node-fetch": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", @@ -22998,6 +23799,12 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/omggif": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz", + "integrity": "sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==", + "optional": true + }, "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", @@ -23113,6 +23920,12 @@ "node": ">=0.10.0" } }, + "node_modules/outvariant": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/outvariant/-/outvariant-1.4.3.tgz", + "integrity": "sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==", + "dev": true + }, "node_modules/p-finally": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", @@ -24098,6 +24911,12 @@ "node": "14 || >=16.14" } }, + "node_modules/path-to-regexp": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.3.0.tgz", + "integrity": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==", + "dev": true + }, "node_modules/path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", @@ -24179,9 +24998,9 @@ } }, "node_modules/picocolors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", - "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" }, "node_modules/picomatch": { "version": "2.3.1", @@ -24362,9 +25181,9 @@ } }, "node_modules/postcss": { - "version": "8.4.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.39.tgz", - "integrity": "sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==", + "version": "8.4.49", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", + "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==", "funding": [ { "type": "opencollective", @@ -24381,8 +25200,8 @@ ], "dependencies": { "nanoid": "^3.3.7", - "picocolors": "^1.0.1", - "source-map-js": "^1.2.0" + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" }, "engines": { "node": "^10 || ^12 || >=14" @@ -24618,6 +25437,26 @@ "node": ">=10" } }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prompts/node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "engines": { + "node": ">=6" + } + }, "node_modules/promzard": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/promzard/-/promzard-0.3.0.tgz", @@ -26575,6 +27414,11 @@ "node": ">=4" } }, + "node_modules/secure-json-parse": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/secure-json-parse/-/secure-json-parse-2.7.0.tgz", + "integrity": "sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==" + }, "node_modules/semver": { "version": "7.6.3", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", @@ -26643,6 +27487,18 @@ "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" }, + "node_modules/seventh": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/seventh/-/seventh-0.9.2.tgz", + "integrity": "sha512-C+dnbBXIEycnrN6/CpFt/Rt8ccMzAX3wbwJU61RTfC8lYPMzSkKkAVWnUEMTZDHdvtlrTupZeCUK4G+uP4TmRQ==", + "optional": true, + "dependencies": { + "setimmediate": "^1.0.5" + }, + "engines": { + "node": ">=16.13.0" + } + }, "node_modules/shallow-clone": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", @@ -26815,6 +27671,11 @@ "node": ">= 10" } }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + }, "node_modules/slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", @@ -26894,9 +27755,9 @@ } }, "node_modules/source-map-js": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", - "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", "engines": { "node": ">=0.10.0" } @@ -27030,6 +27891,15 @@ "get-source": "^2.0.12" } }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/std-env": { "version": "3.7.0", "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.7.0.tgz", @@ -27053,6 +27923,12 @@ "node": ">=10.0.0" } }, + "node_modules/strict-event-emitter": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/strict-event-emitter/-/strict-event-emitter-0.5.1.tgz", + "integrity": "sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==", + "dev": true + }, "node_modules/string_decoder": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", @@ -27061,6 +27937,15 @@ "safe-buffer": "~5.2.0" } }, + "node_modules/string-kit": { + "version": "0.18.3", + "resolved": "https://registry.npmjs.org/string-kit/-/string-kit-0.18.3.tgz", + "integrity": "sha512-G8cBS7wxxHhwQrKU0Y8SjZJRtCzZ61bMmMCO1bWm6N6y2obT0koGK8uWYloMOaVPPr8zk7Ic995uEd4Jw504AQ==", + "optional": true, + "engines": { + "node": ">=14.15.0" + } + }, "node_modules/string-natural-compare": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", @@ -27420,6 +28305,18 @@ "resolved": "https://registry.npmjs.org/svg-arc-to-cubic-bezier/-/svg-arc-to-cubic-bezier-3.2.0.tgz", "integrity": "sha512-djbJ/vZKZO+gPoSDThGNpKDO+o+bAeA4XQKovvkNCqnIS2t+S4qnLAGQhyyrulhCFRl1WWzAp0wUDV8PpTVU3g==" }, + "node_modules/swr": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/swr/-/swr-2.3.0.tgz", + "integrity": "sha512-NyZ76wA4yElZWBHzSgEJc28a0u6QZvhb6w0azeL2k7+Q1gAzVK+IqQYXhVOC/mzi+HZIozrZvBVeSeOZNR2bqA==", + "dependencies": { + "dequal": "^2.0.3", + "use-sync-external-store": "^1.4.0" + }, + "peerDependencies": { + "react": "^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, "node_modules/symbol-tree": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", @@ -27562,6 +28459,25 @@ "node": ">=4" } }, + "node_modules/terminal-kit": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/terminal-kit/-/terminal-kit-3.1.1.tgz", + "integrity": "sha512-R+R47zBQ14Ax2NZCLeuVl2GwonDwQN4iAsjQZICW8gMzaV+VIJMvL4qhUQtzDOhENADyNPQvY1Vz5G0bHHkLEA==", + "optional": true, + "dependencies": { + "@cronvel/get-pixels": "^3.4.1", + "chroma-js": "^2.4.2", + "lazyness": "^1.2.0", + "ndarray": "^1.0.19", + "nextgen-events": "^1.5.3", + "seventh": "^0.9.2", + "string-kit": "^0.18.1", + "tree-kit": "^0.8.7" + }, + "engines": { + "node": ">=16.13.0" + } + }, "node_modules/terser": { "version": "5.31.1", "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.1.tgz", @@ -27654,6 +28570,17 @@ "node": ">=0.8" } }, + "node_modules/throttleit": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-2.1.0.tgz", + "integrity": "sha512-nt6AMGKW1p/70DF/hGBdJB57B8Tspmbp5gfJ8ilhLnt7kkr2ye7hzD6NVG8GGErk2HWF34igrL2CXmNIkzKqKw==", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", @@ -28048,6 +28975,15 @@ "node": ">=18" } }, + "node_modules/tree-kit": { + "version": "0.8.7", + "resolved": "https://registry.npmjs.org/tree-kit/-/tree-kit-0.8.7.tgz", + "integrity": "sha512-BA/cp8KBvbBDkunxIuoBqzz3pYHL7J8QdzbKohK09urOpHFYqEe/xWGKkECEQG+LvfREd1GNqH3643GYFX8wSQ==", + "optional": true, + "engines": { + "node": ">=16.13.0" + } + }, "node_modules/treeverse": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/treeverse/-/treeverse-2.0.0.tgz", @@ -28140,9 +29076,9 @@ } }, "node_modules/tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==" + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==" }, "node_modules/tsutils": { "version": "3.21.0", @@ -28197,9 +29133,9 @@ } }, "node_modules/type-fest": { - "version": "4.20.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.20.0.tgz", - "integrity": "sha512-MBh+PHUHHisjXf4tlx0CFWoMdjx8zCMLJHOjnV1prABYZFHqtFOyauCIK2/7w4oIfwkF8iNhLtnJEfVY2vn3iw==", + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.33.0.tgz", + "integrity": "sha512-s6zVrxuyKbbAsSAD5ZPTB77q4YIdRctkTbJ2/Dqlinwz+8ooH2gd+YA7VA6Pa93KML9GockVvoxjZ2vHP+mu8g==", "engines": { "node": ">=16" }, @@ -28444,6 +29380,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==", + "optional": true + }, "node_modules/unique-filename": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-2.0.1.tgz", @@ -28816,11 +29758,11 @@ } }, "node_modules/use-sync-external-store": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.2.tgz", - "integrity": "sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.4.0.tgz", + "integrity": "sha512-9WXSPC5fMv61vaupRkCKCxsPxBocVnwakBEkMIHHpkTTg6icbJtg6jzgtLDm4bl3cSHAca52rYWih0k4K3PfHw==", "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "node_modules/util-deprecate": { @@ -29576,8 +30518,7 @@ "node_modules/wordwrap": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", - "dev": true + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==" }, "node_modules/workerd": { "version": "1.20240129.0", @@ -30096,6 +31037,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/yoctocolors-cjs": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yoctocolors-cjs/-/yoctocolors-cjs-2.1.2.tgz", + "integrity": "sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/yoga-layout": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/yoga-layout/-/yoga-layout-3.1.0.tgz", @@ -30125,13 +31078,21 @@ } }, "node_modules/zod": { - "version": "3.23.8", - "resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz", - "integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==", + "version": "3.24.1", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.24.1.tgz", + "integrity": "sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==", "funding": { "url": "https://github.com/sponsors/colinhacks" } }, + "node_modules/zod-to-json-schema": { + "version": "3.24.1", + "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.24.1.tgz", + "integrity": "sha512-3h08nf3Vw3Wl3PK+q3ow/lIil81IT2Oa7YpQyUUDsEWbXveMesdfK1xBd2RhCkynwZndAxixji/7SYJJowr62w==", + "peerDependencies": { + "zod": "^3.24.1" + } + }, "node_modules/zwitch": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", @@ -30141,6 +31102,46 @@ "url": "https://github.com/sponsors/wooorm" } }, + "packages/ai": { + "name": "@blocknote/xl-ai", + "version": "0.19.1", + "extraneous": true, + "license": "AGPL-3.0 OR PROPRIETARY", + "dependencies": { + "@ai-sdk/openai": "^0.0.60", + "@blocknote/core": "^0.19.1", + "@blocknote/mantine": "^0.19.1", + "@blocknote/react": "^0.19.1", + "@floating-ui/react": "^0.26.4", + "@tiptap/core": "^2.7.1", + "ai": "^3.4.5", + "prosemirror-state": "^1.4.3", + "prosemirror-view": "^1.33.7", + "react": "^18", + "react-dom": "^18", + "react-icons": "^5.2.1" + }, + "devDependencies": { + "@types/react": "^18.0.25", + "@types/react-dom": "^18.0.9", + "@vitejs/plugin-react": "^4.3.1", + "eslint": "^8.10.0", + "msw": "^2.4.8", + "msw-snapshot": "^5.2.0", + "prettier": "^2.7.1", + "rimraf": "^5.0.5", + "rollup-plugin-webpack-stats": "^0.2.2", + "typescript": "^5.3.3", + "vite": "^5.3.4", + "vite-plugin-eslint": "^1.8.1", + "vite-plugin-externalize-deps": "^0.8.0", + "vitest": "^2.0.3" + }, + "peerDependencies": { + "react": "^18", + "react-dom": "^18" + } + }, "packages/ariakit": { "name": "@blocknote/ariakit", "version": "0.24.1", @@ -30553,6 +31554,157 @@ "url": "https://github.com/sponsors/isaacs" } }, + "packages/xl-ai": { + "name": "@blocknote/xl-ai", + "version": "0.24.1", + "license": "AGPL-3.0 OR PROPRIETARY", + "dependencies": { + "@ai-sdk/groq": "^1.1.0", + "@ai-sdk/openai": "^1.1.0", + "@blocknote/core": "^0.24.1", + "@blocknote/mantine": "^0.24.1", + "@blocknote/react": "^0.24.1", + "@ewoudenberg/difflib": "^0.1.0", + "@floating-ui/react": "^0.26.4", + "@tiptap/core": "^2.7.1", + "ai": "^4.1.0", + "diff": "^7.0.0", + "json-diff": "^1.0.6", + "json-diff-kit": "^1.0.29", + "prosemirror-state": "^1.4.3", + "prosemirror-view": "^1.33.7", + "react": "^18", + "react-dom": "^18", + "react-icons": "^5.2.1", + "remark-parse": "^10.0.1", + "remark-stringify": "^10.0.2", + "unified": "^10.1.2" + }, + "devDependencies": { + "@mswjs/interceptors": "^0.37.5", + "@types/diff": "^6.0.0", + "@types/json-diff": "^1.0.3", + "@types/react": "^18.0.25", + "@types/react-dom": "^18.0.9", + "@vitejs/plugin-react": "^4.3.1", + "eslint": "^8.10.0", + "msw": "^2.7.0", + "msw-snapshot": "^5.2.0", + "prettier": "^2.7.1", + "rimraf": "^5.0.5", + "rollup-plugin-webpack-stats": "^0.2.2", + "typescript": "^5.3.3", + "undici": "^6", + "vite": "^5.3.4", + "vite-plugin-eslint": "^1.8.1", + "vite-plugin-externalize-deps": "^0.8.0", + "vitest": "^2.0.3" + }, + "peerDependencies": { + "react": "^18", + "react-dom": "^18" + } + }, + "packages/xl-ai-server": { + "name": "@blocknote/xl-ai-server", + "version": "0.19.1", + "license": "AGPL-3.0 OR PROPRIETARY", + "dependencies": { + "@hono/node-server": "^1.13.7", + "hono": "^4.6.12" + }, + "devDependencies": { + "eslint": "^8.10.0", + "prettier": "^2.7.1", + "rimraf": "^5.0.5", + "rollup-plugin-webpack-stats": "^0.2.2", + "typescript": "^5.3.3", + "undici": "^6", + "vite": "^5.3.4", + "vite-node": "^2.1.6", + "vite-plugin-eslint": "^1.8.1", + "vite-plugin-externalize-deps": "^0.8.0", + "vitest": "^2.0.3" + } + }, + "packages/xl-ai-server/node_modules/rimraf": { + "version": "5.0.10", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.10.tgz", + "integrity": "sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==", + "dev": true, + "dependencies": { + "glob": "^10.3.7" + }, + "bin": { + "rimraf": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "packages/xl-ai-server/node_modules/undici": { + "version": "6.21.1", + "resolved": "https://registry.npmjs.org/undici/-/undici-6.21.1.tgz", + "integrity": "sha512-q/1rj5D0/zayJB2FraXdaWxbhWiNKDvu8naDT2dl1yTlvJp4BLtOcp2a5BvgGNQpYYJzau7tf1WgKv3b+7mqpQ==", + "dev": true, + "engines": { + "node": ">=18.17" + } + }, + "packages/xl-ai-server/node_modules/vite-node": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-2.1.6.tgz", + "integrity": "sha512-DBfJY0n9JUwnyLxPSSUmEePT21j8JZp/sR9n+/gBwQU6DcQOioPdb8/pibWfXForbirSagZCilseYIwaL3f95A==", + "dev": true, + "dependencies": { + "cac": "^6.7.14", + "debug": "^4.3.7", + "es-module-lexer": "^1.5.4", + "pathe": "^1.1.2", + "vite": "^5.0.0 || ^6.0.0" + }, + "bin": { + "vite-node": "vite-node.mjs" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "packages/xl-ai/node_modules/diff": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-7.0.0.tgz", + "integrity": "sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==", + "engines": { + "node": ">=0.3.1" + } + }, + "packages/xl-ai/node_modules/rimraf": { + "version": "5.0.10", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.10.tgz", + "integrity": "sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==", + "dev": true, + "dependencies": { + "glob": "^10.3.7" + }, + "bin": { + "rimraf": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "packages/xl-ai/node_modules/undici": { + "version": "6.21.1", + "resolved": "https://registry.npmjs.org/undici/-/undici-6.21.1.tgz", + "integrity": "sha512-q/1rj5D0/zayJB2FraXdaWxbhWiNKDvu8naDT2dl1yTlvJp4BLtOcp2a5BvgGNQpYYJzau7tf1WgKv3b+7mqpQ==", + "dev": true, + "engines": { + "node": ">=18.17" + } + }, "packages/xl-docx-exporter": { "name": "@blocknote/xl-docx-exporter", "version": "0.24.1", @@ -30934,6 +32086,8 @@ "name": "@blocknote/example-editor", "version": "0.24.1", "dependencies": { + "@ai-sdk/groq": "^1.1.0", + "@ai-sdk/openai": "^1.1.0", "@aws-sdk/client-s3": "^3.609.0", "@aws-sdk/s3-request-presigner": "^3.609.0", "@blocknote/ariakit": "^0.24.1", @@ -30942,6 +32096,7 @@ "@blocknote/react": "^0.24.1", "@blocknote/server-util": "^0.24.1", "@blocknote/shadcn": "^0.24.1", + "@blocknote/xl-ai": "^0.24.1", "@blocknote/xl-multi-column": "^0.24.1", "@emotion/react": "^11.11.4", "@emotion/styled": "^11.11.5", @@ -30962,6 +32117,7 @@ "@uppy/webcam": "^3.4.2", "@uppy/xhr-upload": "^3.4.0", "@y-sweet/react": "^0.6.3", + "ai": "^4.1.0", "docx": "^9.0.2", "react": "^18.3.1", "react-dom": "^18.3.1", diff --git a/package.json b/package.json index 33fd4b3fb..3c13f1b8a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,7 @@ { "name": "root", "private": true, + "version": "0.23.0", "workspaces": [ "shared", "packages/*", diff --git a/packages/ariakit/package.json b/packages/ariakit/package.json index c8cc1abf6..ee1cc15c6 100644 --- a/packages/ariakit/package.json +++ b/packages/ariakit/package.json @@ -47,7 +47,8 @@ "build": "tsc && vite build", "preview": "vite preview", "lint": "eslint src --max-warnings 0", - "clean": "rimraf dist && rimraf types" + "clean": "rimraf dist && rimraf types", + "_prepare": "npm run build" }, "dependencies": { "@ariakit/react": "^0.4.3", diff --git a/packages/ariakit/src/input/TextInput.tsx b/packages/ariakit/src/input/TextInput.tsx index 9da81c8f1..233ed74f4 100644 --- a/packages/ariakit/src/input/TextInput.tsx +++ b/packages/ariakit/src/input/TextInput.tsx @@ -15,13 +15,16 @@ export const TextInput = forwardRef< className, name, label, + variant, icon, value, autoFocus, placeholder, + disabled, onKeyDown, onChange, onSubmit, + autoComplete, ...rest } = props; @@ -33,15 +36,21 @@ export const TextInput = forwardRef<
{icon}
diff --git a/packages/ariakit/src/style.css b/packages/ariakit/src/style.css index eb0544313..2a46c697a 100644 --- a/packages/ariakit/src/style.css +++ b/packages/ariakit/src/style.css @@ -74,14 +74,31 @@ flex: 1; } +.bn-suggestion-menu-item-small .bn-ak-suggestion-menu-item-title { + font-size: 0.875rem; +} + .bn-ak-suggestion-menu-item-subtitle { font-size: 0.7rem; } +.bn-suggestion-menu-item-small .bn-ak-suggestion-menu-item-subtitle { + display: none; +} + .bn-ak-suggestion-menu-item-section[data-position="left"] { + align-items: center; + display: flex; + justify-content: center; + padding: 8px; } +.bn-suggestion-menu-item-small + .bn-ak-suggestion-menu-item-section[data-position="left"] { + padding: 0; +} + .bn-ak-suggestion-menu-item-section[data-position="right"] { --border: rgb(0 0 0/13%); --highlight: rgb(255 255 255/20%); diff --git a/packages/ariakit/src/suggestionMenu/SuggestionMenuItem.tsx b/packages/ariakit/src/suggestionMenu/SuggestionMenuItem.tsx index 8acf330c3..a44ce0318 100644 --- a/packages/ariakit/src/suggestionMenu/SuggestionMenuItem.tsx +++ b/packages/ariakit/src/suggestionMenu/SuggestionMenuItem.tsx @@ -19,7 +19,7 @@ export const SuggestionMenuItem = forwardRef< const overflow = elementOverflow( itemRef.current, - document.querySelector(".bn-suggestion-menu")! + document.querySelector(".bn-suggestion-menu, #ai-suggestion-menu")! // TODO ); if (overflow === "top") { @@ -34,6 +34,7 @@ export const SuggestionMenuItem = forwardRef< className={mergeCSSClasses("bn-ak-menu-item", className || "")} ref={mergeRefs([ref, itemRef])} id={id} + onMouseDown={(event) => event.preventDefault()} onClick={onClick} role="option" aria-selected={isSelected || undefined}> diff --git a/packages/ariakit/src/toolbar/Toolbar.tsx b/packages/ariakit/src/toolbar/Toolbar.tsx index 20b588b4e..acb3b3700 100644 --- a/packages/ariakit/src/toolbar/Toolbar.tsx +++ b/packages/ariakit/src/toolbar/Toolbar.tsx @@ -4,8 +4,7 @@ import { assertEmpty, mergeCSSClasses } from "@blocknote/core"; import { ComponentProps } from "@blocknote/react"; import { forwardRef } from "react"; -type ToolbarProps = ComponentProps["FormattingToolbar"]["Root"] & - ComponentProps["LinkToolbar"]["Root"]; +type ToolbarProps = ComponentProps["Generic"]["Toolbar"]["Root"]; export const Toolbar = forwardRef( (props, ref) => { diff --git a/packages/ariakit/src/toolbar/ToolbarButton.tsx b/packages/ariakit/src/toolbar/ToolbarButton.tsx index f19b2f9ca..e90a69d1b 100644 --- a/packages/ariakit/src/toolbar/ToolbarButton.tsx +++ b/packages/ariakit/src/toolbar/ToolbarButton.tsx @@ -1,7 +1,7 @@ import { + ToolbarItem as AriakitToolbarItem, Tooltip as AriakitTooltip, TooltipAnchor as AriakitTooltipAnchor, - ToolbarItem as AriakitToolbarItem, TooltipProvider as AriakitTooltipProvider, } from "@ariakit/react"; @@ -9,8 +9,7 @@ import { assertEmpty, isSafari, mergeCSSClasses } from "@blocknote/core"; import { ComponentProps } from "@blocknote/react"; import { forwardRef } from "react"; -type ToolbarButtonProps = ComponentProps["FormattingToolbar"]["Button"] & - ComponentProps["LinkToolbar"]["Button"]; +type ToolbarButtonProps = ComponentProps["Generic"]["Toolbar"]["Button"]; /** * Helper for basic buttons that show in the formatting toolbar. @@ -34,45 +33,49 @@ export const ToolbarButton = forwardRef( // assertEmpty in this case is only used at typescript level, not runtime level assertEmpty(rest, false); - return ( - - { - if (isSafari()) { - (e.currentTarget as HTMLButtonElement).focus(); - } - }} - onClick={onClick} - aria-pressed={isSelected} - data-selected={isSelected ? "true" : undefined} - data-test={ - props.mainTooltip.slice(0, 1).toLowerCase() + - props.mainTooltip.replace(/\s+/g, "").slice(1) - } - // size={"xs"} - disabled={isDisabled || false} - ref={ref} - {...rest}> - {icon} - {children} - + const Button = ( + { + if (isSafari()) { + (e.currentTarget as HTMLButtonElement).focus(); } - /> - - {mainTooltip} - {secondaryTooltip && {secondaryTooltip}} - - + }} + onClick={onClick} + aria-pressed={isSelected} + data-selected={isSelected ? "true" : undefined} + data-test={ + mainTooltip && + mainTooltip.slice(0, 1).toLowerCase() + + mainTooltip.replace(/\s+/g, "").slice(1) + } + // size={"xs"} + disabled={isDisabled || false} + ref={ref} + {...rest}> + {icon} + {children} + ); + + if (mainTooltip) { + return ( + + + + {mainTooltip} + {secondaryTooltip && {secondaryTooltip}} + + + ); + } + + return Button; } ); diff --git a/packages/core/package.json b/packages/core/package.json index 040487a0c..1f4ffdb5a 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -54,7 +54,8 @@ "lint": "eslint src --max-warnings 0", "test": "vitest --run", "test-watch": "vitest watch", - "clean": "rimraf dist && rimraf types" + "clean": "rimraf dist && rimraf types", + "_prepare": "npm run build" }, "dependencies": { "@emoji-mart/data": "^1.2.1", diff --git a/packages/core/src/api/blockManipulation/commands/updateBlock/updateBlock.ts b/packages/core/src/api/blockManipulation/commands/updateBlock/updateBlock.ts index 9581e16a3..94795b69f 100644 --- a/packages/core/src/api/blockManipulation/commands/updateBlock/updateBlock.ts +++ b/packages/core/src/api/blockManipulation/commands/updateBlock/updateBlock.ts @@ -1,6 +1,7 @@ import { Fragment, NodeType, Node as PMNode, Slice } from "prosemirror-model"; import { EditorState } from "prosemirror-state"; +import { Transaction } from "prosemirror-state"; import { ReplaceStep } from "prosemirror-transform"; import { Block, PartialBlock } from "../../../../blocks/defaultBlocks.js"; import { BlockNoteEditor } from "../../../../editor/BlockNoteEditor.js"; @@ -23,6 +24,84 @@ import { import { nodeToBlock } from "../../../nodeConversions/nodeToBlock.js"; import { getNodeById } from "../../../nodeUtil.js"; +function updateBlockTr< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +>( + editor: BlockNoteEditor, + tr: Transaction, + posBeforeBlock: number, + block: PartialBlock +) { + const blockInfo = getBlockInfoFromResolvedPos(tr.doc.resolve(posBeforeBlock)); + + // Adds blockGroup node with child blocks if necessary. + + const oldNodeType = editor.pmSchema.nodes[blockInfo.blockNoteType]; + const newNodeType = + editor.pmSchema.nodes[block.type || blockInfo.blockNoteType]; + const newBnBlockNodeType = newNodeType.isInGroup("bnBlock") + ? newNodeType + : editor.pmSchema.nodes["blockContainer"]; + + if (blockInfo.isBlockContainer && newNodeType.isInGroup("blockContent")) { + tr = updateChildren(block, tr, editor, blockInfo); + // The code below determines the new content of the block. + // or "keep" to keep as-is + tr = updateBlockContentNode( + block, + tr, + editor, + oldNodeType, + newNodeType, + blockInfo + ); + } else if (!blockInfo.isBlockContainer && newNodeType.isInGroup("bnBlock")) { + tr = updateChildren(block, tr, editor, blockInfo); + // old node was a bnBlock type (like column or columnList) and new block as well + // No op, we just update the bnBlock below (at end of function) and have already updated the children + } else { + // switching from blockContainer to non-blockContainer or v.v. + // currently breaking for column slash menu items converting empty block + // to column. + + // 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, + editor.schema.blockSchema, + editor.schema.inlineContentSchema, + editor.schema.styleSchema, + editor.blockCache + ); + tr = tr.replaceWith( + blockInfo.bnBlock.beforePos, + blockInfo.bnBlock.afterPos, + blockToNode( + { + children: existingBlock.children, // if no children are passed in, use existing children + ...block, + }, + editor.pmSchema, + editor.schema.styleSchema + ) + ); + + return tr; + } + + // Adds all provided props as attributes to the parent blockContainer node too, and also preserves existing + // attributes. + tr = tr.setNodeMarkup(blockInfo.bnBlock.beforePos, newBnBlockNodeType, { + ...blockInfo.bnBlock.node.attrs, + ...block.props, + }); + return tr; +} + +// for compatibility with tiptap. TODO: remove as we want to remove dependency on tiptap command interface export const updateBlockCommand = < BSchema extends BlockSchema, @@ -40,76 +119,9 @@ export const updateBlockCommand = state: EditorState; dispatch: ((args?: any) => any) | undefined; }) => { - const blockInfo = getBlockInfoFromResolvedPos( - state.doc.resolve(posBeforeBlock) - ); - if (dispatch) { - // Adds blockGroup node with child blocks if necessary. - - const oldNodeType = state.schema.nodes[blockInfo.blockNoteType]; - const newNodeType = - state.schema.nodes[block.type || blockInfo.blockNoteType]; - const newBnBlockNodeType = newNodeType.isInGroup("bnBlock") - ? newNodeType - : state.schema.nodes["blockContainer"]; - - if (blockInfo.isBlockContainer && newNodeType.isInGroup("blockContent")) { - updateChildren(block, state, editor, blockInfo); - // The code below determines the new content of the block. - // or "keep" to keep as-is - updateBlockContentNode( - block, - state, - editor, - oldNodeType, - newNodeType, - blockInfo - ); - } else if ( - !blockInfo.isBlockContainer && - newNodeType.isInGroup("bnBlock") - ) { - updateChildren(block, state, editor, blockInfo); - // old node was a bnBlock type (like column or columnList) and new block as well - // No op, we just update the bnBlock below (at end of function) and have already updated the children - } else { - // switching from blockContainer to non-blockContainer or v.v. - // currently breaking for column slash menu items converting empty block - // to column. - - // 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, - editor.schema.blockSchema, - editor.schema.inlineContentSchema, - editor.schema.styleSchema, - editor.blockCache - ); - state.tr.replaceWith( - blockInfo.bnBlock.beforePos, - blockInfo.bnBlock.afterPos, - blockToNode( - { - children: existingBlock.children, // if no children are passed in, use existing children - ...block, - }, - state.schema, - editor.schema.styleSchema - ) - ); - - return true; - } - - // Adds all provided props as attributes to the parent blockContainer node too, and also preserves existing - // attributes. - state.tr.setNodeMarkup(blockInfo.bnBlock.beforePos, newBnBlockNodeType, { - ...blockInfo.bnBlock.node.attrs, - ...block.props, - }); + updateBlockTr(editor, state.tr, posBeforeBlock, block); + dispatch(state.tr); } return true; @@ -121,7 +133,7 @@ function updateBlockContentNode< S extends StyleSchema >( block: PartialBlock, - state: EditorState, + tr: Transaction, editor: BlockNoteEditor, oldNodeType: NodeType, newNodeType: NodeType, @@ -140,7 +152,7 @@ function updateBlockContentNode< // Adds a single text node with no marks to the content. content = inlineContentToNodes( [block.content], - state.schema, + editor.pmSchema, editor.schema.styleSchema, newNodeType.name ); @@ -149,14 +161,14 @@ function updateBlockContentNode< // for each InlineContent object. content = inlineContentToNodes( block.content, - state.schema, + editor.pmSchema, editor.schema.styleSchema, newNodeType.name ); } else if (block.content.type === "tableContent") { content = tableContentToNodes( block.content, - state.schema, + editor.pmSchema, editor.schema.styleSchema ); } else { @@ -186,9 +198,9 @@ function updateBlockContentNode< // content is being replaced or not. if (content === "keep") { // use setNodeMarkup to only update the type and attributes - state.tr.setNodeMarkup( + tr = tr.setNodeMarkup( blockInfo.blockContent.beforePos, - block.type === undefined ? undefined : state.schema.nodes[block.type], + block.type === undefined ? undefined : editor.pmSchema.nodes[block.type], { ...blockInfo.blockContent.node.attrs, ...block.props, @@ -198,7 +210,7 @@ function updateBlockContentNode< // use replaceWith to replace the content and the block itself // also reset the selection since replacing the block content // sets it to the next block. - state.tr.replaceWith( + tr = tr.replaceWith( blockInfo.blockContent.beforePos, blockInfo.blockContent.afterPos, newNodeType.createChecked( @@ -210,6 +222,7 @@ function updateBlockContentNode< ) ); } + return tr; } function updateChildren< @@ -218,13 +231,13 @@ function updateChildren< S extends StyleSchema >( block: PartialBlock, - state: EditorState, + tr: Transaction, editor: BlockNoteEditor, blockInfo: BlockInfo ) { if (block.children !== undefined) { const childNodes = block.children.map((child) => { - return blockToNode(child, state.schema, editor.schema.styleSchema); + return blockToNode(child, editor.pmSchema, editor.schema.styleSchema); }); // Checks if a blockGroup node already exists. @@ -232,7 +245,7 @@ function updateChildren< // Replaces all child nodes in the existing blockGroup with the ones created earlier. // use a replacestep to avoid the fitting algorithm - state.tr.step( + tr = tr.step( new ReplaceStep( blockInfo.childContainer.beforePos + 1, blockInfo.childContainer.afterPos - 1, @@ -244,12 +257,13 @@ function updateChildren< throw new Error("impossible"); } // Inserts a new blockGroup containing the child nodes created earlier. - state.tr.insert( + tr = tr.insert( blockInfo.blockContent.afterPos, - state.schema.nodes["blockGroup"].createChecked({}, childNodes) + editor.pmSchema.nodes["blockGroup"].createChecked({}, childNodes) ); } } + return tr; } export function updateBlock< @@ -262,6 +276,7 @@ export function updateBlock< update: PartialBlock ): Block { const ttEditor = editor._tiptapEditor; + let tr = ttEditor.state.tr; const id = typeof blockToUpdate === "string" ? blockToUpdate : blockToUpdate.id; @@ -271,16 +286,11 @@ export function updateBlock< throw new Error(`Block with ID ${id} not found`); } - ttEditor.commands.command(({ state, dispatch }) => { - updateBlockCommand( - editor, - posInfo.posBeforeNode, - update - )({ state, dispatch }); - return true; - }); + tr = updateBlockTr(editor, tr, posInfo.posBeforeNode, update); + + editor.dispatch(tr); - const blockContainerNode = ttEditor.state.doc + const blockContainerNode = tr.doc .resolve(posInfo.posBeforeNode + 1) // TODO: clean? .node(); diff --git a/packages/core/src/api/exporters/markdown/markdownExporter.ts b/packages/core/src/api/exporters/markdown/markdownExporter.ts index cea05fc41..a805b1210 100644 --- a/packages/core/src/api/exporters/markdown/markdownExporter.ts +++ b/packages/core/src/api/exporters/markdown/markdownExporter.ts @@ -16,7 +16,12 @@ import { addSpacesToCheckboxes } from "./util/addSpacesToCheckboxesRehypePlugin. // Needs to be sync because it's used in drag handler event (SideMenuPlugin) // Ideally, call `await initializeESMDependencies()` before calling this function -export function cleanHTMLToMarkdown(cleanHTMLString: string) { +export function cleanHTMLToMarkdown( + cleanHTMLString: string, + options?: { + keepEmptyParagraphs: boolean; + } +) { const deps = esmDependencies; if (!deps) { @@ -25,6 +30,14 @@ export function cleanHTMLToMarkdown(cleanHTMLString: string) { ); } + if (options?.keepEmptyParagraphs) { + // replace empty paragraphs with [EMPTY-LINE] + // otherwise the unified pipeline will get rid of these + cleanHTMLString = cleanHTMLString.replace( + /

<\/p>/g, + "

[EMPTY-LINE]

" + ); + } const markdownString = deps.unified .unified() .use(deps.rehypeParse.default, { fragment: true }) @@ -37,7 +50,12 @@ export function cleanHTMLToMarkdown(cleanHTMLString: string) { }) .processSync(cleanHTMLString); - return markdownString.value as string; + let ret = markdownString.value as string; + if (options?.keepEmptyParagraphs) { + // remove [EMPTY-LINE] hacks we added earlier + ret = ret.replace(/\n\[EMPTY-LINE\]\n/g, "\n\n"); + } + return ret; } export async function blocksToMarkdown< @@ -54,5 +72,9 @@ export async function blocksToMarkdown< const exporter = createExternalHTMLExporter(schema, editor); const externalHTML = exporter.exportBlocks(blocks, options); - return cleanHTMLToMarkdown(externalHTML); + const ret = cleanHTMLToMarkdown(externalHTML, { + keepEmptyParagraphs: true, + }); + + return ret; } diff --git a/packages/core/src/api/getBlockInfoFromPos.ts b/packages/core/src/api/getBlockInfoFromPos.ts index 525773a33..8e812a64d 100644 --- a/packages/core/src/api/getBlockInfoFromPos.ts +++ b/packages/core/src/api/getBlockInfoFromPos.ts @@ -126,7 +126,7 @@ export function getBlockInfoWithManualOffset( ): BlockInfo { if (!node.type.isInGroup("bnBlock")) { throw new Error( - `Attempted to get bnBlock node at position but found node of different type ${node.type}` + `Attempted to get bnBlock node at position but found node of different type ${node.type.name}` ); } diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childToParent.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childToParent.json new file mode 100644 index 000000000..213c4c088 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childToParent.json @@ -0,0 +1,48 @@ +{ + "blocks": [ + { + "block": { + "id": "0", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Heading 1", + "styles": {} + } + ], + "children": [ + { + "block": { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childrenToNextParent.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childrenToNextParent.json new file mode 100644 index 000000000..97c49ed9e --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childrenToNextParent.json @@ -0,0 +1,89 @@ +{ + "blocks": [ + { + "block": { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "2", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "3", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "4", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Heading 2", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childrenToNextParentsChildren.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childrenToNextParentsChildren.json new file mode 100644 index 000000000..0a50a9285 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childrenToNextParentsChildren.json @@ -0,0 +1,153 @@ +{ + "blocks": [ + { + "block": { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "2", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "3", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "4", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Heading 2", + "styles": {} + } + ], + "children": [ + { + "block": { + "id": "5", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "6", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "7", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/image.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/image.json new file mode 100644 index 000000000..29fa8a873 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/image.json @@ -0,0 +1,22 @@ +{ + "blocks": [ + { + "block": { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": true + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/move_end.txt b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/move_end.txt new file mode 100644 index 000000000..7f79fb6b6 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/move_end.txt @@ -0,0 +1,276 @@ +{"blocks":[]} +{"blocks":[]} +{"blocks":[]} +{"blocks":[]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"H","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"He","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Hea","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Head","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headi","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headin","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"H","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"He","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Hea","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Head","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headi","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headin","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"B","styles":{"bold":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bo","styles":{"bold":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bol","styles":{"bold":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"I","styles":{"italic":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"It","styles":{"italic":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ita","styles":{"italic":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ital","styles":{"italic":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Itali","styles":{"italic":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"R","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Re","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Reg","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regu","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regul","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regula","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"T","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Ta","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Tab","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Tabl","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table ","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table C","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Ce","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cel","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"T","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Ta","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tab","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tabl","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table ","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table C","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Ce","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cel","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"T","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Ta","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Tab","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Tabl","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table ","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table C","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Ce","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cel","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"T","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Ta","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tab","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tabl","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table ","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table C","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Ce","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cel","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/move_start.txt b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/move_start.txt new file mode 100644 index 000000000..f7cccbaf9 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/move_start.txt @@ -0,0 +1,276 @@ +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"eading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ding 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ing 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ng 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"g 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":" 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"eading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ding 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ing 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ng 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"g 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":" 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"old","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ld","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"d","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"talic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"alic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"lic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"c","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"egular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"gular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"lar","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ar","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"r","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"able Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"ble Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"le Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"e Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":" Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"ell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"ll","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"l","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"able Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"ble Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"le Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"e Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":" Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"ell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"ll","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"l","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"able Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"ble Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"le Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"e Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":" Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"ell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"ll","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"l","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"able Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"ble Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"le Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"e Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":" Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"ell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"ll","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"l","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[]} +{"blocks":[]} +{"blocks":[]} +{"blocks":[]} +{"blocks":[]} +{"blocks":[]} diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/multipleChildren.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/multipleChildren.json new file mode 100644 index 000000000..f94d3f294 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/multipleChildren.json @@ -0,0 +1,67 @@ +{ + "blocks": [ + { + "block": { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "2", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "3", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/multipleStyledText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/multipleStyledText.json new file mode 100644 index 000000000..0bfa9e865 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/multipleStyledText.json @@ -0,0 +1,40 @@ +{ + "blocks": [ + { + "block": { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Bold", + "styles": { + "bold": true + } + }, + { + "type": "text", + "text": "Italic", + "styles": { + "italic": true + } + }, + { + "type": "text", + "text": "Regular", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/nestedImage.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/nestedImage.json new file mode 100644 index 000000000..a1cc58dc2 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/nestedImage.json @@ -0,0 +1,81 @@ +{ + "blocks": [ + { + "block": { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Bold", + "styles": { + "bold": true + } + }, + { + "type": "text", + "text": "Italic", + "styles": { + "italic": true + } + }, + { + "type": "text", + "text": "Regular", + "styles": {} + } + ], + "children": [ + { + "block": { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [ + { + "block": { + "id": "10", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/partialChildToParent.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/partialChildToParent.json new file mode 100644 index 000000000..b0510276a --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/partialChildToParent.json @@ -0,0 +1,48 @@ +{ + "blocks": [ + { + "block": { + "id": "0", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "ding 1", + "styles": {} + } + ], + "children": [ + { + "block": { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested ", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": true + } + ] + }, + "contentCutAtStart": true, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/styledText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/styledText.json new file mode 100644 index 000000000..6c21f8936 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/styledText.json @@ -0,0 +1,28 @@ +{ + "blocks": [ + { + "block": { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Italic", + "styles": { + "italic": true + } + } + ], + "children": [] + }, + "contentCutAtStart": true, + "contentCutAtEnd": true + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableAllCells.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableAllCells.json new file mode 100644 index 000000000..d4b6a6d9f --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableAllCells.json @@ -0,0 +1,35 @@ +{ + "blocks": [ + { + "block": { + "id": "11", + "type": "table", + "props": { + "textColor": "default" + }, + "content": { + "type": "tableContent", + "columnWidths": [ + null + ], + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + }, + "contentCutAtStart": true, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableCell.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableCell.json new file mode 100644 index 000000000..ecb769a6b --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableCell.json @@ -0,0 +1,35 @@ +{ + "blocks": [ + { + "block": { + "id": "11", + "type": "table", + "props": { + "textColor": "default" + }, + "content": { + "type": "tableContent", + "columnWidths": [ + null + ], + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": true + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableCellText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableCellText.json new file mode 100644 index 000000000..ecb769a6b --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableCellText.json @@ -0,0 +1,35 @@ +{ + "blocks": [ + { + "block": { + "id": "11", + "type": "table", + "props": { + "textColor": "default" + }, + "content": { + "type": "tableContent", + "columnWidths": [ + null + ], + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": true + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableRow.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableRow.json new file mode 100644 index 000000000..1369a335a --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableRow.json @@ -0,0 +1,35 @@ +{ + "blocks": [ + { + "block": { + "id": "11", + "type": "table", + "props": { + "textColor": "default" + }, + "content": { + "type": "tableContent", + "columnWidths": [ + null + ], + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + }, + "contentCutAtStart": true, + "contentCutAtEnd": true + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/unstyledText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/unstyledText.json new file mode 100644 index 000000000..f8f6265c9 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/unstyledText.json @@ -0,0 +1,26 @@ +{ + "blocks": [ + { + "block": { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Regular", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": true, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childToParent.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childToParent.json new file mode 100644 index 000000000..5386baa8b --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childToParent.json @@ -0,0 +1,38 @@ +[ + { + "id": "0", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "[$!Heading 1", + "styles": {} + } + ], + "children": [ + { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1!$]", + "styles": {} + } + ], + "children": [] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childrenToNextParent.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childrenToNextParent.json new file mode 100644 index 000000000..439c3f373 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childrenToNextParent.json @@ -0,0 +1,123 @@ +[ + { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "[$!Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + { + "id": "2", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + { + "id": "3", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + }, + { + "id": "4", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Heading 2!$]", + "styles": {} + } + ], + "children": [ + { + "id": "5", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + { + "id": "6", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + { + "id": "7", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childrenToNextParentsChildren.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childrenToNextParentsChildren.json new file mode 100644 index 000000000..0b3f6b2b2 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childrenToNextParentsChildren.json @@ -0,0 +1,123 @@ +[ + { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "[$!Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + { + "id": "2", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + { + "id": "3", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + }, + { + "id": "4", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Heading 2", + "styles": {} + } + ], + "children": [ + { + "id": "5", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + { + "id": "6", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + { + "id": "7", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3!$]", + "styles": {} + } + ], + "children": [] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/image.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/image.json new file mode 100644 index 000000000..3d321c032 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/image.json @@ -0,0 +1,80 @@ +[ + { + "id": "9", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "[$!", + "styles": {} + } + ], + "children": [] + }, + { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [ + { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "!$]", + "styles": {} + } + ], + "children": [] + } + ] + }, + { + "id": "9", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [], + "children": [ + { + "id": "10", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph", + "styles": {} + } + ], + "children": [] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/move_end.txt b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/move_end.txt new file mode 100644 index 000000000..9a16f7c7d --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/move_end.txt @@ -0,0 +1,212 @@ +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!H!$]eading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!He!$]ading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Hea!$]ding 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Head!$]ing 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Headi!$]ng 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Headin!$]g 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading!$] 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading !$]1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1!$]","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$] 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph !$]1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1!$]","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$] 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph !$]2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2!$]","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$] 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph !$]3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3!$]","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"!$]Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"H!$]eading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"He!$]ading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Hea!$]ding 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Head!$]ing 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headi!$]ng 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headin!$]g 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading!$] 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading !$]2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2!$]","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$] 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph !$]1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1!$]","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$] 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph !$]2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2!$]","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$] 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph !$]3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3!$]","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"!$]Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"B!$]old","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bo!$]ld","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bol!$]d","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold!$]","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"I!$]talic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"It!$]alic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ita!$]lic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ital!$]ic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Itali!$]c","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic!$]","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"R!$]egular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Re!$]gular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Reg!$]ular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regu!$]lar","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regul!$]ar","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regula!$]r","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular!$]","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$]","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1!$]","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"T!$]able Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Ta!$]ble Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Tab!$]le Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Tabl!$]e Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table!$] Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table !$]Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table C!$]ell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Ce!$]ll","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cel!$]l","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell!$]","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1!$]","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"T!$]able Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Ta!$]ble Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tab!$]le Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tabl!$]e Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table!$] Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table !$]Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table C!$]ell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Ce!$]ll","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cel!$]l","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1!$]","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"T!$]able Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Ta!$]ble Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Tab!$]le Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Tabl!$]e Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table!$] Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table !$]Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table C!$]ell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Ce!$]ll","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cel!$]l","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell!$]","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1!$]","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"T!$]able Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Ta!$]ble Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tab!$]le Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tabl!$]e Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table!$] Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table !$]Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table C!$]ell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Ce!$]ll","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cel!$]l","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/move_start.txt b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/move_start.txt new file mode 100644 index 000000000..4bcabfbf6 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/move_start.txt @@ -0,0 +1,212 @@ +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"H[$!eading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"He[$!ading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Hea[$!ding 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Head[$!ing 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headi[$!ng 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headin[$!g 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading[$! 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading [$!1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1[$!","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$! 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph [$!1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1[$!","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$! 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph [$!2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2[$!","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$! 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph [$!3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3[$!","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"H[$!eading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"He[$!ading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Hea[$!ding 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Head[$!ing 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headi[$!ng 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headin[$!g 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading[$! 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading [$!2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2[$!","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$! 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph [$!1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1[$!","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$! 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph [$!2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2[$!","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$! 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph [$!3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3[$!","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"B[$!old","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bo[$!ld","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bol[$!d","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold[$!","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"I[$!talic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"It[$!alic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ita[$!lic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ital[$!ic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Itali[$!c","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic[$!","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"R[$!egular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Re[$!gular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Reg[$!ular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regu[$!lar","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regul[$!ar","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regula[$!r","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular[$!","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$!","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"[$!Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"T[$!able Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Ta[$!ble Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Tab[$!le Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Tabl[$!e Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table[$! Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table [$!Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table C[$!ell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Ce[$!ll","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cel[$!l","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell[$!","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"[$!Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"T[$!able Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Ta[$!ble Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tab[$!le Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tabl[$!e Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table[$! Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table [$!Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table C[$!ell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Ce[$!ll","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cel[$!l","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell[$!","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"[$!Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"T[$!able Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Ta[$!ble Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Tab[$!le Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Tabl[$!e Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table[$! Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table [$!Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table C[$!ell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Ce[$!ll","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cel[$!l","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell[$!","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"[$!Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"T[$!able Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Ta[$!ble Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tab[$!le Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tabl[$!e Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table[$! Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table [$!Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table C[$!ell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Ce[$!ll!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cel[$!l!$]","styles":{}}]]}]},"children":[]}] diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/multipleChildren.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/multipleChildren.json new file mode 100644 index 000000000..0474de6ac --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/multipleChildren.json @@ -0,0 +1,53 @@ +[ + { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "[$!Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + { + "id": "2", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + { + "id": "3", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3!$]", + "styles": {} + } + ], + "children": [] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/multipleStyledText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/multipleStyledText.json new file mode 100644 index 000000000..79fade4aa --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/multipleStyledText.json @@ -0,0 +1,67 @@ +[ + { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "[$!Bold", + "styles": { + "bold": true + } + }, + { + "type": "text", + "text": "Italic", + "styles": { + "italic": true + } + }, + { + "type": "text", + "text": "Regular!$]", + "styles": {} + } + ], + "children": [ + { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [ + { + "id": "10", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph", + "styles": {} + } + ], + "children": [] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/nestedImage.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/nestedImage.json new file mode 100644 index 000000000..7caba1239 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/nestedImage.json @@ -0,0 +1,67 @@ +[ + { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "[$!Bold", + "styles": { + "bold": true + } + }, + { + "type": "text", + "text": "Italic", + "styles": { + "italic": true + } + }, + { + "type": "text", + "text": "Regular", + "styles": {} + } + ], + "children": [ + { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [ + { + "id": "10", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph!$]", + "styles": {} + } + ], + "children": [] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/partialChildToParent.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/partialChildToParent.json new file mode 100644 index 000000000..96184b9f0 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/partialChildToParent.json @@ -0,0 +1,38 @@ +[ + { + "id": "0", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Hea[$!ding 1", + "styles": {} + } + ], + "children": [ + { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested !$]Paragraph 1", + "styles": {} + } + ], + "children": [] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/styledText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/styledText.json new file mode 100644 index 000000000..d87036d63 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/styledText.json @@ -0,0 +1,67 @@ +[ + { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Bold[$!", + "styles": { + "bold": true + } + }, + { + "type": "text", + "text": "Italic!$]", + "styles": { + "italic": true + } + }, + { + "type": "text", + "text": "Regular", + "styles": {} + } + ], + "children": [ + { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [ + { + "id": "10", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph", + "styles": {} + } + ], + "children": [] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableAllCells.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableAllCells.json new file mode 100644 index 000000000..c45b946b8 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableAllCells.json @@ -0,0 +1,69 @@ +[ + { + "id": "11", + "type": "table", + "props": { + "textColor": "default" + }, + "content": { + "type": "tableContent", + "columnWidths": [ + null, + null + ], + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + }, + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "[$!", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "!$]", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableCell.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableCell.json new file mode 100644 index 000000000..697a1f7d9 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableCell.json @@ -0,0 +1,71 @@ +[ + { + "id": "11", + "type": "table", + "props": { + "textColor": "default" + }, + "content": { + "type": "tableContent", + "columnWidths": [ + null, + null, + null, + null + ], + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "[$!", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "!$]", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + }, + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableCellText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableCellText.json new file mode 100644 index 000000000..326ad8302 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableCellText.json @@ -0,0 +1,55 @@ +[ + { + "id": "11", + "type": "table", + "props": { + "textColor": "default" + }, + "content": { + "type": "tableContent", + "columnWidths": [ + null, + null + ], + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "[$!Table Cell!$]", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + }, + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableRow.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableRow.json new file mode 100644 index 000000000..4c7ea0de6 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableRow.json @@ -0,0 +1,71 @@ +[ + { + "id": "11", + "type": "table", + "props": { + "textColor": "default" + }, + "content": { + "type": "tableContent", + "columnWidths": [ + null, + null, + null, + null + ], + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "[$!", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "!$]", + "styles": {} + } + ] + ] + }, + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/unstyledText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/unstyledText.json new file mode 100644 index 000000000..dc9eb6593 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/unstyledText.json @@ -0,0 +1,67 @@ +[ + { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Bold", + "styles": { + "bold": true + } + }, + { + "type": "text", + "text": "Italic[$!", + "styles": { + "italic": true + } + }, + { + "type": "text", + "text": "Regular!$]", + "styles": {} + } + ], + "children": [ + { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [ + { + "id": "10", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph", + "styles": {} + } + ], + "children": [] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/blockToNode.ts b/packages/core/src/api/nodeConversions/blockToNode.ts index 58fad5eeb..267a97e8f 100644 --- a/packages/core/src/api/nodeConversions/blockToNode.ts +++ b/packages/core/src/api/nodeConversions/blockToNode.ts @@ -30,7 +30,7 @@ function styledTextToNodes( ): Node[] { const marks: Mark[] = []; - for (const [style, value] of Object.entries(styledText.styles)) { + for (const [style, value] of Object.entries(styledText.styles || {})) { const config = styleSchema[style]; if (!config) { throw new Error(`style ${style} not found in styleSchema`); diff --git a/packages/core/src/api/nodeConversions/nodeToBlock.ts b/packages/core/src/api/nodeConversions/nodeToBlock.ts index a3c224647..f50b3d8e8 100644 --- a/packages/core/src/api/nodeConversions/nodeToBlock.ts +++ b/packages/core/src/api/nodeConversions/nodeToBlock.ts @@ -1,4 +1,4 @@ -import { Mark, Node } from "@tiptap/pm/model"; +import { Mark, Node, Slice } from "@tiptap/pm/model"; import UniqueID from "../../extensions/UniqueID/UniqueID.js"; import type { @@ -12,8 +12,14 @@ import type { Styles, TableContent, } from "../../schema/index.js"; -import { getBlockInfoWithManualOffset } from "../getBlockInfoFromPos.js"; +import { + getBlockInfoWithManualOffset, + getNearestBlockPos, +} from "../getBlockInfoFromPos.js"; +import { EditorState, Transaction } from "prosemirror-state"; +import { ReplaceAroundStep, ReplaceStep } from "prosemirror-transform"; +import { getBlockInfo } from "../../api/getBlockInfoFromPos.js"; import type { Block } from "../../blocks/defaultBlocks.js"; import { isLinkInlineContent, @@ -50,11 +56,13 @@ export function contentNodeToTableContent< rowNode.content.forEach((cellNode) => { row.cells.push( - contentNodeToInlineContent( - cellNode.firstChild!, - inlineContentSchema, - styleSchema - ) + cellNode.firstChild + ? contentNodeToInlineContent( + cellNode.firstChild, + inlineContentSchema, + styleSchema + ) + : [] ); }); @@ -422,3 +430,367 @@ export function nodeToBlock< return block; } + +/** + * Convert a Prosemirror document to a BlockNote document (array of blocks) + */ +export function docToBlocks< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +>( + doc: Node, + blockSchema: BSchema, + inlineContentSchema: I, + styleSchema: S, + blockCache?: WeakMap> +) { + const blocks: Block[] = []; + doc.firstChild!.descendants((node) => { + blocks.push( + nodeToBlock( + node, + blockSchema, + inlineContentSchema, + styleSchema, + blockCache + ) + ); + return false; + }); + return blocks; +} + +export type SlicedBlock< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +> = { + block: Block & { + children: SlicedBlock[]; + }; + contentCutAtStart: boolean; + contentCutAtEnd: boolean; +}; + +export function selectionToInsertionEnd(tr: Transaction, startLen: number) { + const last = tr.steps.length - 1; + + if (last < startLen) { + return; + } + + const step = tr.steps[last]; + + if (!(step instanceof ReplaceStep || step instanceof ReplaceAroundStep)) { + return; + } + + const map = tr.mapping.maps[last]; + let end = 0; + + map.forEach((_from, _to, _newFrom, newTo) => { + if (end === 0) { + end = newTo; + } + }); + + return end; +} + +/** + * Create a transaction that adds selection markers to the document at the given positions. + * + * @param state - The editor state. + * @param from - The start position of the selection. + * @param to - The end position of the selection. + * @returns The transaction and the new end position. + */ +export function addSelectionMarkersTr( + state: EditorState, + from: number, + to: number +) { + if (from >= to) { + throw new Error("from must be less than to"); + } + let tr = state.tr.insertText("!$]", to); + let newEnd = selectionToInsertionEnd(tr, tr.steps.length - 1)!; + + tr = tr.insertText("[$!", from); + + newEnd = tr.mapping.maps[tr.mapping.maps.length - 1].map(newEnd); + + if (!tr.docChanged || tr.steps.length !== 2) { + throw new Error( + "tr.docChanged is false or insertText was not applied. Was a valid textselection passed?" + ); + } + return { + tr, + newEnd, + }; +} + +export function getDocumentWithSelectionMarkers< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +>( + state: EditorState, + from: number, + to: number, + blockSchema: BSchema, + inlineContentSchema: I, + styleSchema: S, + blockCache?: WeakMap> +) { + const { tr } = addSelectionMarkersTr(state, from, to); + return docToBlocks( + tr.doc, + blockSchema, + inlineContentSchema, + styleSchema, + blockCache + ); +} + +/** + * Add selection markers to the document at the given positions and return the blocks that span the selection. + */ +export function getSelectedBlocksWithSelectionMarkers< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +>( + state: EditorState, + from: number, + to: number, + blockSchema: BSchema, + inlineContentSchema: I, + styleSchema: S, + blockCache?: WeakMap> +) { + const { tr, newEnd } = addSelectionMarkersTr(state, from, to); + + return getBlocksBetween( + from, + newEnd, + tr.doc, + blockSchema, + inlineContentSchema, + styleSchema, + blockCache + ); +} + +/** + * Returns all blocks between two positions in a document, but without automatically including parent blocks + */ +function getBlocksBetween< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +>( + start: number, + end: number, + doc: Node, + blockSchema: BSchema, + inlineContentSchema: I, + styleSchema: S, + blockCache?: WeakMap> +) { + const startPosInfo = getNearestBlockPos(doc, start); + const endPosInfo = getNearestBlockPos(doc, end); + const startNode = getBlockInfo(startPosInfo); + const endNode = getBlockInfo(endPosInfo); + + const slice = doc.slice( + startNode.bnBlock.beforePos, + endNode.bnBlock.afterPos, + true + ); + + const bnSelection = prosemirrorSliceToSlicedBlocks( + slice, + blockSchema, + inlineContentSchema, + styleSchema, + blockCache + ); + + // we don't care about the slice metadata, because our slice is based on complete blocks, the + return withoutSliceMetadata(bnSelection.blocks); +} + +export function withoutSliceMetadata< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +>(blocks: SlicedBlock[]): Block[] { + return blocks.map((block) => { + return { + ...block.block, + children: withoutSliceMetadata(block.block.children), + }; + }); +} + +/** + * + * Parse a Prosemirror Slice into a BlockNote selection. The prosemirror schema looks like this: + * + * + * (main content of block) + * + * (only if blocks has children) + * (child block) + * + * + * (child block 2) + * + * + * + * + * + * + * Examples, + * + * for slice: + * + * {"content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"1","textColor":"yellow","backgroundColor":"blue"},"content":[{"type":"heading","attrs":{"textAlignment":"right","level":2},"content":[{"type":"text","marks":[{"type":"bold"},{"type":"underline"}],"text":"ding "},{"type":"text","marks":[{"type":"italic"},{"type":"strike"}],"text":"2"}]},{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"2","textColor":"default","backgroundColor":"red"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Par"}]}]}]}]}]}],"openStart":3,"openEnd":5} + * + * should return: + * + * [ + * { + * block: { + * nodeToBlock(first blockContainer node), + * children: [ + * { + * block: nodeToBlock(second blockContainer node), + * contentCutAtEnd: true, + * childrenCutAtEnd: false, + * }, + * ], + * }, + * contentCutAtStart: true, + * contentCutAtEnd: false, + * childrenCutAtEnd: true, + * }, + * ] + * + * TODO: do we actually need / use this? + */ +export function prosemirrorSliceToSlicedBlocks< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +>( + slice: Slice, + blockSchema: BSchema, + inlineContentSchema: I, + styleSchema: S, + blockCache?: WeakMap> +): { + blocks: SlicedBlock[]; +} { + // console.log(JSON.stringify(slice.toJSON())); + function processNode( + node: Node, + openStart: number, + openEnd: number + ): SlicedBlock[] { + if (node.type.name !== "blockGroup") { + throw new Error("unexpected"); + } + const blocks: SlicedBlock[] = []; + + node.forEach((blockContainer, _offset, index) => { + if (blockContainer.type.name !== "blockContainer") { + throw new Error("unexpected"); + } + if (blockContainer.childCount === 0) { + return; + } + if (blockContainer.childCount === 0 || blockContainer.childCount > 2) { + throw new Error( + "unexpected, blockContainer.childCount: " + blockContainer.childCount + ); + } + + const isFirstBlock = index === 0; + const isLastBlock = index === node.childCount - 1; + + if (blockContainer.firstChild!.type.name === "blockGroup") { + // this is the parent where a selection starts within one of its children, + // e.g.: + // A + // ├── B + // selection starts within B, then this blockContainer is A, but we don't care about A + // so let's descend into B and continue processing + if (!isFirstBlock) { + throw new Error("unexpected"); + } + blocks.push( + ...processNode( + blockContainer.firstChild!, + Math.max(0, openStart - 1), + isLastBlock ? Math.max(0, openEnd - 1) : 0 + ) + ); + return; + } + + const block = nodeToBlock( + blockContainer, + blockSchema, + inlineContentSchema, + styleSchema, + blockCache + ); + const childGroup = + blockContainer.childCount > 1 ? blockContainer.child(1) : undefined; + + let childBlocks: SlicedBlock[] = []; + if (childGroup) { + childBlocks = processNode( + childGroup, + 0, // TODO: can this be anything other than 0? + isLastBlock ? Math.max(0, openEnd - 1) : 0 + ); + } + + blocks.push({ + block: { + ...(block as any), + children: childBlocks, + }, + contentCutAtStart: openStart > 1 && isFirstBlock, + contentCutAtEnd: !!(openEnd > 1 && isLastBlock && !childGroup), + }); + }); + + return blocks; + } + + if (slice.content.childCount === 0) { + return { + blocks: [], + }; + } + + if (slice.content.childCount !== 1) { + throw new Error( + "slice must be a single block, did you forget includeParents=true?" + ); + } + + return { + blocks: processNode( + slice.content.firstChild!, + Math.max(slice.openStart - 1, 0), + Math.max(slice.openEnd - 1, 0) + ), + }; +} diff --git a/packages/core/src/api/nodeConversions/selectionMarkers.test.ts b/packages/core/src/api/nodeConversions/selectionMarkers.test.ts new file mode 100644 index 000000000..6f10e056e --- /dev/null +++ b/packages/core/src/api/nodeConversions/selectionMarkers.test.ts @@ -0,0 +1,351 @@ +import { Node } from "prosemirror-model"; +import { Selection, TextSelection } from "prosemirror-state"; +import { afterAll, beforeAll, describe, expect, it } from "vitest"; +import { BlockNoteEditor } from "../../editor/BlockNoteEditor.js"; + +import { PartialBlock } from "../../blocks/defaultBlocks.js"; + +// These tests are meant to test the copying of user selections in the editor. +// The test cases used for the other HTML conversion tests are not suitable here +// as they are represented in the BlockNote API, whereas here we want to test +// ProseMirror/TipTap selections directly. +describe("Test ProseMirror selection HTML conversion", () => { + const initialContent: PartialBlock[] = [ + { + type: "heading", + props: { + level: 2, + textColor: "red", + }, + content: "Heading 1", + children: [ + { + type: "paragraph", + content: "Nested Paragraph 1", + }, + { + type: "paragraph", + content: "Nested Paragraph 2", + }, + { + type: "paragraph", + content: "Nested Paragraph 3", + }, + ], + }, + { + type: "heading", + props: { + level: 2, + textColor: "red", + }, + content: "Heading 2", + children: [ + { + type: "paragraph", + content: "Nested Paragraph 1", + }, + { + type: "paragraph", + content: "Nested Paragraph 2", + }, + { + type: "paragraph", + content: "Nested Paragraph 3", + }, + ], + }, + { + type: "heading", + props: { + level: 2, + textColor: "red", + }, + content: [ + { + type: "text", + text: "Bold", + styles: { + bold: true, + }, + }, + { + type: "text", + text: "Italic", + styles: { + italic: true, + }, + }, + { + type: "text", + text: "Regular", + styles: {}, + }, + ], + children: [ + { + type: "image", + props: { + url: "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + }, + children: [ + { + type: "paragraph", + content: "Nested Paragraph", + }, + ], + }, + ], + }, + { + type: "table", + content: { + type: "tableContent", + rows: [ + { + cells: ["Table Cell", "Table Cell"], + }, + { + cells: ["Table Cell", "Table Cell"], + }, + ], + }, + // Not needed as selections starting in table cells will get snapped to + // the table boundaries. + // children: [ + // { + // type: "table", + // content: { + // type: "tableContent", + // rows: [ + // { + // cells: ["Table Cell", "Table Cell"], + // }, + // { + // cells: ["Table Cell", "Table Cell"], + // }, + // ], + // }, + // }, + // ], + }, + ]; + + let editor: BlockNoteEditor; + + const div = document.createElement("div"); + + beforeAll(async () => { + (window as any).__TEST_OPTIONS = (window as any).__TEST_OPTIONS || {}; + editor = BlockNoteEditor.create({ initialContent }); + editor.mount(div); + }); + + afterAll(() => { + editor.mount(undefined); + editor._tiptapEditor.destroy(); + editor = undefined as any; + + delete (window as Window & { __TEST_OPTIONS?: any }).__TEST_OPTIONS; + }); + + // Sets the editor selection to the given start and end positions, then + // exports the selected content to HTML and compares it to a snapshot. + function testSelection(testName: string, startPos: number, endPos: number) { + editor.dispatch( + editor._tiptapEditor.state.tr.setSelection( + TextSelection.create(editor._tiptapEditor.state.doc, startPos, endPos) + ) + ); + + // const slice = editor._tiptapEditor.state.selection.content(); + + const blockNoteSelection = editor.getSelectedBlocksWithSelectionMarkers(); + + expect( + JSON.stringify(blockNoteSelection, undefined, 2) + ).toMatchFileSnapshot( + `./__snapshots_selection_markers_json__/${testName}.json` + ); + } + + const testCases: { testName: string; startPos: number; endPos: number }[] = [ + // Selection spans all of first heading's children. + { + testName: "multipleChildren", + startPos: 16, + endPos: 78, + }, + // Selection spans from start of first heading to end of its first child. + { + testName: "childToParent", + startPos: 3, + endPos: 34, + }, + // Selection spans from middle of first heading to the middle of its first + // child. + { + testName: "partialChildToParent", + startPos: 6, + endPos: 23, + }, + // Selection spans from start of first heading's first child to end of + // second heading's content (does not include second heading's children). + { + testName: "childrenToNextParent", + startPos: 16, + endPos: 93, + }, + // Selection spans from start of first heading's first child to end of + // second heading's last child. + { + testName: "childrenToNextParentsChildren", + startPos: 16, + endPos: 159, + }, + // Selection spans "Regular" text inside third heading. + { + testName: "unstyledText", + startPos: 175, + endPos: 182, + }, + // Selection spans "Italic" text inside third heading. + { + testName: "styledText", + startPos: 169, + endPos: 175, + }, + // Selection spans third heading's content (does not include third heading's + // children). + { + testName: "multipleStyledText", + startPos: 165, + endPos: 182, + }, + // Selection spans the image block content. + { + testName: "image", + startPos: 185, + endPos: 186, + }, + // Selection spans from start of third heading to end of it's last + // descendant. + { + testName: "nestedImage", + startPos: 165, + endPos: 205, + }, + // Selection spans text in first cell of the table. + { + testName: "tableCellText", + startPos: 216, + endPos: 226, + }, + // Selection spans first cell of the table. + { + testName: "tableCell", + startPos: 215, + endPos: 227, + }, + // Selection spans first row of the table. + { + testName: "tableRow", + startPos: 229, + endPos: 241, + }, + // Selection spans all cells of the table. + { + testName: "tableAllCells", + startPos: 259, + endPos: 271, + }, + ]; + // const testCase = testCases.find((testCase) => testCase.testName === "image"); + // it.only(testCase.testName, () => { + // testSelection(testCase.testName, testCase.startPos, testCase.endPos); + // }); + + for (const testCase of testCases) { + // (TODO?) + // eslint-disable-next-line jest/valid-title + it(testCase.testName, () => { + testSelection(testCase.testName, testCase.startPos, testCase.endPos); + }); + } + + it("move end", () => { + let ret = ""; + + loopTextSelections(editor._tiptapEditor.state.doc, "end", (selection) => { + if (selection.empty) { + return; + } + editor.dispatch(editor._tiptapEditor.state.tr.setSelection(selection)); + + const blockNoteSelection = editor.getSelectedBlocksWithSelectionMarkers(); + const JSONString = JSON.stringify(blockNoteSelection); + ret += JSONString + "\n"; + }); + + expect(ret).toMatchFileSnapshot( + `./__snapshots_selection_markers_json__/move_end.txt` + ); + }); + + it("move start", () => { + let ret = ""; + + loopTextSelections(editor._tiptapEditor.state.doc, "start", (selection) => { + if (selection.empty) { + return; + } + editor.dispatch(editor._tiptapEditor.state.tr.setSelection(selection)); + + const blockNoteSelection = editor.getSelectedBlocksWithSelectionMarkers(); + const JSONString = JSON.stringify(blockNoteSelection); + ret += JSONString + "\n"; + }); + + expect(ret).toMatchFileSnapshot( + `./__snapshots_selection_markers_json__/move_start.txt` + ); + }); +}); + +function loopTextSelections( + doc: Node, + move: "start" | "end", + cb: (selection: Selection) => void +) { + const size = doc.content.size; + + for (let i = 0; i < size; i++) { + const selection = TextSelection.between( + move === "start" ? doc.resolve(i) : doc.resolve(0), + move === "start" ? doc.resolve(size - 1) : doc.resolve(i) + ); + if ( + (move === "start" && selection.from !== i) || + (move === "end" && selection.to !== i) + ) { + // The TextSelection.between has moved the position to a valid text position. + // In this case we just skip it. + // (we either have seen this text selection already or it's coming up as we iterate further) + continue; + } + cb(selection); + } +} +/** + * + * Insert $#$ markers around the selection + * + * respond with regular update / remove add blocks + * + * just apply updates + * (possibly: check if updates only affect selection) + * + * + * post partial "slice" blocks that are selected + * respond with similar slice + */ diff --git a/packages/core/src/api/nodeConversions/selections.test.ts b/packages/core/src/api/nodeConversions/selections.test.ts new file mode 100644 index 000000000..1d3f1a5e8 --- /dev/null +++ b/packages/core/src/api/nodeConversions/selections.test.ts @@ -0,0 +1,324 @@ +import { TextSelection } from "prosemirror-state"; +import { afterAll, beforeAll, describe, expect, it } from "vitest"; +import { PartialBlock } from "../../blocks/defaultBlocks.js"; +import { BlockNoteEditor } from "../../editor/BlockNoteEditor.js"; + +// These tests are meant to test the copying of user selections in the editor. +// The test cases used for the other HTML conversion tests are not suitable here +// as they are represented in the BlockNote API, whereas here we want to test +// ProseMirror/TipTap selections directly. +describe("Test ProseMirror selection HTML conversion", () => { + const initialContent: PartialBlock[] = [ + { + type: "heading", + props: { + level: 2, + textColor: "red", + }, + content: "Heading 1", + children: [ + { + type: "paragraph", + content: "Nested Paragraph 1", + }, + { + type: "paragraph", + content: "Nested Paragraph 2", + }, + { + type: "paragraph", + content: "Nested Paragraph 3", + }, + ], + }, + { + type: "heading", + props: { + level: 2, + textColor: "red", + }, + content: "Heading 2", + children: [ + { + type: "paragraph", + content: "Nested Paragraph 1", + }, + { + type: "paragraph", + content: "Nested Paragraph 2", + }, + { + type: "paragraph", + content: "Nested Paragraph 3", + }, + ], + }, + { + type: "heading", + props: { + level: 2, + textColor: "red", + }, + content: [ + { + type: "text", + text: "Bold", + styles: { + bold: true, + }, + }, + { + type: "text", + text: "Italic", + styles: { + italic: true, + }, + }, + { + type: "text", + text: "Regular", + styles: {}, + }, + ], + children: [ + { + type: "image", + props: { + url: "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + }, + children: [ + { + type: "paragraph", + content: "Nested Paragraph", + }, + ], + }, + ], + }, + { + type: "table", + content: { + type: "tableContent", + rows: [ + { + cells: ["Table Cell", "Table Cell"], + }, + { + cells: ["Table Cell", "Table Cell"], + }, + ], + }, + // Not needed as selections starting in table cells will get snapped to + // the table boundaries. + // children: [ + // { + // type: "table", + // content: { + // type: "tableContent", + // rows: [ + // { + // cells: ["Table Cell", "Table Cell"], + // }, + // { + // cells: ["Table Cell", "Table Cell"], + // }, + // ], + // }, + // }, + // ], + }, + ]; + + let editor: BlockNoteEditor; + + const div = document.createElement("div"); + + beforeAll(async () => { + (window as any).__TEST_OPTIONS = (window as any).__TEST_OPTIONS || {}; + editor = BlockNoteEditor.create({ initialContent }); + editor.mount(div); + }); + + afterAll(() => { + editor.mount(undefined); + editor._tiptapEditor.destroy(); + editor = undefined as any; + + delete (window as Window & { __TEST_OPTIONS?: any }).__TEST_OPTIONS; + }); + + // Sets the editor selection to the given start and end positions, then + // exports the selected content to HTML and compares it to a snapshot. + function testSelection(testName: string, startPos: number, endPos: number) { + editor.dispatch( + editor._tiptapEditor.state.tr.setSelection( + TextSelection.create(editor._tiptapEditor.state.doc, startPos, endPos) + ) + ); + + // const slice = editor._tiptapEditor.state.selection.content(); + + const blockNoteSelection = editor.getSelection2(); + + expect( + JSON.stringify(blockNoteSelection, undefined, 2) + ).toMatchFileSnapshot(`./__snapshots_selection_json__/${testName}.json`); + } + + const testCases: { testName: string; startPos: number; endPos: number }[] = [ + // Selection spans all of first heading's children. + { + testName: "multipleChildren", + startPos: 16, + endPos: 78, + }, + // Selection spans from start of first heading to end of its first child. + { + testName: "childToParent", + startPos: 3, + endPos: 34, + }, + // Selection spans from middle of first heading to the middle of its first + // child. + { + testName: "partialChildToParent", + startPos: 6, + endPos: 23, + }, + // Selection spans from start of first heading's first child to end of + // second heading's content (does not include second heading's children). + { + testName: "childrenToNextParent", + startPos: 16, + endPos: 93, + }, + // Selection spans from start of first heading's first child to end of + // second heading's last child. + { + testName: "childrenToNextParentsChildren", + startPos: 16, + endPos: 159, + }, + // Selection spans "Regular" text inside third heading. + { + testName: "unstyledText", + startPos: 175, + endPos: 182, + }, + // Selection spans "Italic" text inside third heading. + { + testName: "styledText", + startPos: 169, + endPos: 175, + }, + // Selection spans third heading's content (does not include third heading's + // children). + { + testName: "multipleStyledText", + startPos: 165, + endPos: 182, + }, + // Selection spans the image block content. + { + testName: "image", + startPos: 185, + endPos: 186, + }, + // Selection spans from start of third heading to end of it's last + // descendant. + { + testName: "nestedImage", + startPos: 165, + endPos: 205, + }, + // Selection spans text in first cell of the table. + { + testName: "tableCellText", + startPos: 216, + endPos: 226, + }, + // Selection spans first cell of the table. + { + testName: "tableCell", + startPos: 215, + endPos: 227, + }, + // Selection spans first row of the table. + { + testName: "tableRow", + startPos: 229, + endPos: 241, + }, + // Selection spans all cells of the table. + { + testName: "tableAllCells", + startPos: 259, + endPos: 271, + }, + ]; + + for (const testCase of testCases) { + // (TODO?) + // eslint-disable-next-line jest/valid-title + it(testCase.testName, () => { + testSelection(testCase.testName, testCase.startPos, testCase.endPos); + }); + } + + it("move end", () => { + const size = editor._tiptapEditor.state.doc.content.size; + + let ret = ""; + + for (let i = 0; i < size; i++) { + editor.dispatch( + editor._tiptapEditor.state.tr.setSelection( + TextSelection.create(editor._tiptapEditor.state.doc, 0, i) + ) + ); + const blockNoteSelection = editor.getSelection2(); + const JSONString = JSON.stringify(blockNoteSelection); + ret += JSONString + "\n"; + } + + expect(ret).toMatchFileSnapshot( + `./__snapshots_selection_json__/move_end.txt` + ); + }); + + it("move start", () => { + const size = editor._tiptapEditor.state.doc.content.size; + + let ret = ""; + + for (let i = 0; i < size; i++) { + editor.dispatch( + editor._tiptapEditor.state.tr.setSelection( + TextSelection.create(editor._tiptapEditor.state.doc, i, size - 1) + ) + ); + + const blockNoteSelection = editor.getSelection2(); + const JSONString = JSON.stringify(blockNoteSelection); + ret += JSONString + "\n"; + } + + expect(ret).toMatchFileSnapshot( + `./__snapshots_selection_json__/move_start.txt` + ); + }); +}); + +/** + * + * Insert $#$ markers around the selection + * + * respond with regular update / remove add blocks + * + * just apply updates + * (possibly: check if updates only affect selection) + * + * + * post partial "slice" blocks that are selected + * respond with similar slice + */ diff --git a/packages/core/src/blocks/CodeBlockContent/CodeBlockContent.ts b/packages/core/src/blocks/CodeBlockContent/CodeBlockContent.ts index 2143d9f68..a0f47968c 100644 --- a/packages/core/src/blocks/CodeBlockContent/CodeBlockContent.ts +++ b/packages/core/src/blocks/CodeBlockContent/CodeBlockContent.ts @@ -1,22 +1,22 @@ import { InputRule, isTextSelection } from "@tiptap/core"; import { TextSelection } from "@tiptap/pm/state"; -import { createHighlightPlugin, Parser } from "prosemirror-highlight"; +import { Parser, createHighlightPlugin } from "prosemirror-highlight"; import { createParser } from "prosemirror-highlight/shiki"; import { BundledLanguage, + Highlighter, bundledLanguagesInfo, createHighlighter, - Highlighter, } from "shiki"; import { + PropSchema, createBlockSpecFromStronglyTypedTiptapNode, createStronglyTypedTiptapNode, - PropSchema, } from "../../schema/index.js"; import { createDefaultBlockDOMOutputSpec } from "../defaultBlockHelpers.js"; import { - defaultSupportedLanguages, SupportedLanguageConfig, + defaultSupportedLanguages, } from "./defaultSupportedLanguages.js"; interface CodeBlockOptions { diff --git a/packages/core/src/blocks/defaultBlockTypeGuards.ts b/packages/core/src/blocks/defaultBlockTypeGuards.ts index 169f9d97e..91a221551 100644 --- a/packages/core/src/blocks/defaultBlockTypeGuards.ts +++ b/packages/core/src/blocks/defaultBlockTypeGuards.ts @@ -1,5 +1,6 @@ import type { BlockNoteEditor } from "../editor/BlockNoteEditor.js"; import { + BlockConfig, BlockFromConfig, BlockSchema, FileBlockConfig, @@ -15,6 +16,22 @@ import { } from "./defaultBlocks.js"; import { defaultProps } from "./defaultProps.js"; +// TODO: check +export function checkBlockTypeInSchema< + Config extends BlockConfig, + I extends InlineContentSchema, + S extends StyleSchema +>( + blockConfig: Config, + editor: BlockNoteEditor +): editor is BlockNoteEditor<{ Type: Config }, I, S> { + return ( + blockConfig.type in editor.schema.blockSchema && + editor.schema.blockSchema[blockConfig.type] === blockConfig + ); +} + +// TODO: can we reuse checkBlockTypeInSchema? export function checkDefaultBlockTypeInSchema< BlockType extends keyof DefaultBlockSchema, I extends InlineContentSchema, diff --git a/packages/core/src/editor/Block.css b/packages/core/src/editor/Block.css index 67db56770..7c6cd90df 100644 --- a/packages/core/src/editor/Block.css +++ b/packages/core/src/editor/Block.css @@ -420,7 +420,6 @@ NESTED BLOCKS position: absolute; font-style: italic; } - /* TODO: should this be here? */ /* TEXT COLORS */ diff --git a/packages/core/src/editor/BlockNoteEditor.test.ts b/packages/core/src/editor/BlockNoteEditor.test.ts index f0f466943..75b287283 100644 --- a/packages/core/src/editor/BlockNoteEditor.test.ts +++ b/packages/core/src/editor/BlockNoteEditor.test.ts @@ -75,6 +75,13 @@ it("adds id attribute when requested", async () => { ); }); +it("updates block", () => { + const editor = BlockNoteEditor.create(); + editor.updateBlock(editor.document[0], { + content: "hello", + }); +}); + it("block prop types", () => { // this test checks whether the block props are correctly typed in typescript const editor = BlockNoteEditor.create(); diff --git a/packages/core/src/editor/BlockNoteEditor.ts b/packages/core/src/editor/BlockNoteEditor.ts index 697667e38..3eaf3ca28 100644 --- a/packages/core/src/editor/BlockNoteEditor.ts +++ b/packages/core/src/editor/BlockNoteEditor.ts @@ -92,7 +92,12 @@ import { dropCursor } from "prosemirror-dropcursor"; import { EditorView } from "prosemirror-view"; import { createInternalHTMLSerializer } from "../api/exporters/html/internalHTMLSerializer.js"; import { inlineContentToNodes } from "../api/nodeConversions/blockToNode.js"; -import { nodeToBlock } from "../api/nodeConversions/nodeToBlock.js"; +import { + docToBlocks, + getDocumentWithSelectionMarkers, + getSelectedBlocksWithSelectionMarkers, + prosemirrorSliceToSlicedBlocks, +} from "../api/nodeConversions/nodeToBlock.js"; import "../style.css"; export type BlockNoteExtensionFactory = ( @@ -653,23 +658,13 @@ export class BlockNoteEditor< * @returns A snapshot of all top-level (non-nested) blocks in the editor. */ public get document(): Block[] { - const blocks: Block[] = []; - - this._tiptapEditor.state.doc.firstChild!.descendants((node) => { - blocks.push( - nodeToBlock( - node, - this.schema.blockSchema, - this.schema.inlineContentSchema, - this.schema.styleSchema, - this.blockCache - ) - ); - - return false; - }); - - return blocks; + return docToBlocks( + this._tiptapEditor.state.doc, + this.schema.blockSchema, + this.schema.inlineContentSchema, + this.schema.styleSchema, + this.blockCache + ); } /** @@ -806,6 +801,87 @@ export class BlockNoteEditor< setTextCursorPosition(this, targetBlock, placement); } + public getDocumentWithSelectionMarkers() { + return getDocumentWithSelectionMarkers( + this._tiptapEditor.state, + this._tiptapEditor.state.selection.from, + this._tiptapEditor.state.selection.to, + this.schema.blockSchema, + this.schema.inlineContentSchema, + this.schema.styleSchema + ); + } + + // TODO: what about node selections? + public getSelectedBlocksWithSelectionMarkers() { + const start = this._tiptapEditor.state.selection.$from; + const end = this._tiptapEditor.state.selection.$to; + + // if the end is at the end of a node (|

) move it forward so we include all closing tags (

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

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

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

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

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

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

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

) move it forward so we include all closing tags (

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

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

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

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

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

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

) + while (start.parentOffset >= start.parent.nodeSize - 2 && start.depth > 0) { + start = this._tiptapEditor.state.doc.resolve(start.pos + 1); + } + + // console.log(start.pos, end.pos); + return prosemirrorSliceToSlicedBlocks( + this._tiptapEditor.state.doc.slice(start.pos, end.pos, true), + this.schema.blockSchema, + this.schema.inlineContentSchema, + this.schema.styleSchema, + this.blockCache + ); + } + /** * Gets a snapshot of the current selection. */ diff --git a/packages/core/src/extensions/SuggestionMenu/DefaultSuggestionItem.ts b/packages/core/src/extensions/SuggestionMenu/DefaultSuggestionItem.ts index 6789b7661..25a4b746f 100644 --- a/packages/core/src/extensions/SuggestionMenu/DefaultSuggestionItem.ts +++ b/packages/core/src/extensions/SuggestionMenu/DefaultSuggestionItem.ts @@ -1,7 +1,5 @@ -import type { Dictionary } from "../../i18n/dictionary.js"; - export type DefaultSuggestionItem = { - key: keyof Omit; + key: string; title: string; onItemClick: () => void; subtext?: string; diff --git a/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts b/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts index fb6fbad7e..f16e8b952 100644 --- a/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts +++ b/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts @@ -307,8 +307,9 @@ export function filterSuggestionItems< ({ title, aliases }) => title.toLowerCase().includes(query.toLowerCase()) || (aliases && - aliases.filter((alias) => - alias.toLowerCase().includes(query.toLowerCase()) + aliases.filter( + (alias) => + alias === "" || alias.toLowerCase().includes(query.toLowerCase()) ).length !== 0) ); } diff --git a/packages/core/src/index.ts b/packages/core/src/index.ts index 072d375bc..b9d09d4c1 100644 --- a/packages/core/src/index.ts +++ b/packages/core/src/index.ts @@ -58,6 +58,7 @@ export { UnreachableCaseError, assertEmpty } from "./util/typescript.js"; export { locales }; export * from "./api/blockManipulation/commands/updateBlock/updateBlock.js"; +export * from "./util/EventEmitter.js"; // for testing from react (TODO: move): export * from "./api/nodeConversions/blockToNode.js"; export * from "./api/nodeConversions/nodeToBlock.js"; diff --git a/packages/mantine/package.json b/packages/mantine/package.json index 16e3568db..b9f800bff 100644 --- a/packages/mantine/package.json +++ b/packages/mantine/package.json @@ -47,7 +47,8 @@ "build": "tsc && vite build", "preview": "vite preview", "lint": "eslint src --max-warnings 0", - "clean": "rimraf dist && rimraf types" + "clean": "rimraf dist && rimraf types", + "_prepare": "npm run build" }, "dependencies": { "@blocknote/core": "^0.24.1", diff --git a/packages/mantine/src/form/TextInput.tsx b/packages/mantine/src/form/TextInput.tsx index e741deb46..c4b4a5334 100644 --- a/packages/mantine/src/form/TextInput.tsx +++ b/packages/mantine/src/form/TextInput.tsx @@ -1,6 +1,6 @@ import { TextInput as MantineTextInput } from "@mantine/core"; -import { assertEmpty } from "@blocknote/core"; +import { assertEmpty, mergeCSSClasses } from "@blocknote/core"; import { ComponentProps } from "@blocknote/react"; import { forwardRef } from "react"; @@ -12,13 +12,16 @@ export const TextInput = forwardRef< className, name, label, + variant, icon, value, autoFocus, placeholder, + disabled, onKeyDown, onChange, onSubmit, + autoComplete, ...rest } = props; @@ -27,7 +30,10 @@ export const TextInput = forwardRef< return ( ); }); diff --git a/packages/mantine/src/style.css b/packages/mantine/src/style.css index 9fe02136f..2d0389392 100644 --- a/packages/mantine/src/style.css +++ b/packages/mantine/src/style.css @@ -118,6 +118,12 @@ height: 32px; } +.bn-mantine .bn-mt-input-large .mantine-TextInput-input { + border: none; + font-size: 14px; + height: 52px; +} + /* Mantine Tooltip component base styles */ .bn-mantine .mantine-Tooltip-tooltip { background-color: transparent; @@ -316,6 +322,12 @@ height: 52px; } +.bn-mantine .bn-suggestion-menu-item-small { + height: fit-content; + /* Made to match with labels */ + padding: calc(var(--mantine-spacing-xs) / 2) var(--mantine-spacing-sm); +} + .bn-mantine .bn-suggestion-menu-item[aria-selected="true"], .bn-mantine .bn-suggestion-menu-item:hover { background-color: var(--bn-colors-hovered-background); @@ -331,6 +343,16 @@ padding: 8px; } +.bn-suggestion-menu-item-small .bn-mt-suggestion-menu-item-section[data-position="left"] { + background-color: transparent; + padding: 0; +} + +.bn-suggestion-menu-item-small .bn-mt-suggestion-menu-item-section[data-position="left"] svg { + height: 14px; + width: 14px; +} + .bn-mt-suggestion-menu-item-body { align-items: stretch; display: flex; @@ -349,6 +371,10 @@ padding: 0; } +.bn-suggestion-menu-item-small .bn-mt-suggestion-menu-item-title { + font-size: 12px; +} + .bn-mt-suggestion-menu-item-subtitle { color: var(--bn-colors-menu-text); line-height: 16px; @@ -357,8 +383,13 @@ padding: 0; } +.bn-suggestion-menu-item-small .bn-mt-suggestion-menu-item-subtitle { + display: none; +} + .bn-mantine .bn-suggestion-menu-label { color: var(--bn-colors-hovered-text); + font-weight: bold; } .bn-mantine .bn-suggestion-menu-loader { diff --git a/packages/mantine/src/suggestionMenu/SuggestionMenuItem.tsx b/packages/mantine/src/suggestionMenu/SuggestionMenuItem.tsx index c7db27e38..a758c39da 100644 --- a/packages/mantine/src/suggestionMenu/SuggestionMenuItem.tsx +++ b/packages/mantine/src/suggestionMenu/SuggestionMenuItem.tsx @@ -27,7 +27,7 @@ export const SuggestionMenuItem = forwardRef< const overflow = elementOverflow( itemRef.current, - document.querySelector(".bn-suggestion-menu")! + document.querySelector(".bn-suggestion-menu, #ai-suggestion-menu")! // TODO ); if (overflow === "top") { @@ -44,6 +44,7 @@ export const SuggestionMenuItem = forwardRef< ref={mergeRefs(ref, itemRef)} id={id} role="option" + onMouseDown={(event) => event.preventDefault()} onClick={onClick} aria-selected={isSelected || undefined}> {item.icon && ( diff --git a/packages/mantine/src/toolbar/Toolbar.tsx b/packages/mantine/src/toolbar/Toolbar.tsx index 9ad042e85..5319656e5 100644 --- a/packages/mantine/src/toolbar/Toolbar.tsx +++ b/packages/mantine/src/toolbar/Toolbar.tsx @@ -5,8 +5,7 @@ import { ComponentProps } from "@blocknote/react"; import { mergeRefs, useFocusTrap, useFocusWithin } from "@mantine/hooks"; import { forwardRef } from "react"; -type ToolbarProps = ComponentProps["FormattingToolbar"]["Root"] & - ComponentProps["LinkToolbar"]["Root"]; +type ToolbarProps = ComponentProps["Generic"]["Toolbar"]["Root"]; export const Toolbar = forwardRef( (props, ref) => { diff --git a/packages/mantine/src/toolbar/ToolbarButton.tsx b/packages/mantine/src/toolbar/ToolbarButton.tsx index bd22f0411..3cc6a3925 100644 --- a/packages/mantine/src/toolbar/ToolbarButton.tsx +++ b/packages/mantine/src/toolbar/ToolbarButton.tsx @@ -22,8 +22,7 @@ export const TooltipContent = (props: { ); -type ToolbarButtonProps = ComponentProps["FormattingToolbar"]["Button"] & - ComponentProps["LinkToolbar"]["Button"]; +type ToolbarButtonProps = ComponentProps["Generic"]["Toolbar"]["Button"]; /** * Helper for basic buttons that show in the formatting toolbar. @@ -51,10 +50,12 @@ export const ToolbarButton = forwardRef( + mainTooltip && ( + + ) }> {/*Creates an ActionIcon instead of a Button if only an icon is provided as content.*/} {children ? ( @@ -69,11 +70,13 @@ export const ToolbarButton = forwardRef( } }} onClick={onClick} + leftSection={icon} aria-pressed={isSelected} data-selected={isSelected || undefined} data-test={ + mainTooltip && mainTooltip.slice(0, 1).toLowerCase() + - mainTooltip.replace(/\s+/g, "").slice(1) + mainTooltip.replace(/\s+/g, "").slice(1) } size={"xs"} disabled={isDisabled || false} @@ -96,8 +99,9 @@ export const ToolbarButton = forwardRef( aria-pressed={isSelected} data-selected={isSelected || undefined} data-test={ + mainTooltip && mainTooltip.slice(0, 1).toLowerCase() + - mainTooltip.replace(/\s+/g, "").slice(1) + mainTooltip.replace(/\s+/g, "").slice(1) } size={30} disabled={isDisabled || false} diff --git a/packages/react/package.json b/packages/react/package.json index 91d2b09a2..a6f1c9863 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -49,7 +49,8 @@ "lint": "eslint src --max-warnings 0", "test": "vitest --run", "test:watch": "vitest --watch", - "clean": "rimraf dist && rimraf types" + "clean": "rimraf dist && rimraf types", + "_prepare": "npm run build" }, "dependencies": { "@blocknote/core": "^0.24.1", diff --git a/packages/react/src/components/FormattingToolbar/DefaultSelects/BlockTypeSelect.tsx b/packages/react/src/components/FormattingToolbar/DefaultSelects/BlockTypeSelect.tsx index 957227963..79c5eaf32 100644 --- a/packages/react/src/components/FormattingToolbar/DefaultSelects/BlockTypeSelect.tsx +++ b/packages/react/src/components/FormattingToolbar/DefaultSelects/BlockTypeSelect.tsx @@ -34,6 +34,8 @@ export type BlockTypeSelectItem = { isSelected: ( block: Block ) => boolean; + showWhileSelected?: boolean; + showWhileNotSelected?: boolean; }; export const blockTypeSelectItems = ( @@ -110,10 +112,21 @@ export const BlockTypeSelect = (props: { items?: BlockTypeSelectItem[] }) => { const [block, setBlock] = useState(editor.getTextCursorPosition().block); const filteredItems: BlockTypeSelectItem[] = useMemo(() => { - return (props.items || blockTypeSelectItems(dict)).filter( - (item) => item.type in editor.schema.blockSchema - ); - }, [editor, dict, props.items]); + return (props.items || blockTypeSelectItems(dict)).filter((item) => { + const blockTypeInSchema = item.type in editor.schema.blockSchema; + const isSelected = item.isSelected(block); + + const showWhileSelected = + item.showWhileSelected === undefined || item.showWhileSelected; + const showWhileNotSelected = + item.showWhileNotSelected === undefined || item.showWhileNotSelected; + + return ( + blockTypeInSchema && + (isSelected ? showWhileSelected : showWhileNotSelected) + ); + }); + }, [props.items, dict, editor.schema.blockSchema, block]); const shouldShow: boolean = useMemo( () => filteredItems.find((item) => item.type === block.type) !== undefined, diff --git a/packages/react/src/components/SideMenu/SideMenu.tsx b/packages/react/src/components/SideMenu/SideMenu.tsx index d9f8fa6c3..8f498700f 100644 --- a/packages/react/src/components/SideMenu/SideMenu.tsx +++ b/packages/react/src/components/SideMenu/SideMenu.tsx @@ -48,6 +48,10 @@ export const SideMenu = < } } + if (props.block.type === "ai" && props.block.props.prompt) { + attrs["data-prompt"] = props.block.props.prompt.toString(); + } + return attrs; }, [props.block, props.editor.schema.blockSchema]); diff --git a/packages/react/src/components/SuggestionMenu/GridSuggestionMenu/hooks/useGridSuggestionMenuKeyboardNavigation.ts b/packages/react/src/components/SuggestionMenu/GridSuggestionMenu/hooks/useGridSuggestionMenuKeyboardNavigation.ts index 89875a1e6..230cc998f 100644 --- a/packages/react/src/components/SuggestionMenu/GridSuggestionMenu/hooks/useGridSuggestionMenuKeyboardNavigation.ts +++ b/packages/react/src/components/SuggestionMenu/GridSuggestionMenu/hooks/useGridSuggestionMenuKeyboardNavigation.ts @@ -53,6 +53,7 @@ export function useGridSuggestionMenuKeyboardNavigation( } if (event.key === "Enter" && !event.isComposing) { + event.stopPropagation(); event.preventDefault(); if (items.length) { diff --git a/packages/react/src/components/SuggestionMenu/SuggestionMenu.test.tsx b/packages/react/src/components/SuggestionMenu/SuggestionMenu.test.tsx index 9d308f863..a124b493e 100644 --- a/packages/react/src/components/SuggestionMenu/SuggestionMenu.test.tsx +++ b/packages/react/src/components/SuggestionMenu/SuggestionMenu.test.tsx @@ -7,7 +7,7 @@ it("has good typing", () => { let menu = ( // @ts-expect-error [{ name: "hello" }]} + getItems={async () => [{ key: "hello" }]} triggerCharacter="/" /> ); @@ -17,6 +17,7 @@ it("has good typing", () => { [ { + key: "hello", title: "hello", onItemClick: () => { return; diff --git a/packages/react/src/components/SuggestionMenu/SuggestionMenu.tsx b/packages/react/src/components/SuggestionMenu/SuggestionMenu.tsx index 78eaa0ab3..b2fc1a755 100644 --- a/packages/react/src/components/SuggestionMenu/SuggestionMenu.tsx +++ b/packages/react/src/components/SuggestionMenu/SuggestionMenu.tsx @@ -1,3 +1,4 @@ +import { mergeCSSClasses } from "@blocknote/core"; import { useMemo } from "react"; import { useComponentsContext } from "../../editor/ComponentsContext.js"; @@ -38,7 +39,10 @@ export function SuggestionMenu( renderedItems.push( = { heading: RiH1, heading_2: RiH2, heading_3: RiH3, diff --git a/packages/react/src/components/SuggestionMenu/hooks/useSuggestionMenuKeyboardHandler.ts b/packages/react/src/components/SuggestionMenu/hooks/useSuggestionMenuKeyboardHandler.ts new file mode 100644 index 000000000..8d367ffdc --- /dev/null +++ b/packages/react/src/components/SuggestionMenu/hooks/useSuggestionMenuKeyboardHandler.ts @@ -0,0 +1,59 @@ +import React, { useState } from "react"; + +// Hook which returns a handler for keyboard navigation of a suggestion menu. Up +// & down arrow keys are used to select an item, enter is used to execute it. +export function useSuggestionMenuKeyboardHandler( + items: Item[], + onItemClick?: (item: Item) => void +) { + const [selectedIndex, setSelectedIndex] = useState(0); + + return { + selectedIndex, + setSelectedIndex, + handler: (event: KeyboardEvent | React.KeyboardEvent) => { + if (event.key === "ArrowUp") { + event.preventDefault(); + + if (items.length) { + setSelectedIndex((selectedIndex - 1 + items!.length) % items!.length); + } + + return true; + } + + if (event.key === "ArrowDown") { + // debugger; + event.preventDefault(); + + if (items.length) { + setSelectedIndex((selectedIndex + 1) % items!.length); + } + + return true; + } + + const isComposing = isReactEvent(event) + ? event.nativeEvent.isComposing + : event.isComposing; + if (event.key === "Enter" && !isComposing) { + event.preventDefault(); + event.stopPropagation(); + + if (items.length) { + onItemClick?.(items[selectedIndex]); + } + + return true; + } + + return false; + }, + }; +} + +function isReactEvent( + event: KeyboardEvent | React.KeyboardEvent +): event is React.KeyboardEvent { + return (event as React.KeyboardEvent).nativeEvent !== undefined; +} diff --git a/packages/react/src/components/SuggestionMenu/hooks/useSuggestionMenuKeyboardNavigation.ts b/packages/react/src/components/SuggestionMenu/hooks/useSuggestionMenuKeyboardNavigation.ts index 8a9bb1019..d1fdb82e3 100644 --- a/packages/react/src/components/SuggestionMenu/hooks/useSuggestionMenuKeyboardNavigation.ts +++ b/packages/react/src/components/SuggestionMenu/hooks/useSuggestionMenuKeyboardNavigation.ts @@ -1,5 +1,6 @@ import { BlockNoteEditor } from "@blocknote/core"; -import { useEffect, useState } from "react"; +import { useEffect } from "react"; +import { useSuggestionMenuKeyboardHandler } from "./useSuggestionMenuKeyboardHandler.js"; // Hook which handles keyboard navigation of a suggestion menu. Up & down arrow // keys are used to select a menu item, enter is used to execute it. @@ -7,65 +8,28 @@ export function useSuggestionMenuKeyboardNavigation( editor: BlockNoteEditor, query: string, items: Item[], - onItemClick?: (item: Item) => void + onItemClick?: (item: Item) => void, + element?: HTMLElement ) { - const [selectedIndex, setSelectedIndex] = useState(0); + const { selectedIndex, setSelectedIndex, handler } = + useSuggestionMenuKeyboardHandler(items, onItemClick); useEffect(() => { - const handleMenuNavigationKeys = (event: KeyboardEvent) => { - if (event.key === "ArrowUp") { - event.preventDefault(); - - if (items.length) { - setSelectedIndex((selectedIndex - 1 + items!.length) % items!.length); - } - - return true; - } - - if (event.key === "ArrowDown") { - event.preventDefault(); - - if (items.length) { - setSelectedIndex((selectedIndex + 1) % items!.length); - } - - return true; - } - - if (event.key === "Enter" && !event.isComposing) { - event.preventDefault(); - event.stopPropagation(); - - if (items.length) { - onItemClick?.(items[selectedIndex]); - } - - return true; - } - - return false; - }; - - editor.domElement?.addEventListener( - "keydown", - handleMenuNavigationKeys, - true - ); + (element || editor.domElement)?.addEventListener("keydown", handler, true); return () => { - editor.domElement?.removeEventListener( + (element || editor.domElement)?.removeEventListener( "keydown", - handleMenuNavigationKeys, + handler, true ); }; - }, [editor.domElement, items, selectedIndex, onItemClick]); + }, [editor.domElement, items, selectedIndex, onItemClick, element, handler]); // Resets index when items change useEffect(() => { setSelectedIndex(0); - }, [query]); + }, [query, setSelectedIndex]); return { selectedIndex: items.length === 0 ? undefined : selectedIndex, diff --git a/packages/react/src/components/SuggestionMenu/types.tsx b/packages/react/src/components/SuggestionMenu/types.tsx index a3d796833..8d9029046 100644 --- a/packages/react/src/components/SuggestionMenu/types.tsx +++ b/packages/react/src/components/SuggestionMenu/types.tsx @@ -4,8 +4,9 @@ import { DefaultSuggestionItem } from "@blocknote/core"; * Although any arbitrary data can be passed as suggestion items, the built-in * UI components such as `MantineSuggestionMenu` expect a shape that conforms to DefaultSuggestionItem */ -export type DefaultReactSuggestionItem = Omit & { +export type DefaultReactSuggestionItem = DefaultSuggestionItem & { icon?: JSX.Element; + size?: "default" | "small"; }; /** diff --git a/packages/react/src/editor/ComponentsContext.tsx b/packages/react/src/editor/ComponentsContext.tsx index ba594f6ac..342e1707e 100644 --- a/packages/react/src/editor/ComponentsContext.tsx +++ b/packages/react/src/editor/ComponentsContext.tsx @@ -3,6 +3,7 @@ import { ComponentType, createContext, CSSProperties, + HTMLInputAutoCompleteAttribute, KeyboardEvent, MouseEvent, ReactNode, @@ -121,7 +122,7 @@ export type ComponentProps = { id: string; isSelected: boolean; onClick: () => void; - item: DefaultReactSuggestionItem; + item: Omit; }; Label: { className?: string; @@ -189,13 +190,16 @@ export type ComponentProps = { className?: string; name: string; label?: string; + variant?: "default" | "large"; icon: ReactNode; autoFocus?: boolean; - placeholder: string; + placeholder?: string; + disabled?: boolean; value: string; onKeyDown: (event: KeyboardEvent) => void; onChange: (event: ChangeEvent) => void; onSubmit?: () => void; + autoComplete?: HTMLInputAutoCompleteAttribute; }; }; Menu: { diff --git a/packages/react/src/editor/styles.css b/packages/react/src/editor/styles.css index 2ac35161d..0d4376824 100644 --- a/packages/react/src/editor/styles.css +++ b/packages/react/src/editor/styles.css @@ -237,4 +237,4 @@ .bn-side-menu[data-url="false"] { height: 54px; -} +} \ No newline at end of file diff --git a/packages/react/src/hooks/useUIElementPositioning.ts b/packages/react/src/hooks/useUIElementPositioning.ts index 328e481eb..997ca9e7f 100644 --- a/packages/react/src/hooks/useUIElementPositioning.ts +++ b/packages/react/src/hooks/useUIElementPositioning.ts @@ -4,14 +4,20 @@ import { UseFloatingOptions, useInteractions, useTransitionStyles, + VirtualElement, } from "@floating-ui/react"; import { useEffect, useMemo } from "react"; +type ReferencePos = DOMRect | HTMLElement | VirtualElement | null; +function isVirtualElement(element: ReferencePos): element is VirtualElement { + return (element as VirtualElement).getBoundingClientRect !== undefined; +} + export function useUIElementPositioning( show: boolean, - referencePos: DOMRect | null, + referencePos: DOMRect | HTMLElement | VirtualElement | null, zIndex: number, - options?: Partial + options?: Partial ) { const { refs, update, context, floatingStyles } = useFloating({ open: show, @@ -21,7 +27,7 @@ export function useUIElementPositioning( // handle "escape" and other dismiss events, these will add some listeners to // getFloatingProps which need to be attached to the floating element - const dismiss = useDismiss(context); + const dismiss = useDismiss(context, { enabled: options?.canDismiss }); const { getReferenceProps, getFloatingProps } = useInteractions([dismiss]); @@ -34,9 +40,16 @@ export function useUIElementPositioning( if (referencePos === null) { return; } - refs.setReference({ - getBoundingClientRect: () => referencePos, - }); + + if (referencePos instanceof HTMLElement) { + refs.setReference(referencePos); + } else if (isVirtualElement(referencePos)) { + refs.setReference(referencePos); + } else { + refs.setReference({ + getBoundingClientRect: () => referencePos, + }); + } }, [referencePos, refs]); return useMemo(() => { diff --git a/packages/react/src/index.ts b/packages/react/src/index.ts index dd8215d70..f19369a51 100644 --- a/packages/react/src/index.ts +++ b/packages/react/src/index.ts @@ -74,11 +74,11 @@ export * from "./components/FilePanel/FilePanel.js"; export * from "./components/FilePanel/FilePanelController.js"; export * from "./components/FilePanel/FilePanelProps.js"; +export * from "./components/TableHandles/ExtendButton/ExtendButton.js"; +export * from "./components/TableHandles/ExtendButton/ExtendButtonProps.js"; export * from "./components/TableHandles/TableHandle.js"; export * from "./components/TableHandles/TableHandleProps.js"; export * from "./components/TableHandles/TableHandlesController.js"; -export * from "./components/TableHandles/ExtendButton/ExtendButton.js"; -export * from "./components/TableHandles/ExtendButton/ExtendButtonProps.js"; export * from "./components/TableHandles/hooks/useExtendButtonsPositioning.js"; export * from "./components/TableHandles/hooks/useTableHandlesPositioning.js"; @@ -103,3 +103,7 @@ export * from "./schema/ReactStyleSpec.js"; export * from "./util/elementOverflow.js"; export * from "./util/mergeRefs.js"; + +export * from "./components/SuggestionMenu/hooks/useSuggestionMenuKeyboardHandler.js"; +export * from "./hooks/useUIElementPositioning.js"; +export * from "./hooks/useUIPluginState.js"; diff --git a/packages/server-util/package.json b/packages/server-util/package.json index b392b4a1d..cbdfd7721 100644 --- a/packages/server-util/package.json +++ b/packages/server-util/package.json @@ -47,7 +47,8 @@ "build": "tsc && vite build", "lint": "eslint src --max-warnings 0", "test": "vitest --run", - "test-watch": "vitest watch" + "test-watch": "vitest watch", + "_prepare": "npm run build" }, "dependencies": { "@blocknote/core": "^0.24.1", diff --git a/packages/shadcn/package.json b/packages/shadcn/package.json index c8924470b..94846779a 100644 --- a/packages/shadcn/package.json +++ b/packages/shadcn/package.json @@ -47,7 +47,8 @@ "build": "tsc && vite build", "preview": "vite preview", "lint": "eslint src --max-warnings 0", - "clean": "rimraf dist && rimraf types" + "clean": "rimraf dist && rimraf types", + "_prepare": "npm run build" }, "dependencies": { "@blocknote/core": "^0.24.1", diff --git a/packages/shadcn/src/form/TextInput.tsx b/packages/shadcn/src/form/TextInput.tsx index 0aa393122..1938d552c 100644 --- a/packages/shadcn/src/form/TextInput.tsx +++ b/packages/shadcn/src/form/TextInput.tsx @@ -12,13 +12,16 @@ export const TextInput = forwardRef< className, name, label, + variant, icon, // TODO: implement value, autoFocus, placeholder, + disabled, onKeyDown, onChange, onSubmit, + autoComplete, ...rest } = props; @@ -33,10 +36,12 @@ export const TextInput = forwardRef< name={name} autoFocus={autoFocus} placeholder={placeholder} + disabled={disabled} value={value} onKeyDown={onKeyDown} onChange={onChange} onSubmit={onSubmit} + autoComplete={autoComplete} ref={ref} /> ); @@ -53,6 +58,7 @@ export const TextInput = forwardRef< name={name} autoFocus={autoFocus} placeholder={placeholder} + disabled={disabled} value={value} onKeyDown={onKeyDown} onChange={onChange} diff --git a/packages/shadcn/src/suggestionMenu/SuggestionMenuItem.tsx b/packages/shadcn/src/suggestionMenu/SuggestionMenuItem.tsx index 0ba138533..5cbec2649 100644 --- a/packages/shadcn/src/suggestionMenu/SuggestionMenuItem.tsx +++ b/packages/shadcn/src/suggestionMenu/SuggestionMenuItem.tsx @@ -24,7 +24,7 @@ export const SuggestionMenuItem = forwardRef< const overflow = elementOverflow( itemRef.current, - document.querySelector(".bn-suggestion-menu")! + document.querySelector(".bn-suggestion-menu, #ai-suggestion-menu")! // TODO ); if (overflow === "top") { itemRef.current.scrollIntoView(true); @@ -38,21 +38,43 @@ export const SuggestionMenuItem = forwardRef< // Styles from ShadCN DropdownMenuItem component className={cn( "bn-relative bn-flex bn-cursor-pointer bn-select-none bn-items-center bn-rounded-sm bn-px-2 bn-py-1.5 bn-text-sm bn-outline-none bn-transition-colors focus:bn-bg-accent focus:bn-text-accent-foreground data-[disabled]:bn-pointer-events-none data-[disabled]:bn-opacity-50", + props.item.size === "small" ? "bn-gap-3 bn-py-1" : "", className )} ref={mergeRefs([ref, itemRef])} id={id} + onMouseDown={(event) => event.preventDefault()} onClick={onClick} role="option" aria-selected={isSelected || undefined}> {item.icon && ( -

+
{item.icon}
)}
-
{item.title}
-
{item.subtext}
+
+ {item.title} +
+
+ {item.subtext} +
{item.badge && (
diff --git a/packages/shadcn/src/toolbar/Toolbar.tsx b/packages/shadcn/src/toolbar/Toolbar.tsx index 8521029d4..e983c38bf 100644 --- a/packages/shadcn/src/toolbar/Toolbar.tsx +++ b/packages/shadcn/src/toolbar/Toolbar.tsx @@ -5,8 +5,7 @@ import { forwardRef } from "react"; import { cn } from "../lib/utils.js"; import { useShadCNComponentsContext } from "../ShadCNComponentsContext.js"; -type ToolbarProps = ComponentProps["FormattingToolbar"]["Root"] & - ComponentProps["LinkToolbar"]["Root"]; +type ToolbarProps = ComponentProps["Generic"]["Toolbar"]["Root"]; export const Toolbar = forwardRef( (props, ref) => { @@ -33,8 +32,7 @@ export const Toolbar = forwardRef( } ); -type ToolbarButtonProps = ComponentProps["FormattingToolbar"]["Button"] & - ComponentProps["LinkToolbar"]["Button"]; +type ToolbarButtonProps = ComponentProps["Generic"]["Toolbar"]["Button"]; export const ToolbarButton = forwardRef( (props, ref) => { @@ -89,18 +87,22 @@ export const ToolbarButton = forwardRef( ); - return ( - - - {trigger} - - - {mainTooltip} - {secondaryTooltip && {secondaryTooltip}} - - - ); + if (mainTooltip) { + return ( + + + {trigger} + + + {mainTooltip} + {secondaryTooltip && {secondaryTooltip}} + + + ); + } + + return trigger; } ); diff --git a/packages/xl-ai-server/.env.example b/packages/xl-ai-server/.env.example new file mode 100644 index 000000000..9847a1df1 --- /dev/null +++ b/packages/xl-ai-server/.env.example @@ -0,0 +1 @@ +OPENAI_API_KEY= \ No newline at end of file diff --git a/packages/xl-ai-server/README.md b/packages/xl-ai-server/README.md new file mode 100644 index 000000000..114334db5 --- /dev/null +++ b/packages/xl-ai-server/README.md @@ -0,0 +1,8 @@ +Requirements: + +- mkcert ([instructions](https://web.dev/articles/how-to-use-local-https)) + +Running (dev mode): + + mkcert localhost + npm run dev diff --git a/packages/xl-ai-server/package.json b/packages/xl-ai-server/package.json new file mode 100644 index 000000000..5b8b9f72c --- /dev/null +++ b/packages/xl-ai-server/package.json @@ -0,0 +1,73 @@ +{ + "name": "@blocknote/xl-ai-server", + "homepage": "https://github.com/TypeCellOS/BlockNote", + "private": false, + "license": "AGPL-3.0 OR PROPRIETARY", + "version": "0.19.1", + "files": [ + "dist", + "types", + "src" + ], + "keywords": [ + "react", + "javascript", + "editor", + "typescript", + "prosemirror", + "wysiwyg", + "rich-text-editor", + "notion", + "yjs", + "block-based", + "tiptap" + ], + "description": "A \"Notion-style\" block-based extensible text editor built on top of Prosemirror and Tiptap.", + "type": "module", + "source": "src/index.ts", + "types": "./types/src/index.d.ts", + "main": "./dist/blocknote-xl-ai-server.umd.cjs", + "module": "./dist/blocknote-xl-ai-server.js", + "exports": { + ".": { + "types": "./types/src/index.d.ts", + "import": "./dist/blocknote-xl-ai-server.js", + "require": "./dist/blocknote-xl-ai-server.umd.cjs" + } + }, + "scripts": { + "dev": "vite-node src/index.ts", + "build": "tsc && vite build", + "start": "node dist/blocknote-xl-ai-server.js", + "lint": "eslint src --max-warnings 0", + "clean": "rimraf dist && rimraf types", + "test": "vitest --run", + "test-watch": "vitest watch" + }, + "dependencies": { + "@hono/node-server": "^1.13.7", + "hono": "^4.6.12" + }, + "devDependencies": { + "eslint": "^8.10.0", + "prettier": "^2.7.1", + "rimraf": "^5.0.5", + "rollup-plugin-webpack-stats": "^0.2.2", + "typescript": "^5.3.3", + "vite": "^5.3.4", + "vite-node": "^2.1.6", + "vite-plugin-eslint": "^1.8.1", + "vite-plugin-externalize-deps": "^0.8.0", + "vitest": "^2.0.3", + "undici": "^6" + }, + "eslintConfig": { + "extends": [ + "../../.eslintrc.js" + ] + }, + "publishConfig": { + "access": "public", + "registry": "https://registry.npmjs.org/" + } +} diff --git a/packages/xl-ai-server/src/index.ts b/packages/xl-ai-server/src/index.ts new file mode 100644 index 000000000..8dc70b9f6 --- /dev/null +++ b/packages/xl-ai-server/src/index.ts @@ -0,0 +1,105 @@ +import { serve } from "@hono/node-server"; +import { Hono } from "hono"; +import { cors } from "hono/cors"; +import { existsSync, readFileSync } from "node:fs"; +import { createSecureServer } from "node:http2"; +import { Agent, setGlobalDispatcher } from "undici"; + +// make sure our fetch request uses HTTP/2 +setGlobalDispatcher( + new Agent({ + allowH2: true, + }) +); + +const ignoreHeadersRe = /^content-(?:encoding|length|range)$/i; + +export const proxyFetch: typeof fetch = async (request, options) => { + const req = new Request(request, options); + req.headers.delete("accept-encoding"); // TBD: there may be cases where you want to explicitly specify + const res = await fetch(req); + + const headers: HeadersInit = [...res.headers.entries()].filter( + ([k]) => !ignoreHeadersRe.test(k) && k !== "strict-transport-security" + ); + return new Response(res.body, { + ...res, + status: res.status, + statusText: res.statusText, + headers, + }); +}; + +function getProviderInfo(provider: string) { + if (provider === "openai") { + return { + key: process.env.OPENAI_API_KEY, + }; + } + if (provider === "groq") { + return { + key: process.env.GROQ_API_KEY, + }; + } + if (provider === "albert-etalab") { + return { + key: process.env.ALBERT_ETALAB_API_KEY, + }; + } + return "not-found"; +} + +const app = new Hono(); + +app.use("/health", async (c) => { + return c.json({ status: "ok" }); +}); + +app.use("/ai", cors(), async (c) => { + const url = c.req.query("url"); + if (!url) { + return c.json({ error: "url parameter is required" }, 400); + } + + const provider = c.req.query("provider"); + if (!provider) { + return c.json({ error: "provider parameter is required" }, 400); + } + + const providerInfo = getProviderInfo(provider); + + if (providerInfo === "not-found" || !providerInfo.key?.length) { + return c.json( + { + error: `provider / key not found for provider ${provider}. Make sure to load correct env variables.`, + }, + 404 + ); + } + + // eslint-disable-next-line no-console + console.log("Proxying request to", url); + const request = new Request(url, c.req.raw); + request.headers.set("Authorization", `Bearer ${providerInfo.key}`); + return proxyFetch(request); +}); + +const http2 = existsSync("localhost.pem"); +serve( + { + fetch: app.fetch, + createServer: http2 ? createSecureServer : undefined, + + serverOptions: { + key: http2 ? readFileSync("localhost-key.pem") : undefined, + cert: http2 ? readFileSync("localhost.pem") : undefined, + }, + port: Number(process.env.PORT) || 3000, + }, + (info) => { + // eslint-disable-next-line no-console + console.log( + `Server is running on ${info.address}${info.port}, http2: ${http2}` + ); + } +); diff --git a/packages/xl-ai-server/tsconfig.json b/packages/xl-ai-server/tsconfig.json new file mode 100644 index 000000000..d9eced7da --- /dev/null +++ b/packages/xl-ai-server/tsconfig.json @@ -0,0 +1,32 @@ +{ + "compilerOptions": { + "target": "ESNext", + "useDefineForClassFields": true, + "module": "ESNext", + "lib": ["ESNext", "DOM", "DOM.Iterable"], + "moduleResolution": "Node", + "jsx": "react-jsx", + "strict": true, + "sourceMap": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "noEmit": false, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noImplicitReturns": true, + "outDir": "dist", + "declaration": true, + "declarationDir": "types", + "composite": true, + "skipLibCheck": true + }, + "include": ["src"], + "references": [ + { + "path": "../core" + }, + { + "path": "../react" + } + ] +} diff --git a/packages/xl-ai-server/vite.config.ts b/packages/xl-ai-server/vite.config.ts new file mode 100644 index 000000000..c2041c310 --- /dev/null +++ b/packages/xl-ai-server/vite.config.ts @@ -0,0 +1,54 @@ +import * as path from "path"; +import { webpackStats } from "rollup-plugin-webpack-stats"; +import { defineConfig } from "vite"; +import pkg from "./package.json"; +// import eslintPlugin from "vite-plugin-eslint"; + +// https://vitejs.dev/config/ +export default defineConfig((conf) => ({ + test: { + environment: "jsdom", + setupFiles: ["./vitestSetup.ts"], + }, + plugins: [webpackStats()], + // used so that vitest resolves the core package from the sources instead of the built version + resolve: { + alias: + conf.command === "build" + ? ({} as Record) + : ({ + // load live from sources with live reload working + "@blocknote/core": path.resolve(__dirname, "../core/src/"), + } as Record), + }, + build: { + sourcemap: true, + lib: { + entry: path.resolve(__dirname, "src/index.ts"), + name: "blocknote-xl-ai-server", + fileName: "blocknote-xl-ai-server", + }, + rollupOptions: { + // make sure to externalize deps that shouldn't be bundled + // into your library + external: [ + ...Object.keys({ + ...pkg.dependencies, + ...pkg.peerDependencies, + ...pkg.devDependencies, + }), + "node:fs", + "node:http2", + ], + output: { + // Provide global variables to use in the UMD build + // for externalized deps + globals: { + react: "React", + "react-dom": "ReactDOM", + }, + interop: "compat", // https://rollupjs.org/migration/#changed-defaults + }, + }, + }, +})); diff --git a/packages/xl-ai/TODO.md b/packages/xl-ai/TODO.md new file mode 100644 index 000000000..deb1ec141 --- /dev/null +++ b/packages/xl-ai/TODO.md @@ -0,0 +1,3 @@ +- context for slash menu (i.e.: don't pass entire document) +- selection tests + API +- what about nested blocks? diff --git a/packages/xl-ai/package.json b/packages/xl-ai/package.json new file mode 100644 index 000000000..8a9277a91 --- /dev/null +++ b/packages/xl-ai/package.json @@ -0,0 +1,108 @@ +{ + "name": "@blocknote/xl-ai", + "homepage": "https://github.com/TypeCellOS/BlockNote", + "private": false, + "license": "AGPL-3.0 OR PROPRIETARY", + "version": "0.24.1", + "files": [ + "dist", + "types", + "src" + ], + "keywords": [ + "react", + "javascript", + "editor", + "typescript", + "prosemirror", + "wysiwyg", + "rich-text-editor", + "notion", + "yjs", + "block-based", + "tiptap" + ], + "description": "A \"Notion-style\" block-based extensible text editor built on top of Prosemirror and Tiptap.", + "type": "module", + "source": "src/index.ts", + "types": "./types/src/index.d.ts", + "main": "./dist/blocknote-xl-ai.umd.cjs", + "module": "./dist/blocknote-xl-ai.js", + "exports": { + ".": { + "types": "./types/src/index.d.ts", + "import": "./dist/blocknote-xl-ai.js", + "require": "./dist/blocknote-xl-ai.umd.cjs" + }, + "./style.css": { + "import": "./dist/style.css", + "require": "./dist/style.css" + } + }, + "scripts": { + "dev": "vite", + "build": "tsc && vite build", + "build-bundled": "tsc && vite build --config vite.config.bundled.ts && git checkout tmp-releases && rm -rf ../../release && mv ../../release-tmp ../../release", + "preview": "vite preview", + "lint": "eslint src --max-warnings 0", + "clean": "rimraf dist && rimraf types", + "test": "NODE_EXTRA_CA_CERTS=\"$(mkcert -CAROOT)/rootCA.pem\" vitest --run", + "test-watch": "vitest watch", + "_prepare": "npm run build" + }, + "dependencies": { + "@ewoudenberg/difflib": "^0.1.0", + "@ai-sdk/openai": "^1.1.0", + "@ai-sdk/groq": "^1.1.0", + "@blocknote/core": "^0.24.1", + "@blocknote/mantine": "^0.24.1", + "@blocknote/react": "^0.24.1", + "@floating-ui/react": "^0.26.4", + "@tiptap/core": "^2.7.1", + "ai": "^4.1.0", + "diff": "^7.0.0", + "json-diff": "^1.0.6", + "json-diff-kit": "^1.0.29", + "prosemirror-state": "^1.4.3", + "prosemirror-view": "^1.33.7", + "react": "^18", + "react-dom": "^18", + "react-icons": "^5.2.1", + "remark-parse": "^10.0.1", + "remark-stringify": "^10.0.2", + "unified": "^10.1.2" + }, + "devDependencies": { + "@types/diff": "^6.0.0", + "@types/json-diff": "^1.0.3", + "@types/react": "^18.0.25", + "@types/react-dom": "^18.0.9", + "@vitejs/plugin-react": "^4.3.1", + "eslint": "^8.10.0", + "@mswjs/interceptors": "^0.37.5", + "msw": "^2.7.0", + "msw-snapshot": "^5.2.0", + "prettier": "^2.7.1", + "rimraf": "^5.0.5", + "rollup-plugin-webpack-stats": "^0.2.2", + "typescript": "^5.3.3", + "vite": "^5.3.4", + "vite-plugin-eslint": "^1.8.1", + "vite-plugin-externalize-deps": "^0.8.0", + "vitest": "^2.0.3", + "undici": "^6" + }, + "peerDependencies": { + "react": "^18", + "react-dom": "^18" + }, + "eslintConfig": { + "extends": [ + "../../.eslintrc.js" + ] + }, + "publishConfig": { + "access": "public", + "registry": "https://registry.npmjs.org/" + } +} diff --git a/packages/xl-ai/src/api/blocknoteAIClient/client.ts b/packages/xl-ai/src/api/blocknoteAIClient/client.ts new file mode 100644 index 000000000..cd0f1cb54 --- /dev/null +++ b/packages/xl-ai/src/api/blocknoteAIClient/client.ts @@ -0,0 +1,67 @@ +/** + * Fetch function to proxy requests to the @blocknote/xl-ai-server AI server. + */ +const fetchViaBlockNoteAIServer = + (baseURL: string, provider: string) => + async (input: string | URL | Request, init?: RequestInit) => { + const request = new Request(input, init); + + const newRequest = new Request( + `${baseURL}?provider=${encodeURIComponent( + provider + )}&url=${encodeURIComponent(request.url)}`, + { + headers: request.headers, + // if we just pass request.body, it's a readablestream which is not visible in chrome inspector, + // so use init?.body instead if it's available to make debugging easier + body: init?.body || request.body, + method: request.method, + duplex: "half", + } as any + ); + const resp = await fetch(newRequest); + return resp; + }; + +/** + * Create a client to connect to the @blocknote/xl-ai-server AI server. + * The BlockNote AI server is a proxy for AI model providers. It allows you to connect to + * AI SDKs without exposing your model provider's API keys on the client. + * + * @param config - settings to connect to the @blocknote/xl-ai-server AI server + * @returns a client to connect to the @blocknote/xl-ai-server AI server. + * Use the `getProviderSettings` method to get the provider settings for the AI SDKs, + * this will configure the AI SDK model to connect via the @blocknote/xl-ai-server AI server. + */ +export function createBlockNoteAIClient(config: { + /** + * baseURL of the @blocknote/xl-ai-server AI server + */ + baseURL: string; + /** + * API key for the @blocknote/xl-ai-server AI server + */ + apiKey: string; +}) { + return { + /** + * Get settings for AI SDK providers. Pass the returned objects when creating the AI SDK provider, e.g.: + * + * createOpenAI({ + * ...client.getProviderSettings("openai"), + * })("gpt-4o-2024-08-06", {}); + * + * Explanation: we override the `fetch` and `apiKey` parameters of the AI SDK provider to instead + * use the BlockNote AI server to proxy requests to the provider. + * + * Note: the `apiKey` is the API key for the @blocknote/xl-ai-server AI server, not the model provider. + * The correct API key for the model provider will be added by the BlockNote AI server. + */ + getProviderSettings: (provider: "openai" | "groq" | string) => { + return { + apiKey: config.apiKey, + fetch: fetchViaBlockNoteAIServer(config.baseURL, provider), + }; + }, + }; +} diff --git a/packages/xl-ai/src/api/executor/executor.ts b/packages/xl-ai/src/api/executor/executor.ts new file mode 100644 index 000000000..5dc4911e4 --- /dev/null +++ b/packages/xl-ai/src/api/executor/executor.ts @@ -0,0 +1,57 @@ +import { BlockNoteEditor } from "@blocknote/core"; +import { AIFunction } from "../functions/index.js"; + +export function executeAIOperation( + operation: any, + editor: BlockNoteEditor, + functions: AIFunction[], + operationContext: any, + options: { + idsSuffixed: boolean; + } = { + idsSuffixed: false, + } +) { + const func = functions.find((func) => func.schema.name === operation.type); + if (!func || !func.validate(operation, editor, options)) { + // TODO? + // eslint-disable-next-line no-console + console.log("INVALID OPERATION", operation); + return operationContext; + } + return func.apply(operation, editor, operationContext, options); +} + +type AsyncIterableStream = AsyncIterable & ReadableStream; + +export async function executeAIOperationStream( + editor: BlockNoteEditor, + operationsStream: AsyncIterableStream<{ + operations?: any[]; + }>, + functions: AIFunction[] +) { + let numOperationsAppliedCompletely = 0; + let operationContext: any = undefined; + + for await (const partialObject of operationsStream) { + const operations = partialObject.operations || []; + // console.log(operations); + let isFirst = true; + for (const operation of operations.slice(numOperationsAppliedCompletely)) { + operationContext = executeAIOperation( + operation, + editor, + functions, + isFirst ? operationContext : undefined, + { idsSuffixed: true } + ); + isFirst = false; + } + + numOperationsAppliedCompletely = operations.length - 1; + } +} + +// - cursor position +// - API design (customize context, cursor position, prompt, stream / nostream, validation) diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/065623ea0bc171a86767e4f8c4eb84bf b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/065623ea0bc171a86767e4f8c4eb84bf new file mode 100644 index 000000000..bfe00100f --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/065623ea0bc171a86767e4f8c4eb84bf @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=groq&url=https%3A%2F%2Fapi.groq.com%2Fopenai%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"llama-3.1-70b-versatile\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]},{\\\"id\\\":\\\"1$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"World\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"delete the first sentence\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-0a540252-ed4c-4e00-92ab-3a7e3a4ef541\",\"object\":\"chat.completion.chunk\",\"created\":1737553151,\"model\":\"llama-3.1-70b-versatile\",\"system_fingerprint\":\"fp_3884478861\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jj73t1jwebn80rjxvmpnk9gj\"}}\n\ndata: {\"id\":\"chatcmpl-0a540252-ed4c-4e00-92ab-3a7e3a4ef541\",\"object\":\"chat.completion.chunk\",\"created\":1737553151,\"model\":\"llama-3.1-70b-versatile\",\"system_fingerprint\":\"fp_3884478861\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_zawr\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\": [{\\\"type\\\": \\\"delete\\\", \\\"id\\\": \\\"0$\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-0a540252-ed4c-4e00-92ab-3a7e3a4ef541\",\"object\":\"chat.completion.chunk\",\"created\":1737553151,\"model\":\"llama-3.1-70b-versatile\",\"system_fingerprint\":\"fp_3884478861\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jj73t1jwebn80rjxvmpnk9gj\",\"usage\":{\"queue_time\":0.019084500000000004,\"prompt_tokens\":1211,\"prompt_time\":0.20788568,\"completion_tokens\":20,\"completion_time\":0.095641187,\"total_tokens\":1231,\"total_time\":0.303526867}}}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/0e26800a37b69af36658b361f6995746 b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/0e26800a37b69af36658b361f6995746 new file mode 100644 index 000000000..7e0d65933 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/0e26800a37b69af36658b361f6995746 @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=groq&url=https%3A%2F%2Fapi.groq.com%2Fopenai%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"llama-3.1-70b-versatile\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello world\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"change first word to bold\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\"id\":\"chatcmpl-f4d8546a-d180-4b30-8dc6-876000ca093a\",\"object\":\"chat.completion\",\"created\":1737555035,\"model\":\"llama-3.1-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_6tm8\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"0$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" world\\\",\\\"styles\\\":{}}]}}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.02099451799999999,\"prompt_tokens\":1169,\"prompt_time\":0.140525386,\"completion_tokens\":57,\"completion_time\":0.207272727,\"total_tokens\":1226,\"total_time\":0.347798113},\"system_fingerprint\":\"fp_4e32347616\",\"x_groq\":{\"id\":\"req_01jj75khfsenzs8hkvfb7essdr\"}}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/11128af21efe76fbde89213c59a0669f b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/11128af21efe76fbde89213c59a0669f new file mode 100644 index 000000000..4dd761044 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/11128af21efe76fbde89213c59a0669f @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=groq&url=https%3A%2F%2Fapi.groq.com%2Fopenai%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"llama-3.1-70b-versatile\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"Add a sentence with `Test` before the first sentence\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\"id\":\"chatcmpl-2b90aa78-9a2d-47dc-a3a1-605fdc6f72b2\",\"object\":\"chat.completion\",\"created\":1737555036,\"model\":\"llama-3.1-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_snb8\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"0$\\\",\\\"position\\\":\\\"before\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Test\\\",\\\"styles\\\":{}}]}]}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.018204251000000005,\"prompt_tokens\":1174,\"prompt_time\":0.178545649,\"completion_tokens\":47,\"completion_time\":0.22421259,\"total_tokens\":1221,\"total_time\":0.402758239},\"system_fingerprint\":\"fp_c0cfa69934\",\"x_groq\":{\"id\":\"req_01jj75kjfge98bb794h0sjzywp\"}}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/1e0e6279de5a3c447a44f8288b8b9919 b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/1e0e6279de5a3c447a44f8288b8b9919 new file mode 100644 index 000000000..166ee6b7e --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/1e0e6279de5a3c447a44f8288b8b9919 @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=groq&url=https%3A%2F%2Fapi.groq.com%2Fopenai%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"llama-3.1-70b-versatile\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]},{\\\"id\\\":\\\"1$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"World\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"translate to german\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\"id\":\"chatcmpl-a79c08ec-8b22-4446-adc3-b24b32735de1\",\"object\":\"chat.completion\",\"created\":1737553148,\"model\":\"llama-3.1-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_gybg\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\": [{\\\"type\\\": \\\"add\\\", \\\"referenceId\\\": \\\"0$\\\", \\\"position\\\": \\\"after\\\", \\\"blocks\\\": [{\\\"type\\\": \\\"paragraph\\\", \\\"props\\\": {}, \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"text\\\": \\\"Hallo\\\", \\\"styles\\\": {}}, {\\\"type\\\": \\\"text\\\", \\\"text\\\": \\\" Welt\\\", \\\"styles\\\": {}}]}]}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.019880272000000004,\"prompt_tokens\":1210,\"prompt_time\":0.182947807,\"completion_tokens\":79,\"completion_time\":0.375436179,\"total_tokens\":1289,\"total_time\":0.558383986},\"system_fingerprint\":\"fp_3884478861\",\"x_groq\":{\"id\":\"req_01jj73sy4webpvx8p9569e38e4\"}}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/203a6debebf1d632f32b716966d78ce7 b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/203a6debebf1d632f32b716966d78ce7 new file mode 100644 index 000000000..8f35262d8 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/203a6debebf1d632f32b716966d78ce7 @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=groq&url=https%3A%2F%2Fapi.groq.com%2Fopenai%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"llama-3.1-70b-versatile\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]},{\\\"id\\\":\\\"1$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"World\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"translate existing document to german\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-18704d57-d799-4d6b-b1b5-3aef399fe9a0\",\"object\":\"chat.completion.chunk\",\"created\":1737555595,\"model\":\"llama-3.1-70b-versatile\",\"system_fingerprint\":\"fp_fcc3b74982\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jj764mjvevtr0m84ynxdsa8f\"}}\n\ndata: {\"id\":\"chatcmpl-18704d57-d799-4d6b-b1b5-3aef399fe9a0\",\"object\":\"chat.completion.chunk\",\"created\":1737555596,\"model\":\"llama-3.1-70b-versatile\",\"system_fingerprint\":\"fp_fcc3b74982\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_qmg9\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\": [{\\\"type\\\": \\\"update\\\", \\\"id\\\": \\\"0$\\\", \\\"block\\\": {\\\"type\\\": \\\"paragraph\\\", \\\"props\\\": {}, \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"text\\\": \\\"Hallo\\\", \\\"styles\\\": {}}]}}, {\\\"type\\\": \\\"update\\\", \\\"id\\\": \\\"1$\\\", \\\"block\\\": {\\\"type\\\": \\\"paragraph\\\", \\\"props\\\": {}, \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"text\\\": \\\"Welt\\\", \\\"styles\\\": {}}]}}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-18704d57-d799-4d6b-b1b5-3aef399fe9a0\",\"object\":\"chat.completion.chunk\",\"created\":1737555596,\"model\":\"llama-3.1-70b-versatile\",\"system_fingerprint\":\"fp_fcc3b74982\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jj764mjvevtr0m84ynxdsa8f\",\"usage\":{\"queue_time\":0.020508903999999994,\"prompt_tokens\":1212,\"prompt_time\":0.129099656,\"completion_tokens\":102,\"completion_time\":0.370909091,\"total_tokens\":1314,\"total_time\":0.500008747}}}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/27f272eef18d7ac55253b24347973330 b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/27f272eef18d7ac55253b24347973330 new file mode 100644 index 000000000..b31e1e823 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/27f272eef18d7ac55253b24347973330 @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=groq&url=https%3A%2F%2Fapi.groq.com%2Fopenai%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"llama-3.1-70b-versatile\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]},{\\\"id\\\":\\\"1$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"World\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"delete the first sentence\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\"id\":\"chatcmpl-dfd9e5f9-1e2e-4937-a56e-bddf302c0948\",\"object\":\"chat.completion\",\"created\":1737555036,\"model\":\"llama-3.1-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_v7g7\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\": [{\\\"type\\\": \\\"delete\\\", \\\"id\\\": \\\"0$\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.020879554999999994,\"prompt_tokens\":1211,\"prompt_time\":0.138402184,\"completion_tokens\":20,\"completion_time\":0.072727273,\"total_tokens\":1231,\"total_time\":0.211129457},\"system_fingerprint\":\"fp_4e32347616\",\"x_groq\":{\"id\":\"req_01jj75kj1xfkqa3qrypm4dtfyq\"}}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/2c1a2eb94534ffde26c6804e35dc5d52 b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/2c1a2eb94534ffde26c6804e35dc5d52 new file mode 100644 index 000000000..103637f6c --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/2c1a2eb94534ffde26c6804e35dc5d52 @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"Add a sentence with `Test` after the first sentence\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_ghFMcEJiWUlv3AIxVteO1ZPj\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"0\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Test\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDu35ZQcXt3BhdSn6QQqe6bdWbQ\",\"object\":\"chat.completion.chunk\",\"created\":1737553098,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/2d0700cac616061b6ed483dbdc307ea4 b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/2d0700cac616061b6ed483dbdc307ea4 new file mode 100644 index 000000000..0ab288382 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/2d0700cac616061b6ed483dbdc307ea4 @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello world\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"change first word to bold\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\n \"id\": \"chatcmpl-AsVVsQGjIcZ1s3fNaSRYqxlzqxD7k\",\n \"object\": \"chat.completion\",\n \"created\": 1737554212,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_4OPTm1usBKBeWNe0wDtbnVra\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"0$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" world\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1043,\n \"completion_tokens\": 53,\n \"total_tokens\": 1096,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50cad350e4\"\n}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/431041e6fa21187627654528ffcae7b7 b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/431041e6fa21187627654528ffcae7b7 new file mode 100644 index 000000000..4e174aea7 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/431041e6fa21187627654528ffcae7b7 @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=groq&url=https%3A%2F%2Fapi.groq.com%2Fopenai%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"llama-3.1-70b-versatile\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello world\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"change first word to bold\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-b9f02b3c-d4d2-4679-ad54-8f4619e4b5dd\",\"object\":\"chat.completion.chunk\",\"created\":1737553150,\"model\":\"llama-3.1-70b-versatile\",\"system_fingerprint\":\"fp_3884478861\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jj73t0ecebnaw3d5txpmts5r\"}}\n\ndata: {\"id\":\"chatcmpl-b9f02b3c-d4d2-4679-ad54-8f4619e4b5dd\",\"object\":\"chat.completion.chunk\",\"created\":1737553150,\"model\":\"llama-3.1-70b-versatile\",\"system_fingerprint\":\"fp_3884478861\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_c5yh\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"0$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" world\\\",\\\"styles\\\":{}}]}}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-b9f02b3c-d4d2-4679-ad54-8f4619e4b5dd\",\"object\":\"chat.completion.chunk\",\"created\":1737553150,\"model\":\"llama-3.1-70b-versatile\",\"system_fingerprint\":\"fp_3884478861\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jj73t0ecebnaw3d5txpmts5r\",\"usage\":{\"queue_time\":0.019515645999999998,\"prompt_tokens\":1169,\"prompt_time\":0.213381314,\"completion_tokens\":57,\"completion_time\":0.278939374,\"total_tokens\":1226,\"total_time\":0.492320688}}}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/47d520322ec82bede7b3b7232167c419 b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/47d520322ec82bede7b3b7232167c419 new file mode 100644 index 000000000..4e8673a29 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/47d520322ec82bede7b3b7232167c419 @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=groq&url=https%3A%2F%2Fapi.groq.com%2Fopenai%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"llama-3.1-70b-versatile\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]},{\\\"id\\\":\\\"1$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"World\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"translate to german\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-f28aee60-3ba0-4f71-b5ae-23b412458245\",\"object\":\"chat.completion.chunk\",\"created\":1737553148,\"model\":\"llama-3.1-70b-versatile\",\"system_fingerprint\":\"fp_4e32347616\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jj73sz0tfgwvwxdefenxgckr\"}}\n\ndata: {\"id\":\"chatcmpl-f28aee60-3ba0-4f71-b5ae-23b412458245\",\"object\":\"chat.completion.chunk\",\"created\":1737553149,\"model\":\"llama-3.1-70b-versatile\",\"system_fingerprint\":\"fp_4e32347616\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_pb76\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\": [{\\\"type\\\": \\\"add\\\", \\\"referenceId\\\": \\\"0$\\\", \\\"position\\\": \\\"after\\\", \\\"blocks\\\": [{\\\"type\\\": \\\"paragraph\\\", \\\"props\\\": {}, \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"text\\\": \\\"Hallo\\\", \\\"styles\\\": {}}, {\\\"type\\\": \\\"text\\\", \\\"text\\\": \\\" Welt\\\", \\\"styles\\\": {}}]}]}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-f28aee60-3ba0-4f71-b5ae-23b412458245\",\"object\":\"chat.completion.chunk\",\"created\":1737553149,\"model\":\"llama-3.1-70b-versatile\",\"system_fingerprint\":\"fp_4e32347616\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jj73sz0tfgwvwxdefenxgckr\",\"usage\":{\"queue_time\":0.018373646999999993,\"prompt_tokens\":1210,\"prompt_time\":0.146183367,\"completion_tokens\":79,\"completion_time\":0.287272727,\"total_tokens\":1289,\"total_time\":0.433456094}}}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/4d30afb21df5f0aca94c1ceea850603e b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/4d30afb21df5f0aca94c1ceea850603e new file mode 100644 index 000000000..9a23974b5 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/4d30afb21df5f0aca94c1ceea850603e @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]},{\\\"id\\\":\\\"1$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"World\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"change first paragraph to bold\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_W16rhFdfdqiXEE7r8PZ7VGjd\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"0\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"true\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDniello0CYKvVp7i8MrkRFmAFD\",\"object\":\"chat.completion.chunk\",\"created\":1737553091,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/4f51c14e5cb15971ee49130192a9e644 b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/4f51c14e5cb15971ee49130192a9e644 new file mode 100644 index 000000000..79aedd684 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/4f51c14e5cb15971ee49130192a9e644 @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=groq&url=https%3A%2F%2Fapi.groq.com%2Fopenai%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"llama-3.1-70b-versatile\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"Add a sentence with `Test` before the first sentence\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-d3ba6c37-443c-4a2f-bc25-3ca2c9011bed\",\"object\":\"chat.completion.chunk\",\"created\":1737559105,\"model\":\"llama-3.1-70b-versatile\",\"system_fingerprint\":\"fp_4e32347616\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jj79fqxkfm1tg84wea4qkqve\"}}\n\ndata: {\"id\":\"chatcmpl-d3ba6c37-443c-4a2f-bc25-3ca2c9011bed\",\"object\":\"chat.completion.chunk\",\"created\":1737559105,\"model\":\"llama-3.1-70b-versatile\",\"system_fingerprint\":\"fp_4e32347616\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_a9qw\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"0$\\\",\\\"position\\\":\\\"before\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Test\\\",\\\"styles\\\":{}}]}]}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-d3ba6c37-443c-4a2f-bc25-3ca2c9011bed\",\"object\":\"chat.completion.chunk\",\"created\":1737559105,\"model\":\"llama-3.1-70b-versatile\",\"system_fingerprint\":\"fp_4e32347616\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jj79fqxkfm1tg84wea4qkqve\",\"usage\":{\"queue_time\":0.024902311999999982,\"prompt_tokens\":1174,\"prompt_time\":0.162396897,\"completion_tokens\":47,\"completion_time\":0.170909091,\"total_tokens\":1221,\"total_time\":0.333305988}}}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/52795d4b4d0e2e6051c4ef7947271b91 b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/52795d4b4d0e2e6051c4ef7947271b91 new file mode 100644 index 000000000..08359ddc7 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/52795d4b4d0e2e6051c4ef7947271b91 @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=groq&url=https%3A%2F%2Fapi.groq.com%2Fopenai%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"llama-3.1-70b-versatile\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"Add a paragraph with `Test` after the first paragraph\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\"id\":\"chatcmpl-1adb09e1-89a2-479c-9609-9a0c0bde5fed\",\"object\":\"chat.completion\",\"created\":1737712044,\"model\":\"llama-3.1-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_vkyz\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"0$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Test\\\",\\\"styles\\\":{}}]}]}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.017569098000000005,\"prompt_tokens\":1174,\"prompt_time\":0.201778435,\"completion_tokens\":47,\"completion_time\":0.229908729,\"total_tokens\":1221,\"total_time\":0.431687164},\"system_fingerprint\":\"fp_c0cfa69934\",\"x_groq\":{\"id\":\"req_01jjbvb22bexe85qxm5ebx0jz9\"}}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/5a37b028050b9477a7885aab32e3f037 b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/5a37b028050b9477a7885aab32e3f037 new file mode 100644 index 000000000..ba94113d7 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/5a37b028050b9477a7885aab32e3f037 @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello world\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"change first word to bold\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_R7xVRitKpCmxp3C13VUkNr38\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"0\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"true\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}},\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDpQ0Z1tr5WseLrVd1jSJuQZywE\",\"object\":\"chat.completion.chunk\",\"created\":1737553093,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/6e42a4578da0eeb5799f72e2b3c3416c b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/6e42a4578da0eeb5799f72e2b3c3416c new file mode 100644 index 000000000..c1c84fb53 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/6e42a4578da0eeb5799f72e2b3c3416c @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"Add a paragraph with `Test` after the first paragraph\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\n \"id\": \"chatcmpl-AtAZWEJTJFV5jRJXsIOmXh1jtvLlz\",\n \"object\": \"chat.completion\",\n \"created\": 1737712042,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_oFHMp3ioedmC5ywFsOjjQh9M\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"0$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Test\\\",\\\"styles\\\":{}}]}]}]}\"\n }\n }\n ],\n \"refusal\": null\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1048,\n \"completion_tokens\": 44,\n \"total_tokens\": 1092,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50cad350e4\"\n}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/7584db7b7d4da32a9c74081e715d70c5 b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/7584db7b7d4da32a9c74081e715d70c5 new file mode 100644 index 000000000..e827bad40 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/7584db7b7d4da32a9c74081e715d70c5 @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]},{\\\"id\\\":\\\"1$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"World\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"change first paragraph to bold\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\n \"id\": \"chatcmpl-AsVVqaqQufT3bIP045GMwh6tl6ouj\",\n \"object\": \"chat.completion\",\n \"created\": 1737554210,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_Agc9Osj77KsizJ8GcouDLTxT\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"0$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{\\\"bold\\\":true}}]}}]}\"\n }\n }\n ],\n \"refusal\": null\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1088,\n \"completion_tokens\": 40,\n \"total_tokens\": 1128,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1024,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50cad350e4\"\n}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/7afa14ab106d7e67fc24d15ed175e9b6 b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/7afa14ab106d7e67fc24d15ed175e9b6 new file mode 100644 index 000000000..da1ce1c9f --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/7afa14ab106d7e67fc24d15ed175e9b6 @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]},{\\\"id\\\":\\\"1$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"World\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"translate to german\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\n \"id\": \"chatcmpl-AsUnUPeDyEisT6hBcg4rQWzILYikM\",\n \"object\": \"chat.completion\",\n \"created\": 1737551460,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_6EytTD3HwfBla7drsZCSpV7T\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"0$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hallo\\\",\\\"styles\\\":{}}]}},{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Welt\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1086,\n \"completion_tokens\": 71,\n \"total_tokens\": 1157,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1024,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50cad350e4\"\n}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/91d6d6a126314ab9ad9feb149b77c5e3 b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/91d6d6a126314ab9ad9feb149b77c5e3 new file mode 100644 index 000000000..facfdc054 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/91d6d6a126314ab9ad9feb149b77c5e3 @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=groq&url=https%3A%2F%2Fapi.groq.com%2Fopenai%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"llama-3.1-70b-versatile\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]},{\\\"id\\\":\\\"1$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"World\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"change first paragraph to bold\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\"id\":\"chatcmpl-f9585198-32a4-4df1-b192-9960fba39602\",\"object\":\"chat.completion\",\"created\":1737555035,\"model\":\"llama-3.1-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_n3yv\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\": [{\\\"type\\\": \\\"update\\\", \\\"id\\\": \\\"0$\\\", \\\"block\\\": {\\\"type\\\": \\\"paragraph\\\", \\\"props\\\": {}, \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"text\\\": \\\"Hello\\\", \\\"styles\\\": {\\\"bold\\\": true}}]}}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.019144718000000005,\"prompt_tokens\":1212,\"prompt_time\":0.146790751,\"completion_tokens\":57,\"completion_time\":0.207272727,\"total_tokens\":1269,\"total_time\":0.354063478},\"system_fingerprint\":\"fp_4e32347616\",\"x_groq\":{\"id\":\"req_01jj75kgx7fkq8qkf6qnhtrjzq\"}}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/96ad7f226f0971de3c2c6a3f8ec9ae1e b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/96ad7f226f0971de3c2c6a3f8ec9ae1e new file mode 100644 index 000000000..5e9eda0d9 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/96ad7f226f0971de3c2c6a3f8ec9ae1e @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"Add a sentence with `Test` after the first sentence\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\n \"id\": \"chatcmpl-AsVVyPcckHSY1LZDiSSuw7WVKHNjj\",\n \"object\": \"chat.completion\",\n \"created\": 1737554218,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_8fCYXW0GvksyPe8GHpRkuELJ\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"0$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Test\\\",\\\"styles\\\":{}}]}]}]}\"\n }\n }\n ],\n \"refusal\": null\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1048,\n \"completion_tokens\": 44,\n \"total_tokens\": 1092,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50cad350e4\"\n}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/9ec956a8147434e682e5177213cffa68 b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/9ec956a8147434e682e5177213cffa68 new file mode 100644 index 000000000..4e03d877f --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/9ec956a8147434e682e5177213cffa68 @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]},{\\\"id\\\":\\\"1$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"World\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"delete the first sentence\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-AsVDr0nEcPErVbxKOQ9ES3ySX7iT2\",\"object\":\"chat.completion.chunk\",\"created\":1737553095,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_BLTofL3mRtWVgGkeeAGjgTzx\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDr0nEcPErVbxKOQ9ES3ySX7iT2\",\"object\":\"chat.completion.chunk\",\"created\":1737553095,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDr0nEcPErVbxKOQ9ES3ySX7iT2\",\"object\":\"chat.completion.chunk\",\"created\":1737553095,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDr0nEcPErVbxKOQ9ES3ySX7iT2\",\"object\":\"chat.completion.chunk\",\"created\":1737553095,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDr0nEcPErVbxKOQ9ES3ySX7iT2\",\"object\":\"chat.completion.chunk\",\"created\":1737553095,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDr0nEcPErVbxKOQ9ES3ySX7iT2\",\"object\":\"chat.completion.chunk\",\"created\":1737553095,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDr0nEcPErVbxKOQ9ES3ySX7iT2\",\"object\":\"chat.completion.chunk\",\"created\":1737553095,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDr0nEcPErVbxKOQ9ES3ySX7iT2\",\"object\":\"chat.completion.chunk\",\"created\":1737553095,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"delete\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDr0nEcPErVbxKOQ9ES3ySX7iT2\",\"object\":\"chat.completion.chunk\",\"created\":1737553095,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDr0nEcPErVbxKOQ9ES3ySX7iT2\",\"object\":\"chat.completion.chunk\",\"created\":1737553095,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDr0nEcPErVbxKOQ9ES3ySX7iT2\",\"object\":\"chat.completion.chunk\",\"created\":1737553095,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDr0nEcPErVbxKOQ9ES3ySX7iT2\",\"object\":\"chat.completion.chunk\",\"created\":1737553095,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"0\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDr0nEcPErVbxKOQ9ES3ySX7iT2\",\"object\":\"chat.completion.chunk\",\"created\":1737553095,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDr0nEcPErVbxKOQ9ES3ySX7iT2\",\"object\":\"chat.completion.chunk\",\"created\":1737553095,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDr0nEcPErVbxKOQ9ES3ySX7iT2\",\"object\":\"chat.completion.chunk\",\"created\":1737553095,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDr0nEcPErVbxKOQ9ES3ySX7iT2\",\"object\":\"chat.completion.chunk\",\"created\":1737553095,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/9f72dfaa5a90c047889b2508aa903375 b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/9f72dfaa5a90c047889b2508aa903375 new file mode 100644 index 000000000..c33388e54 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/9f72dfaa5a90c047889b2508aa903375 @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=groq&url=https%3A%2F%2Fapi.groq.com%2Fopenai%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"llama-3.1-70b-versatile\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"Add a sentence with `Test` after the first sentence\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-9b620f7c-088d-448e-80ff-c2c8a0989a9a\",\"object\":\"chat.completion.chunk\",\"created\":1737553157,\"model\":\"llama-3.1-70b-versatile\",\"system_fingerprint\":\"fp_c0cfa69934\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jj73t71bfy1vkshr2hbjwvzb\"}}\n\ndata: {\"id\":\"chatcmpl-9b620f7c-088d-448e-80ff-c2c8a0989a9a\",\"object\":\"chat.completion.chunk\",\"created\":1737553157,\"model\":\"llama-3.1-70b-versatile\",\"system_fingerprint\":\"fp_c0cfa69934\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_2pjm\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"0$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Test\\\",\\\"styles\\\":{}}]}]}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-9b620f7c-088d-448e-80ff-c2c8a0989a9a\",\"object\":\"chat.completion.chunk\",\"created\":1737553157,\"model\":\"llama-3.1-70b-versatile\",\"system_fingerprint\":\"fp_c0cfa69934\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jj73t71bfy1vkshr2hbjwvzb\",\"usage\":{\"queue_time\":0.019056412999999994,\"prompt_tokens\":1174,\"prompt_time\":0.188981367,\"completion_tokens\":47,\"completion_time\":0.226192838,\"total_tokens\":1221,\"total_time\":0.415174205}}}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/ae22c675b1a16a6f10eda6b97349613e b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/ae22c675b1a16a6f10eda6b97349613e new file mode 100644 index 000000000..26fcde83a --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/ae22c675b1a16a6f10eda6b97349613e @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]},{\\\"id\\\":\\\"1$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"World\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"translate existing document to german\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\n \"id\": \"chatcmpl-AsVsAiNygp1wMIjVMDlMLPO6wNlc1\",\n \"object\": \"chat.completion\",\n \"created\": 1737555594,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_CybyI5920hytQrUwS12TSG0F\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"0$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hallo\\\",\\\"styles\\\":{}}]}},{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Welt\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1088,\n \"completion_tokens\": 71,\n \"total_tokens\": 1159,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1024,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50cad350e4\"\n}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/afe1de9d8d65d7cac3e95de0e7c59f30 b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/afe1de9d8d65d7cac3e95de0e7c59f30 new file mode 100644 index 000000000..7528cdc8a --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/afe1de9d8d65d7cac3e95de0e7c59f30 @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=groq&url=https%3A%2F%2Fapi.groq.com%2Fopenai%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"llama-3.1-70b-versatile\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]},{\\\"id\\\":\\\"1$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"World\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"translate existing document to german\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\"id\":\"chatcmpl-b9ec3638-d598-4a9d-a7f5-6c2108287299\",\"object\":\"chat.completion\",\"created\":1737555565,\"model\":\"llama-3.1-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_bvez\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\": [{\\\"type\\\": \\\"update\\\", \\\"id\\\": \\\"0$\\\", \\\"block\\\": {\\\"type\\\": \\\"paragraph\\\", \\\"props\\\": {}, \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"text\\\": \\\"Hallo\\\", \\\"styles\\\": {}}]}}, {\\\"type\\\": \\\"update\\\", \\\"id\\\": \\\"1$\\\", \\\"block\\\": {\\\"type\\\": \\\"paragraph\\\", \\\"props\\\": {}, \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"text\\\": \\\"Welt\\\", \\\"styles\\\": {}}]}}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.25243922500000004,\"prompt_tokens\":1212,\"prompt_time\":0.125404473,\"completion_tokens\":102,\"completion_time\":0.370909091,\"total_tokens\":1314,\"total_time\":0.496313564},\"system_fingerprint\":\"fp_7b42aeb9fa\",\"x_groq\":{\"id\":\"req_01jj763q3bes9av20gvfn41230\"}}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/c2efed63886fe032831e9115d3c422ec b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/c2efed63886fe032831e9115d3c422ec new file mode 100644 index 000000000..1afd93d31 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/c2efed63886fe032831e9115d3c422ec @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]},{\\\"id\\\":\\\"1$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"World\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"translate existing document to german\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_1J7uL9pjnBzTYPRDGmEsPBXY\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"0\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"W\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"elt\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVs8KCRKJkyHz6KSKlsk0bxvNuae\",\"object\":\"chat.completion.chunk\",\"created\":1737555592,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/d080bc00db79e30a4997921c53fb4f8d b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/d080bc00db79e30a4997921c53fb4f8d new file mode 100644 index 000000000..7179ebb4d --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/d080bc00db79e30a4997921c53fb4f8d @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=groq&url=https%3A%2F%2Fapi.groq.com%2Fopenai%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"llama-3.1-70b-versatile\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"Add a sentence with `Test` after the first sentence\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\"id\":\"chatcmpl-544ca279-3756-4183-afde-0e904065e14d\",\"object\":\"chat.completion\",\"created\":1737555037,\"model\":\"llama-3.1-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_vsb5\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"0$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Test\\\",\\\"styles\\\":{}}]}]}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.244792167,\"prompt_tokens\":1174,\"prompt_time\":0.1243342,\"completion_tokens\":47,\"completion_time\":0.170909091,\"total_tokens\":1221,\"total_time\":0.295243291},\"system_fingerprint\":\"fp_4196e754db\",\"x_groq\":{\"id\":\"req_01jj75kk3sfkrtszvjznhpj43z\"}}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/d7f5200e05d0a00c0c15de6f9e00c728 b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/d7f5200e05d0a00c0c15de6f9e00c728 new file mode 100644 index 000000000..dcf90bd23 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/d7f5200e05d0a00c0c15de6f9e00c728 @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]},{\\\"id\\\":\\\"1$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"World\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"delete the first sentence\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\n \"id\": \"chatcmpl-AsVVuOwN4Ps4251bZxCasmP7CeZaB\",\n \"object\": \"chat.completion\",\n \"created\": 1737554214,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_7i8GKdWknlaF9f3xh3J1Y57M\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"delete\\\",\\\"id\\\":\\\"0$\\\"}]}\"\n }\n }\n ],\n \"refusal\": null\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1087,\n \"completion_tokens\": 15,\n \"total_tokens\": 1102,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1024,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50cad350e4\"\n}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/e67835666c90ec8f1943cd6e80d5710c b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/e67835666c90ec8f1943cd6e80d5710c new file mode 100644 index 000000000..215aec7b4 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/e67835666c90ec8f1943cd6e80d5710c @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"Add a sentence with `Test` before the first sentence\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_lFfI3c2cPXddlh79WBj0gUTS\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"0\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"before\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Test\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsVDsIETbc3SnQji6FkJS4lVZ0qEC\",\"object\":\"chat.completion.chunk\",\"created\":1737553096,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/efed3b015f297a43156a53ecd18194a4 b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/efed3b015f297a43156a53ecd18194a4 new file mode 100644 index 000000000..83fcaf389 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/efed3b015f297a43156a53ecd18194a4 @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"Add a sentence with `Test` before the first sentence\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\n \"id\": \"chatcmpl-AsVVwHA6beMLGbTuz9tzdcpFUgEPV\",\n \"object\": \"chat.completion\",\n \"created\": 1737554216,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_4DfZomCxoGvZTUlbWPqY0RnX\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"0$\\\",\\\"position\\\":\\\"before\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Test\\\",\\\"styles\\\":{}}]}]}]}\"\n }\n }\n ],\n \"refusal\": null\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1048,\n \"completion_tokens\": 44,\n \"total_tokens\": 1092,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50cad350e4\"\n}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/f3711a0034604c7c9b6b572e96ac793b b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/f3711a0034604c7c9b6b572e96ac793b new file mode 100644 index 000000000..5d9d5a436 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/f3711a0034604c7c9b6b572e96ac793b @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=groq&url=https%3A%2F%2Fapi.groq.com%2Fopenai%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"llama-3.1-70b-versatile\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]},{\\\"id\\\":\\\"1$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"World\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"change first paragraph to bold\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-89cb71dc-4f56-4a7e-9ee0-2913f696ffca\",\"object\":\"chat.completion.chunk\",\"created\":1737553149,\"model\":\"llama-3.1-70b-versatile\",\"system_fingerprint\":\"fp_3884478861\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jj73szp6fdga41f0qtmfthtw\"}}\n\ndata: {\"id\":\"chatcmpl-89cb71dc-4f56-4a7e-9ee0-2913f696ffca\",\"object\":\"chat.completion.chunk\",\"created\":1737553150,\"model\":\"llama-3.1-70b-versatile\",\"system_fingerprint\":\"fp_3884478861\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_zptz\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\": [{\\\"type\\\": \\\"update\\\", \\\"id\\\": \\\"0$\\\", \\\"block\\\": {\\\"type\\\": \\\"paragraph\\\", \\\"props\\\": {}, \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"text\\\": \\\"Hello\\\", \\\"styles\\\": {\\\"bold\\\": true}}]}}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-89cb71dc-4f56-4a7e-9ee0-2913f696ffca\",\"object\":\"chat.completion.chunk\",\"created\":1737553150,\"model\":\"llama-3.1-70b-versatile\",\"system_fingerprint\":\"fp_3884478861\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jj73szp6fdga41f0qtmfthtw\",\"usage\":{\"queue_time\":0.01992105700000002,\"prompt_tokens\":1212,\"prompt_time\":0.220735945,\"completion_tokens\":57,\"completion_time\":0.271030586,\"total_tokens\":1269,\"total_time\":0.491766531}}}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/f3d1047b93c5879344fd813a9d1d64d1 b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/f3d1047b93c5879344fd813a9d1d64d1 new file mode 100644 index 000000000..0fce73020 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/f3d1047b93c5879344fd813a9d1d64d1 @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=groq&url=https%3A%2F%2Fapi.groq.com%2Fopenai%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"llama-3.1-70b-versatile\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"Add a paragraph with `Test` after the first paragraph\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-9782aa75-3369-4bfa-90aa-146780655095\",\"object\":\"chat.completion.chunk\",\"created\":1737712043,\"model\":\"llama-3.1-70b-versatile\",\"system_fingerprint\":\"fp_c0cfa69934\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jjbvb1adfs6t08gew8nxfj23\"}}\n\ndata: {\"id\":\"chatcmpl-9782aa75-3369-4bfa-90aa-146780655095\",\"object\":\"chat.completion.chunk\",\"created\":1737712043,\"model\":\"llama-3.1-70b-versatile\",\"system_fingerprint\":\"fp_c0cfa69934\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_ds70\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"0$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Test\\\",\\\"styles\\\":{}}]}]}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-9782aa75-3369-4bfa-90aa-146780655095\",\"object\":\"chat.completion.chunk\",\"created\":1737712043,\"model\":\"llama-3.1-70b-versatile\",\"system_fingerprint\":\"fp_c0cfa69934\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jjbvb1adfs6t08gew8nxfj23\",\"usage\":{\"queue_time\":0.02005115199999999,\"prompt_tokens\":1174,\"prompt_time\":0.201611276,\"completion_tokens\":47,\"completion_time\":0.236941665,\"total_tokens\":1221,\"total_time\":0.438552941}}}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/fbc3cc8447f24dcd35be0914f99f85dc b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/fbc3cc8447f24dcd35be0914f99f85dc new file mode 100644 index 000000000..6ea52d3c4 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/fbc3cc8447f24dcd35be0914f99f85dc @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"Add a paragraph with `Test` after the first paragraph\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_AYEtaxgDod0peHmVLsQ1aukj\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"0\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Test\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AtAZU4ldGUBBSetNWmwfgyEz616xu\",\"object\":\"chat.completion.chunk\",\"created\":1737712040,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/fee3e9404cd9e4d012483d52c6058da8 b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/fee3e9404cd9e4d012483d52c6058da8 new file mode 100644 index 000000000..d30d3a203 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__msw_snapshots__/default/POST/https:/localhost:3000/ai/fee3e9404cd9e4d012483d52c6058da8 @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document. Make sure to follow the json schema provided. This is the document:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"0$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]},{\\\"id\\\":\\\"1$\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"World\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}]\"},{\"role\":\"system\",\"content\":\"This would be an example block: \\n{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" and italic text\\\",\\\"styles\\\":{\\\"italic\\\":true}}]}\"},{\"role\":\"user\",\"content\":\"translate to german\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"Whether new block(s) should be inserterd before or after `referenceId`\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\",\"enum\":[\"text\",\"c\",\"cpp\",\"css\",\"glsl\",\"graphql\",\"haml\",\"html\",\"java\",\"javascript\",\"json\",\"jsonc\",\"jsonl\",\"jsx\",\"julia\",\"less\",\"markdown\",\"mdx\",\"php\",\"postcss\",\"pug\",\"python\",\"r\",\"regexp\",\"sass\",\"scss\",\"shellscript\",\"sql\",\"svelte\",\"typescript\",\"vue\",\"vue-html\",\"wasm\",\"wgsl\",\"xml\",\"yaml\",\"tsx\",\"haskell\",\"csharp\",\"latex\",\"lua\",\"mermaid\",\"ruby\",\"rust\",\"scala\",\"swift\",\"kotlin\",\"objective-c\"]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_jo7KLHojQC7vQ2v4ZpOiGGdd\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"0\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"W\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"elt\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-AsV3wdiuDZPTuRcTyYYCM8jAbmLw0\",\"object\":\"chat.completion.chunk\",\"created\":1737552480,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_50cad350e4\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Test AI operations > Delete > deletes a paragraph.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Test AI operations > Delete > deletes a paragraph.json new file mode 100644 index 000000000..5ebf605ce --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Test AI operations > Delete > deletes a paragraph.json @@ -0,0 +1,19 @@ +[ + { + "children": [], + "content": [ + { + "styles": {}, + "text": "World", + "type": "text", + }, + ], + "id": "1", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, +] \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Test AI operations > Insert > inserts a paragraph at end.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Test AI operations > Insert > inserts a paragraph at end.json new file mode 100644 index 000000000..9b06f9fa1 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Test AI operations > Insert > inserts a paragraph at end.json @@ -0,0 +1,36 @@ +[ + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Hello", + "type": "text", + }, + ], + "id": "0", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Test", + "type": "text", + }, + ], + "id": "1", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, +] \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Test AI operations > Insert > inserts a paragraph at start.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Test AI operations > Insert > inserts a paragraph at start.json new file mode 100644 index 000000000..0975b7aeb --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Test AI operations > Insert > inserts a paragraph at start.json @@ -0,0 +1,36 @@ +[ + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Test", + "type": "text", + }, + ], + "id": "1", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Hello", + "type": "text", + }, + ], + "id": "0", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, +] \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Test AI operations > Update > changes simple formatting (paragraph).json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Test AI operations > Update > changes simple formatting (paragraph).json new file mode 100644 index 000000000..04d724d22 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Test AI operations > Update > changes simple formatting (paragraph).json @@ -0,0 +1,38 @@ +[ + { + "children": [], + "content": [ + { + "styles": { + "bold": true, + }, + "text": "Hello", + "type": "text", + }, + ], + "id": "0", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "World", + "type": "text", + }, + ], + "id": "1", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, +] \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Test AI operations > Update > changes simple formatting (word).json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Test AI operations > Update > changes simple formatting (word).json new file mode 100644 index 000000000..5ef0183e2 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Test AI operations > Update > changes simple formatting (word).json @@ -0,0 +1,26 @@ +[ + { + "children": [], + "content": [ + { + "styles": { + "bold": true, + }, + "text": "Hello", + "type": "text", + }, + { + "styles": {}, + "text": " world", + "type": "text", + }, + ], + "id": "0", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, +] \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Test AI operations > Update > translates simple paragraphs.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Test AI operations > Update > translates simple paragraphs.json new file mode 100644 index 000000000..2bbdb2766 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Test AI operations > Update > translates simple paragraphs.json @@ -0,0 +1,36 @@ +[ + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Hallo", + "type": "text", + }, + ], + "id": "0", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Welt", + "type": "text", + }, + ], + "id": "1", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, +] \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/json.test.ts b/packages/xl-ai/src/api/formats/json/json.test.ts new file mode 100644 index 000000000..120b29fb6 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/json.test.ts @@ -0,0 +1,220 @@ +import { afterEach, beforeAll, describe, expect, it } from "vitest"; + +import { BlockNoteEditor, PartialBlock } from "@blocknote/core"; + +import { createGroq } from "@ai-sdk/groq"; +import { createOpenAI } from "@ai-sdk/openai"; +import { snapshot } from "msw-snapshot"; +import { setupServer } from "msw/node"; +import path from "path"; +import { createBlockNoteAIClient } from "../../blocknoteAIClient/client.js"; +import { callLLM } from "./json.js"; + +function createEditor(initialContent: PartialBlock[]) { + return BlockNoteEditor.create({ + initialContent, + }); +} + +beforeAll(() => { + const server = setupServer( + snapshot({ + updateSnapshots: "missing", + // ignoreSnapshots: true, + basePath: path.resolve(__dirname, "__msw_snapshots__"), + // onFetchFromSnapshot(info, snapshot) { + // // console.log("onFetchFromSnapshot", info, snapshot); + // }, + // onFetchFromServer(info, snapshot) { + // // console.log("onFetchFromServer", info, snapshot); + // }, + }) + ); + server.listen(); +}); + +const client = createBlockNoteAIClient({ + baseURL: "https://localhost:3000/ai", + apiKey: "PLACEHOLDER", +}); + +const groq = createGroq({ + ...client.getProviderSettings("groq"), +})("llama-3.1-70b-versatile"); + +const openai = createOpenAI({ + ...client.getProviderSettings("openai"), +})("gpt-4o-2024-08-06", {}); + +function matchFileSnapshot(data: any, postFix = "") { + expect(data).toMatchFileSnapshot( + path.resolve( + __dirname, + "__snapshots__", + path.basename(__filename), + expect.getState().currentTestName! + + (postFix ? `_${postFix}` : "") + + ".json" + ) + ); +} + +describe.each([ + { + model: openai, + stream: true, + }, + { + model: openai, + stream: false, + }, + { + model: groq, + stream: true, + }, + { + model: groq, + stream: false, + }, +])("Test AI operations", (params) => { + afterEach(() => { + delete (window as Window & { __TEST_OPTIONS?: any }).__TEST_OPTIONS; + }); + + describe("Update", () => { + it("translates simple paragraphs", async () => { + const editor = createEditor([ + { + type: "paragraph", + content: "Hello", + }, + { + type: "paragraph", + content: "World", + }, + ]); + + await callLLM(editor, { + stream: params.stream, + model: params.model, + prompt: "translate existing document to german", + }); + + // Add assertions here to check if the document was correctly translated + // For example: + // pass test name + + matchFileSnapshot(editor.document); + + // expect(await response.object).toMatchSnapshot(); + }); + + it("changes simple formatting (paragraph)", async () => { + const editor = createEditor([ + { + type: "paragraph", + content: "Hello", + }, + { + type: "paragraph", + content: "World", + }, + ]); + + await callLLM(editor, { + stream: params.stream, + prompt: "change first paragraph to bold", + model: params.model, + }); + + // Add assertions here to check if the document was correctly translated + // For example: + matchFileSnapshot(editor.document); + + // expect(await response.object).toMatchSnapshot(); + }); + + it("changes simple formatting (word)", async () => { + const editor = createEditor([ + { + type: "paragraph", + content: "Hello world", + }, + ]); + + await callLLM(editor, { + stream: params.stream, + prompt: "change first word to bold", + model: params.model, + }); + + // Add assertions here to check if the document was correctly translated + // For example: + matchFileSnapshot(editor.document); + + // expect(await response.object).toMatchSnapshot(); + }); + }); + + describe("Delete", () => { + it("deletes a paragraph", async () => { + const editor = createEditor([ + { + type: "paragraph", + content: "Hello", + }, + { + type: "paragraph", + content: "World", + }, + ]); + await callLLM(editor, { + stream: params.stream, + prompt: "delete the first sentence", + model: params.model, + }); + + matchFileSnapshot(editor.document); + + // expect(await response.object).toMatchSnapshot(); + }); + }); + + describe("Insert", () => { + it("inserts a paragraph at start", async () => { + const editor = createEditor([ + { + type: "paragraph", + content: "Hello", + }, + ]); + await callLLM(editor, { + prompt: "Add a sentence with `Test` before the first sentence", + model: params.model, + stream: params.stream, + }); + + matchFileSnapshot(editor.document); + + // expect(await response.object).toMatchSnapshot(); + }); + + it("inserts a paragraph at end", async () => { + const editor = createEditor([ + { + type: "paragraph", + content: "Hello", + }, + ]); + await callLLM(editor, { + stream: params.stream, + prompt: "Add a paragraph with `Test` after the first paragraph", + model: params.model, + }); + + matchFileSnapshot(editor.document); + + // expect(await response.object).toMatchSnapshot(); + }); + }); +}); diff --git a/packages/xl-ai/src/api/formats/json/json.ts b/packages/xl-ai/src/api/formats/json/json.ts new file mode 100644 index 000000000..e250d024c --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/json.ts @@ -0,0 +1,126 @@ +import { BlockNoteEditor } from "@blocknote/core"; +import { + CoreMessage, + LanguageModel, + generateObject, + jsonSchema, + streamObject, +} from "ai"; + +import { + executeAIOperation, + executeAIOperationStream, +} from "../../executor/executor.js"; +import { addFunction } from "../../functions/add.js"; +import { deleteFunction } from "../../functions/delete.js"; +import { AIFunction } from "../../functions/index.js"; +import { updateFunction } from "../../functions/update.js"; +import type { PromptOrMessages } from "../../index.js"; +import { + promptManipulateDocumentUseJSONSchema, + promptManipulateSelectionJSONSchema, +} from "../../prompts/jsonSchemaPrompts.js"; +import { createOperationsArraySchema } from "../../schema/operations.js"; +import { blockNoteSchemaToJSONSchema } from "../../schema/schemaToJSONSchema.js"; + +type BasicLLMRequestOptions = { + model: LanguageModel; + functions: AIFunction[]; +} & PromptOrMessages; + +type StreamLLMRequestOptions = { + stream: true; + _streamObjectOptions?: Partial>[0]>; +}; + +type NoStreamLLMRequestOptions = { + stream: false; + _generateObjectOptions?: Partial>[0]>; +}; + +type CallLLMOptions = BasicLLMRequestOptions & + (StreamLLMRequestOptions | NoStreamLLMRequestOptions); + +type Optional = Omit & Partial>; + +type CallLLMOptionsWithOptional = Optional< + CallLLMOptions, + "functions" | "stream" +>; + +export async function callLLM( + editor: BlockNoteEditor, + opts: CallLLMOptionsWithOptional +) { + const { prompt, useSelection, ...rest } = opts; + + let messages: CoreMessage[]; + + if ("messages" in opts && opts.messages) { + messages = opts.messages; + } else if (useSelection) { + messages = promptManipulateSelectionJSONSchema({ + editor, + userPrompt: opts.prompt!, + document: editor.getDocumentWithSelectionMarkers(), + }); + } else { + messages = promptManipulateDocumentUseJSONSchema({ + editor, + userPrompt: opts.prompt!, + document: editor.document, + }); + } + + const options: CallLLMOptions = { + functions: [updateFunction, addFunction, deleteFunction], + stream: true, + messages, + ...rest, + }; + + const schema = jsonSchema({ + ...createOperationsArraySchema(options.functions), + $defs: blockNoteSchemaToJSONSchema(editor.schema).$defs as any, + }); + + if (options.stream) { + const ret = streamObject<{ + operations: any[]; + }>({ + model: options.model, + mode: "tool", + schema, + messages: options.messages, + ...(options._streamObjectOptions as any), + }); + + await executeAIOperationStream( + editor, + ret.partialObjectStream, + options.functions + ); + return ret; + } + // non streaming + const ret = await generateObject<{ + operations: any[]; + }>({ + model: options.model, + mode: "tool", + schema, + messages: options.messages, + ...(options._generateObjectOptions as any), + }); + + if (!ret.object.operations) { + throw new Error("No operations returned"); + } + + for (const operation of ret.object.operations) { + await executeAIOperation(operation, editor, options.functions, undefined, { + idsSuffixed: true, // TODO: not needed for this, but would need to refactor promptbuilding + }); + } + return ret; +} diff --git a/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/2ba87d2b21d297f63d51a282cea73f4b b/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/2ba87d2b21d297f63d51a282cea73f4b new file mode 100644 index 000000000..51bfc2177 --- /dev/null +++ b/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/2ba87d2b21d297f63d51a282cea73f4b @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a markdown document. Send me the new markdown of the entire updated document. Don't include any other text, comments or wrapping marks. Next message is the existing document in markdown:\"},{\"role\":\"system\",\"content\":\"Hello\\n\"},{\"role\":\"user\",\"content\":\"Add a single sentence with `Test` after the first sentence\"}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\n \"id\": \"chatcmpl-AsXYn4LXZC8oXsPLdqV6p6dr3TQGo\",\n \"object\": \"chat.completion\",\n \"created\": 1737562081,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"Hello\\n\\nTest\\n\\n\",\n \"refusal\": null\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 66,\n \"completion_tokens\": 5,\n \"total_tokens\": 71,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50cad350e4\"\n}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/2bb9e176ad47f7b180a791c82bf054a2 b/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/2bb9e176ad47f7b180a791c82bf054a2 new file mode 100644 index 000000000..b850a1b74 --- /dev/null +++ b/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/2bb9e176ad47f7b180a791c82bf054a2 @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a markdown document. Send me the new markdown of the entire updated document. Don't include any other text, comments or wrapping marks. Next message is the existing document in markdown:\"},{\"role\":\"user\",\"content\":\"Hello\\n\"},{\"role\":\"user\",\"content\":\"Add a single sentence with `Test` before the first sentence\"}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\n \"id\": \"chatcmpl-AsXgviZiHwo8MMF8mN5qaLjxm5X5W\",\n \"object\": \"chat.completion\",\n \"created\": 1737562585,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"Test\\n\\nHello\",\n \"refusal\": null\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 66,\n \"completion_tokens\": 4,\n \"total_tokens\": 70,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50cad350e4\"\n}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/2e9a0c0dc057c453a88b00e0d25fd2aa b/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/2e9a0c0dc057c453a88b00e0d25fd2aa new file mode 100644 index 000000000..632dee075 --- /dev/null +++ b/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/2e9a0c0dc057c453a88b00e0d25fd2aa @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a markdown document. Send me the new markdown of the entire updated document. Don't include any other text, comments or wrapping marks. Next message is the existing document in markdown:\"},{\"role\":\"system\",\"content\":\"Hello\\n\\nWorld\\n\"},{\"role\":\"user\",\"content\":\"translate existing document to german\"}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\n \"id\": \"chatcmpl-AsXLOrmfwWOLWSxqWuJ3SyxgvekeM\",\n \"object\": \"chat.completion\",\n \"created\": 1737561250,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"Hallo\\n\\nWelt\",\n \"refusal\": null\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 61,\n \"completion_tokens\": 5,\n \"total_tokens\": 66,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50cad350e4\"\n}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/530afe12f1570e4366378a56248aa82f b/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/530afe12f1570e4366378a56248aa82f new file mode 100644 index 000000000..76507a21c --- /dev/null +++ b/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/530afe12f1570e4366378a56248aa82f @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a markdown document. Send me the new markdown of the entire updated document. Don't include any other text, comments or wrapping marks. Next message is the existing document in markdown:\"},{\"role\":\"user\",\"content\":\"Hello world\\n\"},{\"role\":\"user\",\"content\":\"change first word to bold\"}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\n \"id\": \"chatcmpl-AtAU7uLzGvogv1xbLSj7pOAfHveSF\",\n \"object\": \"chat.completion\",\n \"created\": 1737711707,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"**Hello** world\",\n \"refusal\": null\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 60,\n \"completion_tokens\": 5,\n \"total_tokens\": 65,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50cad350e4\"\n}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/55ce16124eb7405e3f507457da45eacf b/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/55ce16124eb7405e3f507457da45eacf new file mode 100644 index 000000000..0935141ba --- /dev/null +++ b/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/55ce16124eb7405e3f507457da45eacf @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a markdown document. Send me the new markdown of the entire updated document. Don't include any other text, comments or wrapping marks. Next message is the existing document in markdown:\"},{\"role\":\"user\",\"content\":\"Hello\\n\\nWorld\\n\"},{\"role\":\"user\",\"content\":\"change first paragraph to bold\"}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\n \"id\": \"chatcmpl-AtAU6MtfMt70saPYuikw5N39MfP2r\",\n \"object\": \"chat.completion\",\n \"created\": 1737711706,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"**Hello**\\n\\nWorld\",\n \"refusal\": null\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 61,\n \"completion_tokens\": 5,\n \"total_tokens\": 66,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_4691090a87\"\n}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/5a9f90b8e023ee2bb16c41b91bd730c6 b/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/5a9f90b8e023ee2bb16c41b91bd730c6 new file mode 100644 index 000000000..62fad99e7 --- /dev/null +++ b/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/5a9f90b8e023ee2bb16c41b91bd730c6 @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a markdown document. Send me the new markdown of the entire updated document. Don't include any other text, comments or wrapping marks. Next message is the existing document in markdown:\"},{\"role\":\"user\",\"content\":\"Hello\\n\"},{\"role\":\"user\",\"content\":\"Add a single sentence with `Test` after the first sentence\"}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\n \"id\": \"chatcmpl-AtAU8HelsfzPypNKlCZg0EdSXhuC6\",\n \"object\": \"chat.completion\",\n \"created\": 1737711708,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"Hello \\nTest\",\n \"refusal\": null\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 66,\n \"completion_tokens\": 4,\n \"total_tokens\": 70,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_936db42f35\"\n}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/8370a29df5edcf924c749589cbfad0ff b/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/8370a29df5edcf924c749589cbfad0ff new file mode 100644 index 000000000..643656cda --- /dev/null +++ b/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/8370a29df5edcf924c749589cbfad0ff @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a markdown document. Send me the new markdown of the entire updated document. Don't include any other text, comments or wrapping marks. Next message is the existing document in markdown:\"},{\"role\":\"user\",\"content\":\"Hello\\n\\nWorld\\n\"},{\"role\":\"user\",\"content\":\"translate existing document to german\"}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\n \"id\": \"chatcmpl-AtAU619c9odye29HPqlal1Fz2lc23\",\n \"object\": \"chat.completion\",\n \"created\": 1737711706,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"Hallo\\n\\nWelt\",\n \"refusal\": null\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 61,\n \"completion_tokens\": 5,\n \"total_tokens\": 66,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50cad350e4\"\n}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/b0033b7d79d04c2f6bb74546001d886d b/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/b0033b7d79d04c2f6bb74546001d886d new file mode 100644 index 000000000..67cf5ed37 --- /dev/null +++ b/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/b0033b7d79d04c2f6bb74546001d886d @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a markdown document. Send me the new markdown of the entire updated document. Don't include any other text, comments or wrapping marks. Next message is the existing document in markdown:\"},{\"role\":\"user\",\"content\":\"Hello\\n\\nWorld\\n\"},{\"role\":\"user\",\"content\":\"change first paragraph to a heading\"}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\n \"id\": \"chatcmpl-AxEMJlZVSPP1DZyzniJRAaj2NFQSm\",\n \"object\": \"chat.completion\",\n \"created\": 1738679911,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"# Hello\\n\\nWorld\",\n \"refusal\": null\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 62,\n \"completion_tokens\": 5,\n \"total_tokens\": 67,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50cad350e4\"\n}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/b1c813f082d620c5aa85f6e800bd977a b/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/b1c813f082d620c5aa85f6e800bd977a new file mode 100644 index 000000000..2f6491547 --- /dev/null +++ b/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/b1c813f082d620c5aa85f6e800bd977a @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a markdown document. Send me the new markdown of the entire updated document. Don't include any other text, comments or wrapping marks. Next message is the existing document in markdown:\"},{\"role\":\"user\",\"content\":\"Hello\\n\\nWorld\\n\"},{\"role\":\"user\",\"content\":\"delete the first sentence\"}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\n \"id\": \"chatcmpl-AtAU7ZB8A9omofQRznhjfV2xUbDsX\",\n \"object\": \"chat.completion\",\n \"created\": 1737711707,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"World\",\n \"refusal\": null\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 60,\n \"completion_tokens\": 2,\n \"total_tokens\": 62,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50cad350e4\"\n}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/f000c721138d18babcdfca250afcf77e b/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/f000c721138d18babcdfca250afcf77e new file mode 100644 index 000000000..7713eeceb --- /dev/null +++ b/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/f000c721138d18babcdfca250afcf77e @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a markdown document. Send me the new markdown of the entire updated document. Don't include any other text, comments or wrapping marks. Next message is the existing document in markdown:\"},{\"role\":\"user\",\"content\":\"Hello\\n\"},{\"role\":\"user\",\"content\":\"Add a paragraph with `Test` after the first paragraph\"}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\n \"id\": \"chatcmpl-AtAYq3id3aNSTsoIQkublBDmwo2tp\",\n \"object\": \"chat.completion\",\n \"created\": 1737712000,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"Hello\\n\\nTest\",\n \"refusal\": null\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 65,\n \"completion_tokens\": 4,\n \"total_tokens\": 69,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50cad350e4\"\n}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/fa8afa745017cda8ba743c197fa4fecc b/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/fa8afa745017cda8ba743c197fa4fecc new file mode 100644 index 000000000..d9efa11d4 --- /dev/null +++ b/packages/xl-ai/src/api/formats/markdown/__msw_snapshots__/default/POST/https:/localhost:3000/ai/fa8afa745017cda8ba743c197fa4fecc @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a markdown document. Send me the new markdown of the entire updated document. Don't include any other text, comments or wrapping marks. Next message is the existing document in markdown:\"},{\"role\":\"system\",\"content\":\"Hello\\n\"},{\"role\":\"user\",\"content\":\"Add a single sentence with `Test` before the first sentence\"}]}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "{\n \"id\": \"chatcmpl-AsXffVTsoiISK9tpQmAbMY52KNVdB\",\n \"object\": \"chat.completion\",\n \"created\": 1737562507,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"# Document Title\\n\\nTest\\n\\nThis is the first sentence of the document. \\n\\nHere is another sentence in the document. \\n\\nThe document continues with more information.\",\n \"refusal\": null\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 66,\n \"completion_tokens\": 33,\n \"total_tokens\": 99,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50cad350e4\"\n}\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/markdown/__snapshots__/markdown.test.ts/Test AI operations > Delete > deletes a paragraph.json b/packages/xl-ai/src/api/formats/markdown/__snapshots__/markdown.test.ts/Test AI operations > Delete > deletes a paragraph.json new file mode 100644 index 000000000..5ebf605ce --- /dev/null +++ b/packages/xl-ai/src/api/formats/markdown/__snapshots__/markdown.test.ts/Test AI operations > Delete > deletes a paragraph.json @@ -0,0 +1,19 @@ +[ + { + "children": [], + "content": [ + { + "styles": {}, + "text": "World", + "type": "text", + }, + ], + "id": "1", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, +] \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/markdown/__snapshots__/markdown.test.ts/Test AI operations > Insert > inserts a paragraph at end.json b/packages/xl-ai/src/api/formats/markdown/__snapshots__/markdown.test.ts/Test AI operations > Insert > inserts a paragraph at end.json new file mode 100644 index 000000000..9b06f9fa1 --- /dev/null +++ b/packages/xl-ai/src/api/formats/markdown/__snapshots__/markdown.test.ts/Test AI operations > Insert > inserts a paragraph at end.json @@ -0,0 +1,36 @@ +[ + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Hello", + "type": "text", + }, + ], + "id": "0", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Test", + "type": "text", + }, + ], + "id": "1", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, +] \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/markdown/__snapshots__/markdown.test.ts/Test AI operations > Insert > inserts a paragraph at start.json b/packages/xl-ai/src/api/formats/markdown/__snapshots__/markdown.test.ts/Test AI operations > Insert > inserts a paragraph at start.json new file mode 100644 index 000000000..0975b7aeb --- /dev/null +++ b/packages/xl-ai/src/api/formats/markdown/__snapshots__/markdown.test.ts/Test AI operations > Insert > inserts a paragraph at start.json @@ -0,0 +1,36 @@ +[ + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Test", + "type": "text", + }, + ], + "id": "1", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Hello", + "type": "text", + }, + ], + "id": "0", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, +] \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/markdown/__snapshots__/markdown.test.ts/Test AI operations > Update > changes block type (paragraph -> heading).json b/packages/xl-ai/src/api/formats/markdown/__snapshots__/markdown.test.ts/Test AI operations > Update > changes block type (paragraph -> heading).json new file mode 100644 index 000000000..bce964c4f --- /dev/null +++ b/packages/xl-ai/src/api/formats/markdown/__snapshots__/markdown.test.ts/Test AI operations > Update > changes block type (paragraph -> heading).json @@ -0,0 +1,37 @@ +[ + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Hello", + "type": "text", + }, + ], + "id": "0", + "props": { + "backgroundColor": "default", + "level": 1, + "textAlignment": "left", + "textColor": "default", + }, + "type": "heading", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "World", + "type": "text", + }, + ], + "id": "1", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, +] \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/markdown/__snapshots__/markdown.test.ts/Test AI operations > Update > changes simple formatting (paragraph).json b/packages/xl-ai/src/api/formats/markdown/__snapshots__/markdown.test.ts/Test AI operations > Update > changes simple formatting (paragraph).json new file mode 100644 index 000000000..04d724d22 --- /dev/null +++ b/packages/xl-ai/src/api/formats/markdown/__snapshots__/markdown.test.ts/Test AI operations > Update > changes simple formatting (paragraph).json @@ -0,0 +1,38 @@ +[ + { + "children": [], + "content": [ + { + "styles": { + "bold": true, + }, + "text": "Hello", + "type": "text", + }, + ], + "id": "0", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "World", + "type": "text", + }, + ], + "id": "1", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, +] \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/markdown/__snapshots__/markdown.test.ts/Test AI operations > Update > changes simple formatting (word).json b/packages/xl-ai/src/api/formats/markdown/__snapshots__/markdown.test.ts/Test AI operations > Update > changes simple formatting (word).json new file mode 100644 index 000000000..5ef0183e2 --- /dev/null +++ b/packages/xl-ai/src/api/formats/markdown/__snapshots__/markdown.test.ts/Test AI operations > Update > changes simple formatting (word).json @@ -0,0 +1,26 @@ +[ + { + "children": [], + "content": [ + { + "styles": { + "bold": true, + }, + "text": "Hello", + "type": "text", + }, + { + "styles": {}, + "text": " world", + "type": "text", + }, + ], + "id": "0", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, +] \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/markdown/__snapshots__/markdown.test.ts/Test AI operations > Update > translates simple paragraphs.json b/packages/xl-ai/src/api/formats/markdown/__snapshots__/markdown.test.ts/Test AI operations > Update > translates simple paragraphs.json new file mode 100644 index 000000000..2bbdb2766 --- /dev/null +++ b/packages/xl-ai/src/api/formats/markdown/__snapshots__/markdown.test.ts/Test AI operations > Update > translates simple paragraphs.json @@ -0,0 +1,36 @@ +[ + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Hallo", + "type": "text", + }, + ], + "id": "0", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Welt", + "type": "text", + }, + ], + "id": "1", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, +] \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/markdown/markdown.test.ts b/packages/xl-ai/src/api/formats/markdown/markdown.test.ts new file mode 100644 index 000000000..dd4e63d26 --- /dev/null +++ b/packages/xl-ai/src/api/formats/markdown/markdown.test.ts @@ -0,0 +1,227 @@ +import { afterEach, beforeAll, describe, expect, it } from "vitest"; + +import { BlockNoteEditor, PartialBlock } from "@blocknote/core"; + +import { createOpenAI } from "@ai-sdk/openai"; +import { snapshot } from "msw-snapshot"; +import { setupServer } from "msw/node"; +import path from "path"; +import { createBlockNoteAIClient } from "../../blocknoteAIClient/client.js"; +import { callLLM } from "./markdown.js"; + +function createEditor(initialContent: PartialBlock[]) { + return BlockNoteEditor.create({ + initialContent, + }); +} + +beforeAll(() => { + const server = setupServer( + snapshot({ + updateSnapshots: "missing", + ignoreSnapshots: false, + basePath: path.resolve(__dirname, "__msw_snapshots__"), + // onFetchFromSnapshot(info, snapshot) { + // // console.log("onFetchFromSnapshot", info, snapshot); + // }, + // onFetchFromServer(info, snapshot) { + // // console.log("onFetchFromServer", info, snapshot); + // }, + }) + ); + server.listen(); +}); + +const client = createBlockNoteAIClient({ + baseURL: "https://localhost:3000/ai", + apiKey: "PLACEHOLDER", +}); + +// const groq = createGroq({ +// ...client.getProviderSettings("groq"), +// })("llama-3.1-70b-versatile"); + +const openai = createOpenAI({ + ...client.getProviderSettings("openai"), +})("gpt-4o-2024-08-06", {}); + +function matchFileSnapshot(data: any, postFix = "") { + expect(data).toMatchFileSnapshot( + path.resolve( + __dirname, + "__snapshots__", + path.basename(__filename), + expect.getState().currentTestName! + + (postFix ? `_${postFix}` : "") + + ".json" + ) + ); +} + +describe.each([ + { + model: openai, + }, + // { + // model: groq, + // }, +])("Test AI operations", (params) => { + afterEach(() => { + delete (window as Window & { __TEST_OPTIONS?: any }).__TEST_OPTIONS; + }); + + describe("Update", () => { + it("translates simple paragraphs", async () => { + const editor = createEditor([ + { + type: "paragraph", + content: "Hello", + }, + { + type: "paragraph", + content: "World", + }, + ]); + + await callLLM(editor, { + model: params.model, + prompt: "translate existing document to german", + }); + + // Add assertions here to check if the document was correctly translated + // For example: + // pass test name + + matchFileSnapshot(editor.document); + + // expect(await response.object).toMatchSnapshot(); + }); + + it("changes block type (paragraph -> heading)", async () => { + const editor = createEditor([ + { + type: "paragraph", + content: "Hello", + }, + { + type: "paragraph", + content: "World", + }, + ]); + + await callLLM(editor, { + prompt: "change first paragraph to a heading", + model: params.model, + }); + + // Add assertions here to check if the document was correctly translated + // For example: + matchFileSnapshot(editor.document); + + // expect(await response.object).toMatchSnapshot(); + }); + + it("changes simple formatting (paragraph)", async () => { + const editor = createEditor([ + { + type: "paragraph", + content: "Hello", + }, + { + type: "paragraph", + content: "World", + }, + ]); + + await callLLM(editor, { + prompt: "change first paragraph to bold", + model: params.model, + }); + + // Add assertions here to check if the document was correctly translated + // For example: + matchFileSnapshot(editor.document); + + // expect(await response.object).toMatchSnapshot(); + }); + + it("changes simple formatting (word)", async () => { + const editor = createEditor([ + { + type: "paragraph", + content: "Hello world", + }, + ]); + + await callLLM(editor, { + prompt: "change first word to bold", + model: params.model, + }); + + // Add assertions here to check if the document was correctly translated + // For example: + matchFileSnapshot(editor.document); + + // expect(await response.object).toMatchSnapshot(); + }); + }); + + describe("Delete", () => { + it("deletes a paragraph", async () => { + const editor = createEditor([ + { + type: "paragraph", + content: "Hello", + }, + { + type: "paragraph", + content: "World", + }, + ]); + await callLLM(editor, { + prompt: "delete the first sentence", + model: params.model, + }); + + matchFileSnapshot(editor.document); + + // expect(await response.object).toMatchSnapshot(); + }); + }); + + describe("Insert", () => { + it("inserts a paragraph at start", async () => { + const editor = createEditor([ + { + type: "paragraph", + content: "Hello", + }, + ]); + await callLLM(editor, { + prompt: "Add a single sentence with `Test` before the first sentence", + model: params.model, + }); + + matchFileSnapshot(editor.document); + + // expect(await response.object).toMatchSnapshot(); + }); + + it("inserts a paragraph at end", async () => { + const editor = createEditor([ + { + type: "paragraph", + content: "Hello", + }, + ]); + await callLLM(editor, { + prompt: "Add a paragraph with `Test` after the first paragraph", + model: params.model, + }); + + matchFileSnapshot(editor.document); + + // expect(await response.object).toMatchSnapshot(); + }); + }); +}); diff --git a/packages/xl-ai/src/api/formats/markdown/markdown.ts b/packages/xl-ai/src/api/formats/markdown/markdown.ts new file mode 100644 index 000000000..c3f35becf --- /dev/null +++ b/packages/xl-ai/src/api/formats/markdown/markdown.ts @@ -0,0 +1,88 @@ +import { BlockNoteEditor } from "@blocknote/core"; +import { CoreMessage, LanguageModel, generateText } from "ai"; +import { markdownNodeDiff } from "../../../markdown/markdownNodeDiff.js"; +import { markdownNodeDiffToBlockOperations } from "../../../markdown/markdownOperations.js"; +import { executeAIOperation } from "../../executor/executor.js"; +import { addFunction } from "../../functions/add.js"; +import { deleteFunction } from "../../functions/delete.js"; +import { updateFunction } from "../../functions/update.js"; +import type { PromptOrMessages } from "../../index.js"; +import { + promptManipulateDocumentUseMarkdown, + promptManipulateDocumentUseMarkdownWithSelection, +} from "../../prompts/markdownPrompts.js"; +import { trimArray } from "../../util/trimArray.js"; + +type BasicLLMRequestOptions = { + model: LanguageModel; +} & PromptOrMessages; + +type MarkdownLLMRequestOptions = BasicLLMRequestOptions & { + _generateTextOptions?: Partial>[0]>; +}; + +export async function callLLM( + editor: BlockNoteEditor, + options: MarkdownLLMRequestOptions +) { + let messages: CoreMessage[]; + // TODO: add test with empty paragraphs at end, this should break without trim() + const markdown = (await editor.blocksToMarkdownLossy()).trim(); + + if ("messages" in options && options.messages) { + messages = options.messages; + } else if (options.useSelection) { + const selection = editor.getDocumentWithSelectionMarkers(); + const markdown = (await editor.blocksToMarkdownLossy(selection)).trim(); + messages = promptManipulateDocumentUseMarkdownWithSelection({ + editor, + markdown, + userPrompt: (options as any).prompt, + }); + } else { + messages = promptManipulateDocumentUseMarkdown({ + editor, + markdown, + userPrompt: (options as any).prompt, + }); + } + + const withDefaults: Required< + Omit + > = { + messages, + ...(options as any), // TODO + }; + + const ret = await generateText({ + model: withDefaults.model, + messages: withDefaults.messages, + ...options._generateTextOptions, + }); + + const blocks = trimArray(editor.document, (block) => { + return ( + block.type === "paragraph" && + Array.isArray(block.content) && + block.content.length === 0 + ); + }); + const newMarkdown = ret.text.trim(); + // Test\n\nHello + const diff = await markdownNodeDiff(markdown, newMarkdown); + const operations = await markdownNodeDiffToBlockOperations( + editor, + blocks, + diff + ); + + for (const operation of operations) { + await executeAIOperation( + operation, + editor, + [updateFunction, addFunction, deleteFunction], + undefined, + { idsSuffixed: false } + ); + } +} diff --git a/packages/xl-ai/src/api/functions/add.ts b/packages/xl-ai/src/api/functions/add.ts new file mode 100644 index 000000000..ed2b0fbf6 --- /dev/null +++ b/packages/xl-ai/src/api/functions/add.ts @@ -0,0 +1,112 @@ +import { BlockNoteEditor } from "@blocknote/core"; +import { validateBlockFunction } from "./validate.js"; + +const schema = { + name: "add", + description: "Insert new blocks", + parameters: { + referenceId: { + type: "string", + description: "", + }, + position: { + type: "string", + enum: ["before", "after"], + description: + "Whether new block(s) should be inserterd before or after `referenceId`", + }, + blocks: { + items: { + $ref: "#/$defs/block", + // type: "object", + // properties: {}, + }, + type: "array", + }, + }, + required: ["referenceId", "position", "blocks"], +} as const; + +// TODO: document +function applyOperation( + operation: any, + editor: BlockNoteEditor, + operationContext: any, + options: { + idsSuffixed: boolean; + } +) { + let referenceId = operation.referenceId; + if (options.idsSuffixed) { + referenceId = referenceId.slice(0, -1); + } + + const idsAdded = operationContext || []; + const toUpdate = operation.blocks.slice(0, idsAdded.length); + + for (let i = 0; i < toUpdate.length; i++) { + editor.updateBlock(idsAdded[i], toUpdate[i]); + } + + const toAdd = operation.blocks.slice(idsAdded.length); + if (toAdd.length > 0) { + if (toUpdate.length === 0) { + const ret = editor.insertBlocks(toAdd, referenceId, operation.position); + return [...ret.map((block) => block.id)]; + } + + // insert after the last inserted block part of this operation + const ret = editor.insertBlocks( + toAdd, + idsAdded[idsAdded.length - 1], + "after" + ); + return [...idsAdded, ...ret.map((block) => block.id)]; + } + return idsAdded; +} + +function validateOperation( + operation: any, + editor: BlockNoteEditor, + options: { + idsSuffixed: boolean; + } +) { + if (operation.type !== schema.name) { + return false; + } + + if (operation.position !== "before" && operation.position !== "after") { + return false; + } + + let referenceId = operation.referenceId; + if (options.idsSuffixed) { + if (!referenceId?.endsWith("$")) { + return false; + } + + referenceId = referenceId.slice(0, -1); + } + + const block = editor.getBlock(referenceId); + + if (!block) { + return false; + } + + if (!operation.blocks || operation.blocks.length === 0) { + return false; + } + + return (operation.blocks as []).every((block: any) => + validateBlockFunction(block, editor) + ); +} + +export const addFunction = { + schema, + apply: applyOperation, + validate: validateOperation, +}; diff --git a/packages/xl-ai/src/api/functions/delete.ts b/packages/xl-ai/src/api/functions/delete.ts new file mode 100644 index 000000000..2ba9f7291 --- /dev/null +++ b/packages/xl-ai/src/api/functions/delete.ts @@ -0,0 +1,64 @@ +import { BlockNoteEditor } from "@blocknote/core"; + +const schema = { + name: "delete", + description: "Delete a block", + parameters: { + id: { + type: "string", + description: "id of block to delete", + }, + }, + required: ["id"], +}; + +function applyOperation( + operation: any, + editor: BlockNoteEditor, + _operationContext: any, + options: { + idsSuffixed: boolean; + } +) { + let id = operation.id; + if (options.idsSuffixed) { + id = id.slice(0, -1); + } + + editor.removeBlocks([id]); +} + +function validateOperation( + operation: any, + editor: BlockNoteEditor, + options: { + idsSuffixed: boolean; + } +) { + if (operation.type !== schema.name) { + return false; + } + + let id = operation.id; + if (options.idsSuffixed) { + if (!id?.endsWith("$")) { + return false; + } + + id = id.slice(0, -1); + } + + const block = editor.getBlock(id); + + if (!block) { + return false; + } + + return true; +} + +export const deleteFunction = { + schema, + apply: applyOperation, + validate: validateOperation, +}; diff --git a/packages/xl-ai/src/api/functions/index.ts b/packages/xl-ai/src/api/functions/index.ts new file mode 100644 index 000000000..f0eba0b08 --- /dev/null +++ b/packages/xl-ai/src/api/functions/index.ts @@ -0,0 +1,8 @@ +import { addFunction } from "./add.js"; +import { deleteFunction } from "./delete.js"; +import { updateFunction } from "./update.js"; + +export type AIFunction = + | typeof addFunction + | typeof deleteFunction + | typeof updateFunction; diff --git a/packages/xl-ai/src/api/functions/update.ts b/packages/xl-ai/src/api/functions/update.ts new file mode 100644 index 000000000..3d55d2907 --- /dev/null +++ b/packages/xl-ai/src/api/functions/update.ts @@ -0,0 +1,77 @@ +import { BlockNoteEditor } from "@blocknote/core"; +import { validateBlockFunction } from "./validate.js"; + +const schema = { + name: "update", + description: "Update a block", + parameters: { + id: { + type: "string", + description: "id of block to update", + }, + block: { + $ref: "#/$defs/block", + // type: "object", + // properties: {}, + }, + }, + required: ["id", "block"], +}; + +function applyOperation( + operation: any, + editor: BlockNoteEditor, + _operationContext: any, + options: { + idsSuffixed: boolean; + } + // operationContext: any +) { + let id = operation.id; + if (options.idsSuffixed) { + id = id.slice(0, -1); + } + + editor.updateBlock(id, operation.block); +} + +function validateOperation( + operation: any, + editor: BlockNoteEditor, + options: { + idsSuffixed: boolean; + } +) { + if (operation.type !== schema.name) { + return false; + } + + let id = operation.id; + if (options.idsSuffixed) { + if (!id?.endsWith("$")) { + return false; + } + + id = id.slice(0, -1); + } + + if (!operation.block) { + return false; + } + + const block = editor.getBlock(id); + + if (!block) { + // eslint-disable-next-line no-console + console.error("BLOCK NOT FOUND", id); + return false; + } + + return validateBlockFunction(operation.block, editor, block.type); +} + +export const updateFunction = { + schema, + apply: applyOperation, + validate: validateOperation, +}; diff --git a/packages/xl-ai/src/api/functions/validate.ts b/packages/xl-ai/src/api/functions/validate.ts new file mode 100644 index 000000000..efa005d3f --- /dev/null +++ b/packages/xl-ai/src/api/functions/validate.ts @@ -0,0 +1,72 @@ +import { BlockNoteEditor } from "@blocknote/core"; + +function validateInlineContent(content: any, editor: any): boolean { + const inlineContentConfig = + editor.schema.inlineContentSchema[ + content.type as keyof typeof editor.schema.inlineContentSchema + ]; + + if (!inlineContentConfig) { + return false; + } + + if (inlineContentConfig === "text") { + if (!("text" in content)) { + return false; + } + } + + // TODO: validate link / custom ic content + return true; +} + +export function validateBlockFunction( + block: any, + editor: BlockNoteEditor, + fallbackType?: string +): boolean { + const type = block.type || fallbackType; + const blockConfig = + editor.schema.blockSchema[type as keyof typeof editor.schema.blockSchema]; + + if (!blockConfig) { + return false; + } + + if (block.children) { + // LLM tools are not supposed to edit children at this moment + // return false; TODO, bringing this back breaks markdown tests + } + + if (blockConfig.content === "none") { + if (block.content) { + // no content expected for this block + return false; + } + } else { + if (!block.content) { + // return false; + return true; // this is ok for update operations where we only update the type + } + + if (!Array.isArray(block.content)) { + // content expected for this block + return false; + } + + if (blockConfig.content === "table") { + // no validation for table content (TODO) + return true; + } + + if ( + !(block.content as []).every((content: any) => { + return validateInlineContent(content, editor); + }) + ) { + return false; + } + } + // TODO: validate props + return true; +} diff --git a/packages/xl-ai/src/api/index.ts b/packages/xl-ai/src/api/index.ts new file mode 100644 index 000000000..5361fe95d --- /dev/null +++ b/packages/xl-ai/src/api/index.ts @@ -0,0 +1,25 @@ +import { CoreMessage } from "ai"; +import { callLLM as callLLMJSON } from "./formats/json/json.js"; +import { callLLM as callLLMMarkdown } from "./formats/markdown/markdown.js"; + +export const llm = { + json: { + call: callLLMJSON, + }, + markdown: { + call: callLLMMarkdown, + }, +}; + +// TODO: good practice like this? +export type PromptOrMessages = + | { + useSelection?: boolean; + prompt: string; + messages?: never; + } + | { + useSelection?: never; + prompt?: never; + messages: Array; + }; diff --git a/packages/xl-ai/src/api/prompts/jsonSchemaPrompts.ts b/packages/xl-ai/src/api/prompts/jsonSchemaPrompts.ts new file mode 100644 index 000000000..69f9757f0 --- /dev/null +++ b/packages/xl-ai/src/api/prompts/jsonSchemaPrompts.ts @@ -0,0 +1,81 @@ +import { BlockNoteEditor } from "@blocknote/core"; +import { CoreMessage } from "ai"; +import { suffixIDs } from "../util/suffixIDs.js"; + +// TODO don't include child block +export function promptManipulateSelectionJSONSchema(opts: { + editor: BlockNoteEditor; + userPrompt: string; + document: any; +}): Array { + if (!opts.editor.getSelection()) { + throw new Error("No selection"); + } + return [ + { + role: "system", + content: `You're manipulating a text document. Make sure to follow the json schema provided. + The user selected everything between [$! and !$], including blocks in between.`, + }, + { + role: "system", + content: JSON.stringify(suffixIDs(opts.document)), + }, + { + role: "system", + content: + "Make sure to ONLY affect the selected text and blocks (split words if necessary), and don't include the markers in the response.", + }, + { + role: "user", + content: opts.userPrompt, + }, + ]; +} + +export function promptManipulateDocumentUseJSONSchema(opts: { + editor: BlockNoteEditor; + userPrompt: string; + document: any; +}): Array { + return [ + { + role: "system", + content: + "You're manipulating a text document. Make sure to follow the json schema provided. This is the document:", + }, + { + role: "system", + content: JSON.stringify(suffixIDs(opts.document)), + }, + { + role: "system", + content: + "This would be an example block: \n" + + JSON.stringify({ + type: "paragraph", + props: {}, + content: [ + { + type: "text", + text: "Bold text", + styles: { + bold: true, + }, + }, + { + type: "text", + text: " and italic text", + styles: { + italic: true, + }, + }, + ], + }), + }, + { + role: "user", + content: opts.userPrompt, + }, + ]; +} diff --git a/packages/xl-ai/src/api/prompts/markdownPrompts.ts b/packages/xl-ai/src/api/prompts/markdownPrompts.ts new file mode 100644 index 000000000..6fda04945 --- /dev/null +++ b/packages/xl-ai/src/api/prompts/markdownPrompts.ts @@ -0,0 +1,52 @@ +import { BlockNoteEditor } from "@blocknote/core"; +import { CoreMessage } from "ai"; + +export function promptManipulateDocumentUseMarkdown(opts: { + editor: BlockNoteEditor; + userPrompt: string; + markdown: string; +}): Array { + return [ + { + role: "system", + content: + "You're manipulating a markdown document. Send me the new markdown of the entire updated document. Don't include any other text, comments or wrapping marks. Next message is the existing document in markdown:", + }, + { + role: "user", + content: opts.markdown, + }, + { + role: "user", + content: opts.userPrompt, + }, + ]; +} + +export function promptManipulateDocumentUseMarkdownWithSelection(opts: { + editor: BlockNoteEditor; + userPrompt: string; + markdown: string; +}): Array { + return [ + { + role: "system", + content: + "You're manipulating a markdown document. The user selected everything between [$! and !$], including blocks in between. Don't include any other text, comments or wrapping marks. Next message is the existing document in markdown:", + }, + { + role: "user", + content: opts.markdown, + }, + { + role: "system", + content: `You MUST return the ENTIRE markdown document (from start to end, INCLUDING parts outside the selection). + But, the next user prompt ONLY applies to the selectiom so make sure to ONLY change the selected text (text between [$! and !$]) and keep the rest of the document unchanged. + DO NOT include the markers in the response.`, + }, + { + role: "user", + content: opts.userPrompt, + }, + ]; +} diff --git a/packages/xl-ai/src/api/schema/mergeSchema.ts b/packages/xl-ai/src/api/schema/mergeSchema.ts new file mode 100644 index 000000000..dca14e520 --- /dev/null +++ b/packages/xl-ai/src/api/schema/mergeSchema.ts @@ -0,0 +1,121 @@ +import type { SimpleJSONObjectSchema } from "../util/JSONSchema.js"; + +/** + * Merges schemas that only differ by the "type" field. + * @param schemas The array of schema objects to be processed. + * @returns A new array with merged schema objects where applicable. + */ +export function mergeSchemas( + schemas: SimpleJSONObjectSchema[] +): SimpleJSONObjectSchema[] { + const groupedSchemas: { [signature: string]: string[] } = {}; + const signatureToSchema: { [signature: string]: SimpleJSONObjectSchema } = {}; + + schemas.forEach((schemaObj) => { + // Extract the schema properties except for the "type" field + const { type, ...rest } = schemaObj.properties; + const schemaSignature = JSON.stringify(rest); // Generate a signature for comparison + + // If the signature already exists, add the "type" to the enum + if (groupedSchemas[schemaSignature]) { + groupedSchemas[schemaSignature].push(type.enum[0]); + } else { + // Create a new group if it doesn't exist + groupedSchemas[schemaSignature] = [type.enum[0]]; + signatureToSchema[schemaSignature] = schemaObj; + } + }); + + // Create the new merged schema array + const mergedSchemas: SimpleJSONObjectSchema[] = Object.keys( + groupedSchemas + ).map((signature) => { + const baseSchema = signatureToSchema[signature]; + return { + ...baseSchema, + properties: { + ...baseSchema.properties, + type: { + type: "string", + enum: groupedSchemas[signature], + }, + }, + }; + }); + + return mergedSchemas; +} + +// // Example usage: +// const exampleSchemas: Schema[] = [ +// { +// type: "object", +// properties: { +// type: { type: "string", enum: ["paragraph"] }, +// content: { $ref: "#/$defs/inlinecontent" }, +// props: { +// type: "object", +// properties: { +// backgroundColor: { type: "string" }, +// textColor: { type: "string" }, +// textAlignment: { +// type: "string", +// enum: ["left", "center", "right", "justify"], +// }, +// }, +// additionalProperties: false, +// }, +// }, +// additionalProperties: false, +// required: ["type"], +// }, +// { +// type: "object", +// properties: { +// type: { type: "string", enum: ["bulletListItem"] }, +// content: { $ref: "#/$defs/inlinecontent" }, +// props: { +// type: "object", +// properties: { +// backgroundColor: { type: "string" }, +// textColor: { type: "string" }, +// textAlignment: { +// type: "string", +// enum: ["left", "center", "right", "justify"], +// }, +// }, +// additionalProperties: false, +// }, +// }, +// additionalProperties: false, +// required: ["type"], +// }, +// { +// type: "object", +// properties: { +// type: { type: "string", enum: ["heading"] }, +// content: { $ref: "#/$defs/inlinecontent" }, +// props: { +// type: "object", +// properties: { +// backgroundColor: { type: "string" }, +// textColor: { type: "string" }, +// textAlignment: { +// type: "string", +// enum: ["left", "center", "right", "justify"], +// }, +// level: { +// type: "number", +// enum: [1, 2, 3], +// }, +// }, +// additionalProperties: false, +// }, +// }, +// additionalProperties: false, +// required: ["type"], +// }, +// ]; + +// const mergedSchemas = mergeSchemas(exampleSchemas); +// console.log(JSON.stringify(mergedSchemas, null, 2)); diff --git a/packages/xl-ai/src/api/schema/operations.ts b/packages/xl-ai/src/api/schema/operations.ts new file mode 100644 index 000000000..5d92df1e0 --- /dev/null +++ b/packages/xl-ai/src/api/schema/operations.ts @@ -0,0 +1,36 @@ +import { AIFunction } from "../functions/index.js"; +import { SimpleJSONObjectSchema } from "../util/JSONSchema.js"; + +export function functionToOperationJSONSchema(func: AIFunction) { + return { + type: "object", + description: func.schema.description, + properties: { + type: { + type: "string", + enum: [func.schema.name], + }, + ...func.schema.parameters, + }, + required: ["type", ...func.schema.required], + additionalProperties: false, + } as const; +} + +export function createOperationsArraySchema( + functions: AIFunction[] +): SimpleJSONObjectSchema { + return { + type: "object", + properties: { + operations: { + type: "array", + items: { + anyOf: functions.map((op) => functionToOperationJSONSchema(op)), + }, + }, + }, + additionalProperties: false, + required: ["operations"] as string[], + }; +} diff --git a/packages/xl-ai/src/api/schema/schemaToJSONSchema.test.ts b/packages/xl-ai/src/api/schema/schemaToJSONSchema.test.ts new file mode 100644 index 000000000..8fbdc0240 --- /dev/null +++ b/packages/xl-ai/src/api/schema/schemaToJSONSchema.test.ts @@ -0,0 +1,43 @@ +import { afterEach, beforeEach, describe, it } from "vitest"; + +import { BlockNoteEditor } from "@blocknote/core"; + +import { defaultSchemaTestCases } from "../../testUtil/cases/defaultSchema.js"; +import { blockNoteSchemaToJSONSchema } from "./schemaToJSONSchema.js"; + +const testCases = [defaultSchemaTestCases]; + +describe("Test BlockNote-Prosemirror conversion", () => { + for (const testCase of testCases) { + describe("Case: " + testCase.name, () => { + let editor: BlockNoteEditor; + const div = document.createElement("div"); + + beforeEach(() => { + editor = testCase.createEditor(); + // Note that we don't necessarily need to mount a root + // Currently, we do mount to a root so that it reflects the "production" use-case more closely. + + // However, it would be nice to increased converage and share the same set of tests for these cases: + // - does render to a root + // - does not render to a root + // - runs in server (jsdom) environment using server-util + editor.mount(div); + }); + + afterEach(() => { + editor.mount(undefined); + editor._tiptapEditor.destroy(); + editor = undefined as any; + + delete (window as Window & { __TEST_OPTIONS?: any }).__TEST_OPTIONS; + }); + + it.only("creates json schema", async () => { + // eslint-disable-next-line no-console + console.log(JSON.stringify(blockNoteSchemaToJSONSchema(editor.schema))); + // } + }); + }); + } +}); diff --git a/packages/xl-ai/src/api/schema/schemaToJSONSchema.ts b/packages/xl-ai/src/api/schema/schemaToJSONSchema.ts new file mode 100644 index 000000000..e9c3292d8 --- /dev/null +++ b/packages/xl-ai/src/api/schema/schemaToJSONSchema.ts @@ -0,0 +1,311 @@ +import { + BlockNoteSchema, + BlockSchema, + InlineContentSchema, + PropSchema, + StyleSchema, + defaultProps, +} from "@blocknote/core"; +import { SimpleJSONObjectSchema } from "../util/JSONSchema.js"; +import { mergeSchemas } from "./mergeSchema.js"; +/* +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "type": { + "type": "string", + "enum": ["paragraph", "heading"] + }, + "props": { + "type": "object", + "properties": { + "textColor": { + "type": "string", + "enum": ["default"] + }, + "backgroundColor": { + "type": "string", + "enum": ["default"] + }, + "textAlignment": { + "type": "string", + "enum": ["left"] + }, + "level": { + "type": "integer", + "minimum": 1, + "maximum": 6 + } + }, + "required": ["textColor", "backgroundColor", "textAlignment"], + "additionalProperties": false + }, + "content": { + "type": "array", + "items": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": ["text"] + }, + "text": { + "type": "string" + }, + "styles": { + "type": "object", + "properties": { + "bold": { + "type": "boolean" + }, + "italic": { + "type": "boolean" + } + }, + "additionalProperties": false + } + }, + "required": ["type", "text"], + "additionalProperties": false + } + } + }, + "required": ["id", "type", "props", "content"], + "additionalProperties": false + } + }*/ + +export function styleSchemaToJSONSchema( + schema: StyleSchema +): SimpleJSONObjectSchema { + return { + type: "object", + properties: Object.fromEntries( + Object.entries(schema).map(([key, val]) => { + return [ + key, + { + type: val.propSchema, + }, + ]; + }) + ), + additionalProperties: false, + }; +} + +export function styledTextToJSONSchema() { + return { + type: "object", + properties: { + type: { + type: "string", + enum: ["text"], + }, + text: { + type: "string", + }, + styles: { + $ref: "#/$defs/styles", + }, + }, + additionalProperties: false, + required: ["type", "text"], + }; +} + +export function propSchemaToJSONSchema( + propSchema: PropSchema +): SimpleJSONObjectSchema { + return { + type: "object", + properties: Object.fromEntries( + Object.entries(propSchema) + .filter(([_key, val]) => { + // for now skip optional props + return val.default !== undefined; + }) + .map(([key, val]) => { + return [ + key, + { + type: typeof val.default, + enum: val.values, + }, + ]; + }) + ), + additionalProperties: false, + }; +} + +export function inlineContentSchemaToJSONSchema(schema: InlineContentSchema) { + return { + type: "array", + items: { + anyOf: Object.entries(schema).map(([_key, val]) => { + if (val === "text") { + return { + $ref: "#/$defs/styledtext", + }; + } + if (val === "link") { + return { + type: "object", + properties: { + type: { + type: "string", + enum: ["link"], + }, + content: { + type: "array", + items: { + $ref: "#/$defs/styledtext", + }, + }, + href: { + type: "string", + }, + }, + additionalProperties: false, + required: ["type", "href", "content"], + }; + } + return { + type: "object", + properties: { + type: { + type: "string", + enum: [val.type], + }, + content: + val.content === "styled" + ? { + type: "array", + items: { + $ref: "#/$defs/styledtext", + }, + } + : undefined, + props: { + type: "object", + properties: propSchemaToJSONSchema(val.propSchema), + additionalProperties: false, + }, + }, + additionalProperties: false, + required: ["type", ...(val.content === "styled" ? ["content"] : [])], + }; + }), + }, + }; +} + +export function blockSchemaToJSONSchema(schema: BlockSchema) { + return { + anyOf: mergeSchemas( + Object.entries(schema).map(([_key, val]) => { + return { + type: "object", + properties: { + type: { + type: "string", + enum: [val.type], + }, + content: + val.content === "inline" + ? { $ref: "#/$defs/inlinecontent" } + : val.content === "table" + ? { type: "object", properties: {} } // TODO + : undefined, + // filter out default props (TODO: make option) + props: propSchemaToJSONSchema(val.propSchema), + // Object.fromEntries( + // Object.entries(val.propSchema).filter( + // (key) => typeof (defaultProps as any)[key[0]] === "undefined" + // ) + // ) + // ), + }, + additionalProperties: false, + required: ["type"], + }; + }) + ), + }; +} + +export function blockNoteSchemaToJSONSchema( + schema: Pick< + BlockNoteSchema, + "blockSchema" | "inlineContentSchema" | "styleSchema" + > +) { + schema = schemaOps(schema).removeFileBlocks().removeDefaultProps().get(); + return { + $defs: { + styles: styleSchemaToJSONSchema(schema.styleSchema), + styledtext: styledTextToJSONSchema(), + inlinecontent: inlineContentSchemaToJSONSchema( + schema.inlineContentSchema + ), + block: blockSchemaToJSONSchema(schema.blockSchema), + }, + }; +} + +type Writeable = { -readonly [P in keyof T]: T[P] }; + +export function schemaOps( + schema: Pick< + BlockNoteSchema, + "blockSchema" | "inlineContentSchema" | "styleSchema" + > +) { + const clone: Writeable = JSON.parse( + JSON.stringify({ + blockSchema: schema.blockSchema, + inlineContentSchema: schema.inlineContentSchema, + styleSchema: schema.styleSchema, + }) + ); + return { + removeFileBlocks() { + clone.blockSchema = Object.fromEntries( + Object.entries(clone.blockSchema).filter( + ([_key, val]) => !val.isFileBlock + ) + ); + return this; + }, + removeDefaultProps() { + clone.blockSchema = Object.fromEntries( + Object.entries(clone.blockSchema).map(([key, val]) => { + return [ + key, + { + ...val, + propSchema: Object.fromEntries( + Object.entries(val.propSchema).filter( + (key) => typeof (defaultProps as any)[key[0]] === "undefined" + ) + ) as any, + }, + ]; + }) + ); + return this; + }, + + get() { + return clone; + }, + }; +} diff --git a/packages/xl-ai/src/api/util/JSONSchema.ts b/packages/xl-ai/src/api/util/JSONSchema.ts new file mode 100644 index 000000000..f0061aedc --- /dev/null +++ b/packages/xl-ai/src/api/util/JSONSchema.ts @@ -0,0 +1,8 @@ +export type SimpleJSONObjectSchema = { + type: "object"; + properties: { + [key: string]: any; + }; + required?: string[]; + additionalProperties?: boolean; +}; diff --git a/packages/xl-ai/src/api/util/suffixIDs.ts b/packages/xl-ai/src/api/util/suffixIDs.ts new file mode 100644 index 000000000..416070433 --- /dev/null +++ b/packages/xl-ai/src/api/util/suffixIDs.ts @@ -0,0 +1,16 @@ +import type { + Block, + BlockSchema, + InlineContentSchema, + StyleSchema, +} from "@blocknote/core"; + +export function suffixIDs< + T extends Block +>(blocks: T[]): T[] { + return blocks.map((block) => ({ + ...block, + id: `${block.id}$`, + children: suffixIDs(block.children), + })); +} diff --git a/packages/xl-ai/src/api/util/trimArray.ts b/packages/xl-ai/src/api/util/trimArray.ts new file mode 100644 index 000000000..a4e2fe3b5 --- /dev/null +++ b/packages/xl-ai/src/api/util/trimArray.ts @@ -0,0 +1,17 @@ +export function trimArray(arr: T[], matchFn: (element: T) => boolean): T[] { + let start = 0; + let end = arr.length; + + // Find the first non-matching element from the start + while (start < end && matchFn(arr[start])) { + start++; + } + + // Find the first non-matching element from the end + while (end > start && matchFn(arr[end - 1])) { + end--; + } + + // Slice the array to include only the untrimmed portion + return arr.slice(start, end); +} diff --git a/packages/xl-ai/src/blocks/AIBlock.tsx.bak b/packages/xl-ai/src/blocks/AIBlock.tsx.bak new file mode 100644 index 000000000..77279fbeb --- /dev/null +++ b/packages/xl-ai/src/blocks/AIBlock.tsx.bak @@ -0,0 +1,90 @@ +import { BlockConfig, PropSchema, defaultProps } from "@blocknote/core"; +import { + ReactCustomBlockRenderProps, + createReactBlockSpec, +} from "@blocknote/react"; +import { KeyboardEvent, useCallback, useState } from "react"; +import { RiSparkling2Fill } from "react-icons/ri"; + +import { mockAIReplaceBlockContent } from "./mockAIFunctions.js"; + +export const aiPropSchema = { + ...defaultProps, + prompt: { + default: "" as const, + }, + timeGenerated: { + default: 0 as const, + }, +} satisfies PropSchema; + +export const aiBlockConfig = { + type: "ai" as const, + propSchema: aiPropSchema, + content: "inline", +} satisfies BlockConfig; + +export const AIRender = ( + props: ReactCustomBlockRenderProps +) => { + const [generating, setGenerating] = useState(false); + + const replaceContent = useCallback(async () => { + setGenerating(true); + + const prompt = await props.editor.blocksToMarkdownLossy([ + props.block as any, + ]); + await mockAIReplaceBlockContent(props.editor, prompt, props.block); + + setGenerating(false); + + props.editor.updateBlock(props.block, { + props: { + timeGenerated: Date.now(), + }, + }); + }, [props.block, props.editor]); + + const replaceContentOnEnter = useCallback( + async (event: KeyboardEvent) => { + const currentBlock = props.editor.getTextCursorPosition().block; + + if ( + event.key === "Enter" && + !props.editor.getSelection() && + currentBlock.id === props.block.id && + currentBlock.props.prompt === "" + ) { + event.preventDefault(); + event.stopPropagation(); + + await replaceContent(); + } + }, + [props.block, props.editor, replaceContent] + ); + + if (props.block.props.prompt) { + return

; + } + + return ( +

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

; + +export const AIBlock = createReactBlockSpec(aiBlockConfig, { + render: AIRender, + toExternalHTML: AIToExternalHTML, +}); diff --git a/packages/xl-ai/src/components/AIBlockToolbar/AIBlockToolbar.tsx.bak b/packages/xl-ai/src/components/AIBlockToolbar/AIBlockToolbar.tsx.bak new file mode 100644 index 000000000..9792e7730 --- /dev/null +++ b/packages/xl-ai/src/components/AIBlockToolbar/AIBlockToolbar.tsx.bak @@ -0,0 +1,40 @@ +import { useComponentsContext } from "@blocknote/react"; +import { ReactNode, useState } from "react"; + +import { AIBlockToolbarProps } from "./AIBlockToolbarProps.ts.bak"; +import { ShowPromptButton } from "./DefaultButtons/ShowPromptButton.tsx.bak"; +import { UpdateButton } from "./DefaultButtons/UpdateButton.tsx.bak"; + +export const getAIBlockToolbarItems = ( + props: AIBlockToolbarProps & { + updating: boolean; + setUpdating: (updating: boolean) => void; + } +): JSX.Element[] => [ + , + , +]; + +/** + * By default, the AIToolbar component will render with default buttons. + * However, you can override the selects/buttons to render by passing children. + * The children you pass should be: + * + * - Default buttons: Components found within the `/DefaultButtons` directory. + * - Custom buttons: Buttons made using the Components.AIToolbar.Button + * component from the component context. + */ +export const AIBlockToolbar = ( + props: AIBlockToolbarProps & { children?: ReactNode } +) => { + const Components = useComponentsContext()!; + + const [updating, setUpdating] = useState(false); + + return ( + + {props.children || + getAIBlockToolbarItems({ ...props, updating, setUpdating })} + + ); +}; diff --git a/packages/xl-ai/src/components/AIBlockToolbar/AIBlockToolbarController.tsx.bak b/packages/xl-ai/src/components/AIBlockToolbar/AIBlockToolbarController.tsx.bak new file mode 100644 index 000000000..bf7e2464c --- /dev/null +++ b/packages/xl-ai/src/components/AIBlockToolbar/AIBlockToolbarController.tsx.bak @@ -0,0 +1,61 @@ +import { BlockSchema, InlineContentSchema, StyleSchema } from "@blocknote/core"; +import { + useBlockNoteEditor, + useUIElementPositioning, + useUIPluginState, +} from "@blocknote/react"; +import { flip, offset } from "@floating-ui/react"; +import { FC } from "react"; + +import { AIBlockToolbarProsemirrorPlugin } from "../../extensions/AIBlockToolbar/AIBlockToolbarPlugin.js"; +import { AIBlockToolbar } from "./AIBlockToolbar.tsx.bak"; +import { AIBlockToolbarProps } from "./AIBlockToolbarProps.ts.bak"; + +export const AIBlockToolbarController = (props: { + aiToolbar?: FC; +}) => { + const editor = useBlockNoteEditor< + BlockSchema, + InlineContentSchema, + StyleSchema + >(); + + if (!editor.extensions.aiBlockToolbar) { + throw new Error( + "AIToolbarController can only be used when BlockNote editor schema contains an AI block" + ); + } + + // TODO + const state = useUIPluginState( + ( + editor.extensions.aiBlockToolbar as AIBlockToolbarProsemirrorPlugin + ).onUpdate.bind( + editor.extensions.aiBlockToolbar as AIBlockToolbarProsemirrorPlugin + ) + ); + + const { isMounted, ref, style, getFloatingProps } = useUIElementPositioning( + state?.show || false, + state?.referencePos || null, + 3000, + { + placement: "top-end", + middleware: [offset(10), flip()], + } + ); + + if (!isMounted || !state) { + return null; + } + + const { prompt } = state; + + const Component = props.aiToolbar || AIBlockToolbar; + + return ( +

+ +
+ ); +}; diff --git a/packages/xl-ai/src/components/AIBlockToolbar/AIBlockToolbarProps.ts.bak b/packages/xl-ai/src/components/AIBlockToolbar/AIBlockToolbarProps.ts.bak new file mode 100644 index 000000000..3dc8b5108 --- /dev/null +++ b/packages/xl-ai/src/components/AIBlockToolbar/AIBlockToolbarProps.ts.bak @@ -0,0 +1,3 @@ +export type AIBlockToolbarProps = { + prompt: string; +}; diff --git a/packages/xl-ai/src/components/AIBlockToolbar/DefaultButtons/ShowPromptButton.tsx.bak b/packages/xl-ai/src/components/AIBlockToolbar/DefaultButtons/ShowPromptButton.tsx.bak new file mode 100644 index 000000000..47072c0ce --- /dev/null +++ b/packages/xl-ai/src/components/AIBlockToolbar/DefaultButtons/ShowPromptButton.tsx.bak @@ -0,0 +1,119 @@ +import { + BlockSchemaWithBlock, + InlineContentSchema, + StyleSchema, +} from "@blocknote/core"; +import { useComponentsContext } from "@blocknote/react"; +import { + ChangeEvent, + KeyboardEvent, + useCallback, + useEffect, + useState, +} from "react"; +import { RiSparkling2Fill } from "react-icons/ri"; + +import { useBlockNoteEditor } from "@blocknote/react"; +import { aiBlockConfig } from "../../../blocks/AIBlock.tsx.bak"; +import { mockAIReplaceBlockContent } from "../../../blocks/AIBlockContent/mockAIFunctions.js"; +import { useAIDictionary } from "../../../i18n/useAIDictionary.js"; +import { AIBlockToolbarProps } from "../AIBlockToolbarProps.ts.bak"; + +export const ShowPromptButton = ( + props: AIBlockToolbarProps & { + setUpdating: (updating: boolean) => void; + } +) => { + const dict = useAIDictionary(); + const Components = useComponentsContext()!; + + const editor = useBlockNoteEditor< + BlockSchemaWithBlock<"ai", typeof aiBlockConfig>, + InlineContentSchema, + StyleSchema + >(); + + const [opened, setOpened] = useState(false); + const [currentEditingPrompt, setCurrentEditingPrompt] = useState( + props.prompt + ); + + const handleClick = useCallback(() => setOpened(!opened), [opened]); + + const handleEnter = useCallback( + async (event: KeyboardEvent) => { + if (event.key === "Enter") { + event.preventDefault(); + props.setUpdating(true); + setOpened(false); + await mockAIReplaceBlockContent( + editor, + currentEditingPrompt, + editor.getTextCursorPosition().block + ); + props.setUpdating(false); + } + }, + [currentEditingPrompt, editor, props] + ); + + const handleChange = useCallback( + (event: ChangeEvent) => + setCurrentEditingPrompt(event.currentTarget.value), + [] + ); + + useEffect(() => { + const callback = () => setOpened(false); + + editor.domElement.addEventListener("mousedown", callback); + + return () => { + editor.domElement.removeEventListener("mousedown", callback); + }; + }, [editor.domElement]); + + if (!editor.isEditable) { + return null; + } + + return ( + + + } + label={dict.ai_block_toolbar.show_prompt} + onClick={handleClick}> + {dict.ai_block_toolbar.show_prompt} + + + + + } + value={currentEditingPrompt || ""} + autoFocus={true} + placeholder={""} + onKeyDown={handleEnter} + onChange={handleChange} + /> + + + + ); +}; diff --git a/packages/xl-ai/src/components/AIBlockToolbar/DefaultButtons/UpdateButton.tsx.bak b/packages/xl-ai/src/components/AIBlockToolbar/DefaultButtons/UpdateButton.tsx.bak new file mode 100644 index 000000000..cc0018792 --- /dev/null +++ b/packages/xl-ai/src/components/AIBlockToolbar/DefaultButtons/UpdateButton.tsx.bak @@ -0,0 +1,52 @@ +import { + BlockSchemaWithBlock, + InlineContentSchema, + StyleSchema, +} from "@blocknote/core"; +import { useComponentsContext } from "@blocknote/react"; + +import { useBlockNoteEditor } from "@blocknote/react"; +import { aiBlockConfig } from "../../../blocks/AIBlock.tsx.bak"; +import { mockAIReplaceBlockContent } from "../../../blocks/AIBlockContent/mockAIFunctions.js"; +import { useAIDictionary } from "../../../i18n/useAIDictionary.js"; +import { AIBlockToolbarProps } from "../AIBlockToolbarProps.ts.bak"; + +export const UpdateButton = ( + props: AIBlockToolbarProps & { + updating: boolean; + setUpdating: (updating: boolean) => void; + } +) => { + const dict = useAIDictionary(); + const Components = useComponentsContext()!; + + const editor = useBlockNoteEditor< + BlockSchemaWithBlock<"ai", typeof aiBlockConfig>, + InlineContentSchema, + StyleSchema + >(); + + if (!editor.isEditable) { + return null; + } + + return ( + { + props.setUpdating(true); + editor.focus(); + await mockAIReplaceBlockContent( + editor, + props.prompt, + editor.getTextCursorPosition().block + ); + props.setUpdating(false); + }}> + {props.updating + ? dict.ai_block_toolbar.updating + : dict.ai_block_toolbar.update} + + ); +}; diff --git a/packages/xl-ai/src/components/AIMenu/AIMenu.tsx b/packages/xl-ai/src/components/AIMenu/AIMenu.tsx new file mode 100644 index 000000000..e821939e4 --- /dev/null +++ b/packages/xl-ai/src/components/AIMenu/AIMenu.tsx @@ -0,0 +1,95 @@ +import { useBlockNoteEditor } from "@blocknote/react"; +import { useCallback, useEffect, useMemo, useState } from "react"; +// import { useAIDictionary } from "../../i18n/useAIDictionary"; +import { BlockNoteEditor } from "@blocknote/core"; +import { useAIDictionary } from "../../i18n/useAIDictionary.js"; +import { + BlockNoteAIContextValue, + useBlockNoteAIContext, +} from "../BlockNoteAIContext.js"; +import { PromptSuggestionMenu } from "./PromptSuggestionMenu.js"; +import { + AIMenuSuggestionItem, + getDefaultAIActionMenuItems, + getDefaultAIMenuItemsWithSelection, + getDefaultAIMenuItemsWithoutSelection, +} from "./getDefaultAIMenuItems.js"; + +export const AIMenu = (props: { + items?: ( + editor: BlockNoteEditor, + ctx: BlockNoteAIContextValue, + aiResponseStatus: "initial" | "generating" | "done" + ) => AIMenuSuggestionItem[]; + onManualPromptSubmit?: (prompt: string) => void; +}) => { + const editor = useBlockNoteEditor(); + const [prompt, setPrompt] = useState(""); + const dict = useAIDictionary(); + + const ctx = useBlockNoteAIContext(); + + const { aiResponseStatus } = ctx; + const { items: externalItems } = props; + // note, technically there might be a bug with this useMemo when quickly changing the selection and opening the menu + // would not call getDefaultAIMenuItems with the correct selection, because the component is reused and the memo not retriggered + // practically this should not happen (you can test it by using a high transition duration in useUIElementPositioning) + const items = useMemo(() => { + let items: AIMenuSuggestionItem[] = []; + if (externalItems) { + items = externalItems(editor, ctx, aiResponseStatus); + } else { + if (aiResponseStatus === "initial") { + items = editor.getSelection() + ? getDefaultAIMenuItemsWithSelection(editor, ctx) + : getDefaultAIMenuItemsWithoutSelection(editor, ctx); + } else if (ctx.aiResponseStatus === "done") { + items = getDefaultAIActionMenuItems(editor, ctx); + } + } + + // map from AI items to React Items required by PromptSuggestionMenu + return items.map((item) => { + return { + ...item, + onItemClick: () => { + item.onItemClick(setPrompt); + }, + }; + }); + }, [externalItems, aiResponseStatus, editor, ctx]); + + const onManualPromptSubmitDefault = useCallback( + async (prompt: string) => { + await ctx.callLLM({ + prompt, + useSelection: editor.getSelection() !== undefined, + }); + }, + [ctx, editor] + ); + + useEffect(() => { + // TODO: this is a bit hacky to run a useeffect to reset the prompt when the AI response is done + if (aiResponseStatus === "done") { + setPrompt(""); + } + }, [aiResponseStatus]); + + return ( + + ); +}; diff --git a/packages/xl-ai/src/components/AIMenu/BlockPositioner.tsx b/packages/xl-ai/src/components/AIMenu/BlockPositioner.tsx new file mode 100644 index 000000000..63c1b6ff7 --- /dev/null +++ b/packages/xl-ai/src/components/AIMenu/BlockPositioner.tsx @@ -0,0 +1,75 @@ +import { useUIElementPositioning } from "@blocknote/react"; +import { + OpenChangeReason, + autoUpdate, + flip, + offset, + size, +} from "@floating-ui/react"; +import { useMemo } from "react"; +// The block positioner automattically positions it's children below the block with `blockID` +export const BlockPositioner = (props: { + blockID?: string; + children: React.ReactNode; + onOpenChange?: ( + open: boolean, + event: Event, + reason: OpenChangeReason + ) => void; +}) => { + // TODO: desirable to do like this? + const element = document.querySelector( + `[data-id="${props.blockID}"]` + ) as HTMLElement; + + // Note that we can't pass element directly, because the useDismiss then doesn't work when clicking on the element + // (for that to work, we'd need to implement getReferenceProps(), but it's probably unsafe to attach those listeners to a prosemirror managed element) + const reference = useMemo(() => { + return element + ? { + getBoundingClientRect: () => element.getBoundingClientRect(), + contextElement: element, + } + : null; + }, [element]); + + const { isMounted, ref, style, getFloatingProps } = useUIElementPositioning( + element ? true : false, + + reference, + 3000, + { + // canDismiss: false, + placement: "bottom", + middleware: [ + offset(10), + flip(), + size({ + apply({ rects, elements }) { + Object.assign(elements.floating.style, { + width: `${rects.reference.width}px`, + }); + }, + }), + ], + onOpenChange: props.onOpenChange, + whileElementsMounted: autoUpdate, + } + ); + + if (!isMounted) { + return null; + } + + return ( +
+ {props.children} +
+ ); +}; diff --git a/packages/xl-ai/src/components/AIMenu/PromptSuggestionMenu.tsx b/packages/xl-ai/src/components/AIMenu/PromptSuggestionMenu.tsx new file mode 100644 index 000000000..c649a6d92 --- /dev/null +++ b/packages/xl-ai/src/components/AIMenu/PromptSuggestionMenu.tsx @@ -0,0 +1,131 @@ +import { filterSuggestionItems, mergeCSSClasses } from "@blocknote/core"; +import { + DefaultReactSuggestionItem, + useComponentsContext, + useSuggestionMenuKeyboardHandler, +} from "@blocknote/react"; +import { + ChangeEvent, + KeyboardEvent, + useCallback, + useEffect, + useMemo, + useState, +} from "react"; + +import { RiSparkling2Fill } from "react-icons/ri"; + +// import { useAIDictionary } from "../../i18n/useAIDictionary"; + +export type PromptSuggestionMenuProps = { + items: DefaultReactSuggestionItem[]; + onManualPromptSubmit: (prompt: string) => void; + promptText?: string; + onPromptTextChange?: (prompt: string) => void; + placeholder?: string; + disabled?: boolean; +}; + +export const PromptSuggestionMenu = (props: PromptSuggestionMenuProps) => { + // const dict = useAIDictionary(); + const Components = useComponentsContext()!; + + const { onManualPromptSubmit, promptText, onPromptTextChange } = props; + + // Only used internal state when `props.prompText` is undefined (i.e., uncontrolled mode) + const [internalPromptText, setInternalPromptText] = useState(""); + const promptTextToUse = promptText || internalPromptText; + + const handleEnter = useCallback( + async (event: KeyboardEvent) => { + if (event.key === "Enter") { + // console.log("ENTER", currentEditingPrompt); + onManualPromptSubmit(promptTextToUse); + } + }, + [promptTextToUse, onManualPromptSubmit] + ); + + const handleChange = useCallback( + (event: ChangeEvent) => { + const newValue = event.currentTarget.value; + if (onPromptTextChange) { + onPromptTextChange(newValue); + } + + // Only update internal state if it's uncontrolled + if (promptText === undefined) { + setInternalPromptText(newValue); + } + }, + [onPromptTextChange, setInternalPromptText, promptText] + ); + + const items: DefaultReactSuggestionItem[] = useMemo(() => { + return filterSuggestionItems(props.items, promptTextToUse); + }, [promptTextToUse, props.items]); + + const { selectedIndex, setSelectedIndex, handler } = + useSuggestionMenuKeyboardHandler(items, (item) => item.onItemClick()); + + const handleKeyDown = useCallback( + (event: KeyboardEvent) => { + // TODO: handle backspace to close + if (event.key === "Enter") { + if (items.length > 0) { + handler(event); + } else { + // TODO: check focus? + handleEnter(event); + } + } else { + handler(event); + } + }, + [handleEnter, handler, items.length] + ); + + // Resets index when items change + useEffect(() => { + setSelectedIndex(0); + }, [promptTextToUse, setSelectedIndex]); + + return ( +
+ + } + value={promptTextToUse || ""} + autoFocus={true} + placeholder={props.placeholder} + disabled={props.disabled} + onKeyDown={handleKeyDown} + onChange={handleChange} + autoComplete={"off"} + /> + + + {items.map((item, index) => ( + + ))} + +
+ ); +}; diff --git a/packages/xl-ai/src/components/AIMenu/getDefaultAIMenuItems.tsx b/packages/xl-ai/src/components/AIMenu/getDefaultAIMenuItems.tsx new file mode 100644 index 000000000..65b0d62f2 --- /dev/null +++ b/packages/xl-ai/src/components/AIMenu/getDefaultAIMenuItems.tsx @@ -0,0 +1,253 @@ +import { + BlockNoteEditor, + BlockSchema, + InlineContentSchema, + StyleSchema, +} from "@blocknote/core"; +import { DefaultReactSuggestionItem } from "@blocknote/react"; +import { + RiArrowGoBackFill, + RiBallPenLine, + RiCheckFill, + RiCheckLine, + RiEarthLine, + RiListCheck3, + RiMagicLine, + RiText, + RiTextWrap, +} from "react-icons/ri"; +import { addFunction } from "../../api/functions/add.js"; +import { updateFunction } from "../../api/functions/update.js"; +import { getAIDictionary } from "../../i18n/dictionary.js"; +import { BlockNoteAIContextValue } from "../BlockNoteAIContext.js"; + +export type AIMenuSuggestionItem = Omit< + DefaultReactSuggestionItem, + "onItemClick" +> & { + onItemClick: (setPrompt: (prompt: string) => void) => void; +}; + +/** + * Default items we show in the AI Menu when there is no selection active. + * For example, when the AI menu is triggered via the slash menu + */ +export function getDefaultAIMenuItemsWithoutSelection< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +>( + editor: BlockNoteEditor, + contextValue: BlockNoteAIContextValue +): AIMenuSuggestionItem[] { + const dict = getAIDictionary(editor); + + return [ + { + key: "continue_writing", + title: dict.ai_menu.continue_writing.title, + aliases: dict.ai_menu.continue_writing.aliases, + icon: , + onItemClick: async () => { + await contextValue.callLLM({ + prompt: "Continue writing", + // By default, LLM will be able to add / update / delete blocks. For "continue writing", we only want to allow adding new blocks. + functions: [addFunction], + }); + }, + size: "small", + }, + + { + key: "summarize", + title: dict.ai_menu.summarize.title, + aliases: dict.ai_menu.summarize.aliases, + icon: , + onItemClick: async () => { + await contextValue.callLLM({ + prompt: "Summarize", + // By default, LLM will be able to add / update / delete blocks. For "summarize", we only want to allow adding new blocks. + functions: [addFunction], + }); + }, + size: "small", + }, + { + key: "action_items", + title: dict.ai_menu.add_action_items.title, + aliases: dict.ai_menu.add_action_items.aliases, + icon: , + onItemClick: async () => { + await contextValue.callLLM({ + prompt: "Add action items", + // By default, LLM will be able to add / update / delete blocks. For "summarize", we only want to allow adding new blocks. + functions: [addFunction], + }); + }, + size: "small", + }, + { + key: "write_anything", + title: dict.ai_menu.write_anything.title, + aliases: dict.ai_menu.write_anything.aliases, + icon: , + onItemClick: (setPrompt) => { + setPrompt(dict.ai_menu.write_anything.prompt_placeholder); + }, + size: "small", + }, + ]; +} + +/** + * Default items we show in the AI Menu when there is a selection active. + * For example, when the AI menu is triggered via formatting toolbar (AIToolbarButton) + */ +export function getDefaultAIMenuItemsWithSelection< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +>( + editor: BlockNoteEditor, + contextValue: BlockNoteAIContextValue +): AIMenuSuggestionItem[] { + const dict = getAIDictionary(editor); + + return [ + { + key: "improve_writing", + title: dict.ai_menu.improve_writing.title, + aliases: dict.ai_menu.improve_writing.aliases, + icon: , + onItemClick: async () => { + await contextValue.callLLM({ + useSelection: true, + prompt: "Improve writing", + // By default, LLM will be able to add / update / delete blocks. For "summarize", we only want to allow adding new blocks. + functions: [updateFunction], + }); + }, + size: "small", + }, + { + key: "fix_spelling", + title: dict.ai_menu.fix_spelling.title, + aliases: dict.ai_menu.fix_spelling.aliases, + icon: , + onItemClick: async () => { + await contextValue.callLLM({ + useSelection: true, + prompt: "Fix spelling", + // By default, LLM will be able to add / update / delete blocks. For "summarize", we only want to allow adding new blocks. + functions: [updateFunction], + }); + }, + size: "small", + }, + { + key: "translate", + title: dict.ai_menu.translate.title, + aliases: dict.ai_menu.translate.aliases, + icon: , + onItemClick: (setPrompt) => { + setPrompt(dict.ai_menu.translate.prompt_placeholder); + }, + size: "small", + }, + { + key: "simplify", + title: dict.ai_menu.simplify.title, + aliases: dict.ai_menu.simplify.aliases, + icon: , + onItemClick: async () => { + await contextValue.callLLM({ + useSelection: true, + prompt: "Simplify", + // By default, LLM will be able to add / update / delete blocks. For "summarize", we only want to allow adding new blocks. + functions: [updateFunction], + }); + }, + size: "small", + }, + ]; +} + +/** + * Default items we show in the AI Menu when the AI response is done. + */ +export function getDefaultAIActionMenuItems< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +>( + editor: BlockNoteEditor, + contextValue: BlockNoteAIContextValue +): AIMenuSuggestionItem[] { + const dict = getAIDictionary(editor); + + return [ + { + key: "accept", + title: dict.ai_menu.accept.title, + aliases: dict.ai_menu.accept.aliases, + icon: , + onItemClick: (_setPrompt) => { + contextValue.setAiMenuBlockID(undefined); + contextValue.setPrevDocument(undefined); + contextValue.setAIResponseStatus("initial"); + }, + size: "small", + }, + // TODO: retry UX + // { + // key: "retry", + // title: dict.ai_menu.retry.title, + // aliases: dict.ai_menu.retry.aliases, + // icon: , + // onItemClick: () => { + // console.log("RETRY"); + // }, + // size: "small", + // }, + { + key: "revert", + title: dict.ai_menu.revert.title, + aliases: dict.ai_menu.revert.aliases, + icon: , + onItemClick: () => { + editor.replaceBlocks(editor.document, contextValue.prevDocument as any); + contextValue.setAiMenuBlockID(undefined); + contextValue.setPrevDocument(undefined); + contextValue.setAIResponseStatus("initial"); + }, + size: "small", + }, + ]; +} + +/** +3 examples: + +input: +- pass schema / blocks / functions + +1) block -> markdown, markdown -> block +2) pass entire document +3) functions (updateBlock, insertBlock, deleteBlock) + + +response: +- markdown +- entire document (text stream) +- entire document (block call streams) + * + */ + +// const context = createAIExecutionContext(editor, prompt, () = { +// // add ai command +// // add context + +// // apply streaming response +// context.execute(); +// }); +// aitoolbar.open(context); diff --git a/packages/xl-ai/src/components/BlockNoteAIContext.tsx b/packages/xl-ai/src/components/BlockNoteAIContext.tsx new file mode 100644 index 000000000..25322a117 --- /dev/null +++ b/packages/xl-ai/src/components/BlockNoteAIContext.tsx @@ -0,0 +1,143 @@ +import { Block } from "@blocknote/core"; +import { useBlockNoteEditor } from "@blocknote/react"; +import { LanguageModel } from "ai"; +import { createContext, useCallback, useContext, useState } from "react"; +import { PromptOrMessages, llm } from "../api/index.js"; + +// parameters that are shared across all calls and can be configured on the context as "application wide" settings +type GlobalLLMCallOptions = { + model: LanguageModel; +} & ( + | { + dataFormat?: "json"; + stream?: boolean; + } + | { + dataFormat?: "markdown"; + stream?: false; + } +); + +// parameters that are specific to each call +type CallSpecificCallLLMOptions = Omit< + Parameters[1] & Parameters[1], + "model" | "stream" | "prompt" | "messages" +> & + PromptOrMessages; + +export type BlockNoteAIContextValue = { + callLLM: (options: CallSpecificCallLLMOptions) => Promise; // TODO: figure out return value + aiMenuBlockID: ReturnType>[0]; + setAiMenuBlockID: ReturnType>[1]; + aiResponseStatus: "initial" | "generating" | "done"; + setAIResponseStatus: ( + aiResponseStatus: "initial" | "generating" | "done" + ) => void; + prevDocument: ReturnType< + typeof useState[] | undefined> + >[0]; + setPrevDocument: ReturnType< + typeof useState[] | undefined> + >[1]; +} & GlobalLLMCallOptions; + +export const BlockNoteAIContext = createContext< + BlockNoteAIContextValue | undefined +>(undefined); + +export function useBlockNoteAIContext(): BlockNoteAIContextValue { + const context = useContext(BlockNoteAIContext); + + if (!context) { + throw new Error( + "useBlockNoteAIContext must be used within a BlockNoteAIContextProvider" + ); + } + + return context; +} + +export function BlockNoteAIContextProvider( + props: { + children: React.ReactNode; + } & GlobalLLMCallOptions +) { + const editor = useBlockNoteEditor(); + const { children, ...globalLLMCallOptions } = props; + const [aiMenuBlockID, setAiMenuBlockID] = useState( + undefined + ); + const [prevDocument, setPrevDocument] = useState< + Block[] | undefined + >(editor.document); + + const { model, dataFormat, stream } = globalLLMCallOptions; + + const [aiResponseStatus, setAIResponseStatus] = useState< + "initial" | "generating" | "done" + >("initial"); + + // We provide a function that uses the global options to call LLM functions + const callLLM = useCallback( + async (options: CallSpecificCallLLMOptions) => { + setPrevDocument(editor.document); + setAIResponseStatus("generating"); + let ret: any; + try { + if (dataFormat === "json") { + ret = await llm.json.call(editor, { + model, + stream, + ...options, + }); + } else { + if (options.functions) { + // eslint-disable-next-line no-console + console.warn( + "functions are not supported for markdown, ignoring them" + ); + } + ret = await llm.markdown.call(editor, { model, ...options }); + } + setAIResponseStatus((old) => { + // if the menu has been closed already, it's probably set to "initial" and not "generating" anymore, + // in that case, don't set it to "done" + if (old === "generating") { + return "done"; + } + return old; + }); + return ret; + } catch (e) { + setAIResponseStatus("initial"); + setPrevDocument(undefined); + // eslint-disable-next-line no-console + console.error(e); + } + }, + [model, dataFormat, stream, editor] + ); + + // TODO: Revisit - this pattern might be a bit iffy + // Make editor non-editable after calling the LLM, until the user accepts or + // reverts the changes. + // useEffect(() => { + // editor.isEditable = aiResponseStatus === "initial"; + // }, [aiResponseStatus, editor]); + + return ( + + {props.children} + + ); +} diff --git a/packages/xl-ai/src/components/BlockNoteAIUI.tsx b/packages/xl-ai/src/components/BlockNoteAIUI.tsx new file mode 100644 index 000000000..72d8aa91c --- /dev/null +++ b/packages/xl-ai/src/components/BlockNoteAIUI.tsx @@ -0,0 +1,51 @@ +import { useBlockNoteEditor } from "@blocknote/react"; + +import { AIMenu } from "./AIMenu/AIMenu.js"; +import { BlockPositioner } from "./AIMenu/BlockPositioner.js"; +import { useBlockNoteAIContext } from "./BlockNoteAIContext.js"; + +export type BlockNoteAIUIProps = { + aiBlockToolbar?: boolean; + aiInlineToolbar?: boolean; + aiMenu?: boolean; +}; + +export function BlockNoteAIUI(props: BlockNoteAIUIProps) { + const editor = useBlockNoteEditor(); + + if (!editor) { + throw new Error( + "BlockNoteDefaultUI must be used within a BlockNoteContext.Provider" + ); + } + + return ( + <> + {/* {editor.extensions.aiBlockToolbar && props.aiBlockToolbar !== false && ( + + )} */} + {props.aiMenu !== false && } + + ); +} + +const AIMenuController = () => { + const editor = useBlockNoteEditor(); + const ctx = useBlockNoteAIContext(); + + return ( + { + if (!open && ctx.aiMenuBlockID) { + ctx.setAiMenuBlockID(undefined); + ctx.setAIResponseStatus("initial"); + ctx.setPrevDocument(undefined); + editor.focus(); + // TODO: doesn't work with esc? + } + }}> + + + ); +}; diff --git a/packages/xl-ai/src/components/FormattingToolbar/AIToolbarButton.tsx b/packages/xl-ai/src/components/FormattingToolbar/AIToolbarButton.tsx new file mode 100644 index 000000000..7c1928ea5 --- /dev/null +++ b/packages/xl-ai/src/components/FormattingToolbar/AIToolbarButton.tsx @@ -0,0 +1,39 @@ +import { BlockSchema, InlineContentSchema, StyleSchema } from "@blocknote/core"; +import { useComponentsContext } from "@blocknote/react"; +import { RiSparkling2Fill } from "react-icons/ri"; + +import { useBlockNoteEditor } from "@blocknote/react"; + +import { useAIDictionary } from "../../i18n/useAIDictionary.js"; +import { useBlockNoteAIContext } from "../BlockNoteAIContext.js"; + +export const AIToolbarButton = () => { + const dict = useAIDictionary(); + const Components = useComponentsContext()!; + const ctx = useBlockNoteAIContext(); + const editor = useBlockNoteEditor< + BlockSchema, + InlineContentSchema, + StyleSchema + >(); + + const onClick = () => { + editor.formattingToolbar.closeMenu(); + const position = editor.getTextCursorPosition().block; + ctx.setAiMenuBlockID(position.id); + }; + + if (!editor.isEditable) { + return null; + } + + return ( + } + onClick={onClick} + /> + ); +}; diff --git a/packages/xl-ai/src/components/FormattingToolbar/DefaultSelects/BlockTypeSelect.tsx b/packages/xl-ai/src/components/FormattingToolbar/DefaultSelects/BlockTypeSelect.tsx new file mode 100644 index 000000000..7820fb082 --- /dev/null +++ b/packages/xl-ai/src/components/FormattingToolbar/DefaultSelects/BlockTypeSelect.tsx @@ -0,0 +1,18 @@ +import { RiSparkling2Fill } from "react-icons/ri"; + +import { BlockTypeSelectItem } from "@blocknote/react"; +import { AIDictionary } from "../../../i18n/dictionary.js"; + +// TODO: rename? +export const aiBlockTypeSelectItems = ( + dict: AIDictionary +): BlockTypeSelectItem[] => [ + { + name: dict.slash_menu.ai_block.title, + type: "ai", + icon: RiSparkling2Fill, + isSelected: (block) => block.type === "ai", + showWhileSelected: true, + showWhileNotSelected: false, + }, +]; diff --git a/packages/xl-ai/src/components/SuggestionMenu/getAISlashMenuItems.tsx b/packages/xl-ai/src/components/SuggestionMenu/getAISlashMenuItems.tsx new file mode 100644 index 000000000..18e94b717 --- /dev/null +++ b/packages/xl-ai/src/components/SuggestionMenu/getAISlashMenuItems.tsx @@ -0,0 +1,63 @@ +import { + BlockNoteEditor, + BlockSchema, + InlineContentSchema, + StyleSchema, +} from "@blocknote/core"; +import { DefaultReactSuggestionItem } from "@blocknote/react"; +import { RiSparkling2Fill } from "react-icons/ri"; + +import { getAIDictionary } from "../../i18n/dictionary.js"; +import { BlockNoteAIContextValue } from "../BlockNoteAIContext.js"; + +const Icons = { + AI: RiSparkling2Fill, +}; + +/** + * Returns AI related items that can be added to the slash menu + */ +export function getAISlashMenuItems< + BSchema extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +>( + editor: BlockNoteEditor, + ctx: BlockNoteAIContextValue +): DefaultReactSuggestionItem[] { + const items = [ + { + key: "ai", + onItemClick: () => { + const cursor = editor.getTextCursorPosition(); + if ( + cursor.block.content && + Array.isArray(cursor.block.content) && // isarray check not ideal + cursor.block.content.length === 0 && + cursor.prevBlock + ) { + ctx.setAiMenuBlockID(cursor.prevBlock.id); + } else { + ctx.setAiMenuBlockID(cursor.block.id); + } + }, + ...getAIDictionary(editor).slash_menu.ai, + icon: , + }, + ]; + + // if (checkBlockTypeInSchema(aiBlockConfig, editor)) { + // items.push({ + // key: "ai_block", + // onItemClick: () => { + // insertOrUpdateBlock(editor, { + // type: "ai", + // }); + // }, + // ...getAIDictionary(editor).slash_menu.ai_block, + // icon: , + // }); + // } + + return items; +} diff --git a/packages/xl-ai/src/extensions/AIBlockToolbar/AIBlockToolbarPlugin.ts b/packages/xl-ai/src/extensions/AIBlockToolbar/AIBlockToolbarPlugin.ts new file mode 100644 index 000000000..40a5b7553 --- /dev/null +++ b/packages/xl-ai/src/extensions/AIBlockToolbar/AIBlockToolbarPlugin.ts @@ -0,0 +1,166 @@ +import { + BlockInfo, + EventEmitter, + UiElementPosition, + getBlockInfoFromSelection, +} from "@blocknote/core"; +import { Plugin, PluginKey, PluginView } from "prosemirror-state"; +import { EditorView } from "prosemirror-view"; + +export type AIBlockToolbarState = UiElementPosition & { prompt?: string }; + +export class AIBlockToolbarView implements PluginView { + public state?: AIBlockToolbarState; + public emitUpdate: () => void; + + public oldBlockInfo: BlockInfo | undefined; + public domElement: HTMLElement | undefined; + + constructor( + private readonly pmView: EditorView, + emitUpdate: (state: AIBlockToolbarState) => void + ) { + this.emitUpdate = () => { + if (!this.state) { + throw new Error("Attempting to update uninitialized AI toolbar"); + } + + emitUpdate(this.state); + }; + + pmView.dom.addEventListener("dragstart", this.dragHandler); + pmView.dom.addEventListener("dragover", this.dragHandler); + pmView.dom.addEventListener("blur", this.blurHandler); + + // Setting capture=true ensures that any parent container of the editor that + // gets scrolled will trigger the scroll event. Scroll events do not bubble + // and so won't propagate to the document by default. + pmView.root.addEventListener("scroll", this.scrollHandler, true); + } + + blurHandler = (event: FocusEvent) => { + const editorWrapper = this.pmView.dom.parentElement!; + + // Checks if the focus is moving to an element outside the editor. If it is, + // the toolbar is hidden. + if ( + // An element is clicked. + event && + event.relatedTarget && + // Element is inside the editor. + (editorWrapper === (event.relatedTarget as Node) || + editorWrapper.contains(event.relatedTarget as Node) || + (event.relatedTarget as HTMLElement).matches( + ".bn-container, .bn-container *" + )) + ) { + return; + } + + if (this.state?.show) { + this.state.show = false; + this.emitUpdate(); + } + }; + + // For dragging the whole editor. + dragHandler = () => { + if (this.state?.show) { + this.state.show = false; + this.emitUpdate(); + } + }; + + scrollHandler = () => { + if (this.state?.show) { + this.state.referencePos = this.domElement!.getBoundingClientRect(); + this.emitUpdate(); + } + }; + + update(view: EditorView) { + const blockInfo = getBlockInfoFromSelection(view.state); + + // Return if the selection remains in a non-AI block. + if ( + blockInfo.blockNoteType !== "ai" && + this.oldBlockInfo?.blockNoteType !== "ai" + ) { + this.oldBlockInfo = blockInfo; + return; + } + + this.oldBlockInfo = blockInfo; + + // Selection is in an AI block that wasn't previously selected. + if ( + blockInfo.blockNoteType === "ai" && + blockInfo.bnBlock.node.attrs.prompt !== "" && + view.state.selection.$from.sameParent(view.state.selection.$to) + ) { + this.domElement = view.domAtPos(blockInfo.bnBlock.beforePos).node + .firstChild as HTMLElement; + + this.state = { + prompt: blockInfo.bnBlock.node.attrs.prompt, + show: true, + referencePos: this.domElement.getBoundingClientRect(), + }; + + this.emitUpdate(); + + return; + } + + // Selection is not in an AI block but previously was in one. + if (this.state?.show) { + this.state.show = false; + this.emitUpdate(); + } + } + + destroy() { + this.pmView.dom.removeEventListener("dragstart", this.dragHandler); + this.pmView.dom.removeEventListener("dragover", this.dragHandler); + this.pmView.dom.removeEventListener("blur", this.blurHandler); + + this.pmView.root.removeEventListener("scroll", this.scrollHandler, true); + } + + closeMenu = () => { + if (this.state?.show) { + this.state.show = false; + this.emitUpdate(); + } + }; +} + +export const aiBlockToolbarPluginKey = new PluginKey("AIBlockToolbarPlugin"); + +export class AIBlockToolbarProsemirrorPlugin extends EventEmitter { + private view: AIBlockToolbarView | undefined; + public readonly plugin: Plugin; + + constructor() { + super(); + this.plugin = new Plugin({ + key: aiBlockToolbarPluginKey, + view: (editorView) => { + this.view = new AIBlockToolbarView(editorView, (state) => { + this.emit("update", state); + }); + return this.view; + }, + }); + } + + public get shown() { + return this.view?.state?.show || false; + } + + public onUpdate(callback: (state: AIBlockToolbarState) => void) { + return this.on("update", callback); + } + + public closeMenu = () => this.view!.closeMenu(); +} diff --git a/packages/xl-ai/src/extensions/AIInlineToolbar/AIInlineToolbarPlugin.ts b/packages/xl-ai/src/extensions/AIInlineToolbar/AIInlineToolbarPlugin.ts new file mode 100644 index 000000000..b3dcc3771 --- /dev/null +++ b/packages/xl-ai/src/extensions/AIInlineToolbar/AIInlineToolbarPlugin.ts @@ -0,0 +1,232 @@ +import { EventEmitter, UiElementPosition } from "@blocknote/core"; +import { isNodeSelection, posToDOMRect } from "@tiptap/core"; +import { Plugin, PluginKey, PluginView } from "prosemirror-state"; +import { EditorView } from "prosemirror-view"; + +export type AIInlineToolbarState = UiElementPosition & { + prompt: string; + operation: "replaceSelection" | "insertAfterSelection"; +}; + +export class AIInlineToolbarView implements PluginView { + public state?: AIInlineToolbarState; + public emitUpdate: () => void; + + constructor( + private readonly pmView: EditorView, + emitUpdate: (state: AIInlineToolbarState) => void + ) { + this.emitUpdate = () => { + if (!this.state) { + throw new Error("Attempting to update uninitialized AI toolbar"); + } + + emitUpdate(this.state); + }; + + pmView.dom.addEventListener("dragstart", this.dragHandler); + pmView.dom.addEventListener("dragover", this.dragHandler); + pmView.dom.addEventListener("blur", this.blurHandler); + // pmView.dom.addEventListener("mousedown", this.closeHandler, true); + // pmView.dom.addEventListener("keydown", this.closeHandler, true); + + // Setting capture=true ensures that any parent container of the editor that + // gets scrolled will trigger the scroll event. Scroll events do not bubble + // and so won't propagate to the document by default. + pmView.root.addEventListener("scroll", this.scrollHandler, true); + } + + blurHandler = (event: FocusEvent) => { + const editorWrapper = this.pmView.dom.parentElement!; + + // Checks if the focus is moving to an element outside the editor. If it is, + // the toolbar is hidden. + if ( + // An element is clicked. + event && + event.relatedTarget && + // Element is inside the editor. + (editorWrapper === (event.relatedTarget as Node) || + editorWrapper.contains(event.relatedTarget as Node) || + (event.relatedTarget as HTMLElement).matches( + ".bn-container, .bn-container *" + )) + ) { + return; + } + + if (this.state?.show) { + this.state.show = false; + this.emitUpdate(); + } + }; + + // For dragging the whole editor. + dragHandler = () => { + if (this.state?.show) { + this.state.show = false; + this.emitUpdate(); + } + }; + + closeHandler = () => this.close(); + + scrollHandler = () => { + if (this.state?.show) { + this.state.referencePos = this.getSelectionBoundingBox(); + this.emitUpdate(); + } + }; + + update(view: EditorView) { + const pluginState: AIInlineToolbarPluginState = + aiInlineToolbarPluginKey.getState(view.state); + + if (this.state && !this.state.show && !pluginState.open) { + return; + } + + if (pluginState.open) { + this.state = { + show: true, + referencePos: this.getSelectionBoundingBox(), + prompt: pluginState.prompt, + operation: pluginState.operation, + }; + + this.emitUpdate(); + + return; + } + + if (this.state?.show) { + this.state.show = false; + this.emitUpdate(); + } + } + + destroy() { + this.pmView.dom.removeEventListener("dragstart", this.dragHandler); + this.pmView.dom.removeEventListener("dragover", this.dragHandler); + this.pmView.dom.removeEventListener("blur", this.blurHandler); + // this.pmView.dom.removeEventListener("mousedown", this.closeHandler); + // this.pmView.dom.removeEventListener("keydown", this.closeHandler); + + this.pmView.root.removeEventListener("scroll", this.scrollHandler, true); + } + + open(prompt: string, operation: "replaceSelection" | "insertAfterSelection") { + this.pmView.dispatch( + this.pmView.state.tr.scrollIntoView().setMeta(aiInlineToolbarPluginKey, { + open: true, + prompt, + operation, + }) + ); + } + + close() { + this.pmView.focus(); + this.pmView.dispatch( + this.pmView.state.tr.scrollIntoView().setMeta(aiInlineToolbarPluginKey, { + open: false, + }) + ); + } + + closeMenu = () => { + if (this.state?.show) { + this.state.show = false; + this.emitUpdate(); + } + }; + + getSelectionBoundingBox() { + const { state } = this.pmView; + const { selection } = state; + + // support for CellSelections + const { ranges } = selection; + const from = Math.min(...ranges.map((range) => range.$from.pos)); + const to = Math.max(...ranges.map((range) => range.$to.pos)); + + if (isNodeSelection(selection)) { + const node = this.pmView.nodeDOM(from) as HTMLElement; + + if (node) { + return node.getBoundingClientRect(); + } + } + + return posToDOMRect(this.pmView, from, to); + } +} + +type AIInlineToolbarPluginState = + | { + open: true; + prompt: string; + operation: "replaceSelection" | "insertAfterSelection"; + } + | { open: false }; + +export const aiInlineToolbarPluginKey = new PluginKey("AIInlineToolbarPlugin"); + +export class AIInlineToolbarProsemirrorPlugin extends EventEmitter { + private view: AIInlineToolbarView | undefined; + public readonly plugin: Plugin; + constructor() { + super(); + + this.plugin = new Plugin({ + key: aiInlineToolbarPluginKey, + + view: (editorView) => { + this.view = new AIInlineToolbarView(editorView, (state) => { + this.emit("update", state); + }); + return this.view; + }, + + state: { + // Initialize the plugin's internal state. + init(): AIInlineToolbarPluginState { + return { open: false }; + }, + + // Apply changes to the plugin state from an editor transaction. + apply(transaction, prev) { + const meta: AIInlineToolbarPluginState | undefined = + transaction.getMeta(aiInlineToolbarPluginKey); + + if (meta === undefined) { + return prev; + } + + return meta; + }, + }, + }); + } + + public open( + prompt: string, + operation: "replaceSelection" | "insertAfterSelection" + ) { + this.view?.open(prompt, operation); + } + + public close() { + this.view?.close(); + } + + public get shown() { + return this.view?.state?.show || false; + } + + public onUpdate(callback: (state: AIInlineToolbarState) => void) { + return this.on("update", callback); + } + + public closeMenu = () => this.view!.closeMenu(); +} diff --git a/packages/xl-ai/src/extensions/AIShowSelectionPlugin.ts b/packages/xl-ai/src/extensions/AIShowSelectionPlugin.ts new file mode 100644 index 000000000..6dd82a5fa --- /dev/null +++ b/packages/xl-ai/src/extensions/AIShowSelectionPlugin.ts @@ -0,0 +1,26 @@ +import { Plugin, PluginKey } from "prosemirror-state"; +import { Decoration, DecorationSet } from "prosemirror-view"; + +const PLUGIN_KEY = new PluginKey(`blocknote-ai-show-selection`); + +// TODO: only enable when needed +export class AIShowSelectionPlugin { + public readonly plugin: Plugin; + + public constructor() { + this.plugin = new Plugin({ + key: PLUGIN_KEY, + props: { + decorations: (state) => { + const { doc, selection } = state; + + const dec = Decoration.inline(selection.from, selection.to, { + "data-ai-show-selection": "true", + }); + + return DecorationSet.create(doc, [dec]); + }, + }, + }); + } +} diff --git a/packages/xl-ai/src/i18n/dictionary.ts b/packages/xl-ai/src/i18n/dictionary.ts new file mode 100644 index 000000000..a199d0aeb --- /dev/null +++ b/packages/xl-ai/src/i18n/dictionary.ts @@ -0,0 +1,27 @@ +// function scramble(dict: any) { +// const newDict: any = {} as any; + +import type { BlockNoteEditor } from "@blocknote/core"; +import type { en } from "./locales"; + +// for (const key in dict) { +// if (typeof dict[key] === "object") { +// newDict[key] = scramble(dict[key]); +// } else { +// newDict[key] = dict[key].split("").reverse().join(""); +// } +// } + +// return newDict; +// } + +export function getAIDictionary(editor: BlockNoteEditor) { + if (!(editor.dictionary as any).ai) { + throw new Error("AI dictionary not found"); + } + return (editor.dictionary as any).ai as AIDictionary; +} + +export type AIDictionary = typeof en; + +// TODO: make placeholder work diff --git a/packages/xl-ai/src/i18n/locales/ar.ts b/packages/xl-ai/src/i18n/locales/ar.ts new file mode 100644 index 000000000..ac14c587e --- /dev/null +++ b/packages/xl-ai/src/i18n/locales/ar.ts @@ -0,0 +1,50 @@ +import type { AIDictionary } from "../dictionary"; + +export const ar: AIDictionary = { + formatting_toolbar: { + ai: { + tooltip: "Generate content", + input_placeholder: "Enter a prompt", + }, + }, + slash_menu: { + ai_block: { + title: "AI Block", + subtext: "Block with AI generated content", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + ai: { + title: "Ask AI", + subtext: "Continue writing with AI", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + }, + placeholders: { + ai: "Enter a prompt", + }, + ai_menu: { + custom_prompt: { + title: "Custom Prompt", + subtext: "Use your query as an AI prompt", + aliases: ["", "custom prompt"], + }, + make_longer: { + title: "Make Longer", + aliases: ["make longer"], + }, + } as any, // TODO + ai_block_toolbar: { + show_prompt: "Generated by AI", + show_prompt_datetime_tooltip: "Generated:", + update: "Update", + updating: "Updating…", + }, + ai_inline_toolbar: { + accept: "Accept", + retry: "Retry", + updating: "Updating…", + revert: "Revert", + }, +}; diff --git a/packages/xl-ai/src/i18n/locales/en.ts b/packages/xl-ai/src/i18n/locales/en.ts new file mode 100644 index 000000000..13c48816d --- /dev/null +++ b/packages/xl-ai/src/i18n/locales/en.ts @@ -0,0 +1,96 @@ +export const en = { + formatting_toolbar: { + ai: { + tooltip: "Generate content", + input_placeholder: "Enter a prompt", + }, + }, + slash_menu: { + ai_block: { + title: "AI Block", + subtext: "Block with AI generated content", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + ai: { + title: "Ask AI", + subtext: "Continue writing with AI", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + }, + placeholders: { + ai: "Enter a prompt", + }, + ai_menu: { + // custom_prompt: { + // title: "Custom Prompt", + // subtext: "Use your query as an AI prompt", + // aliases: [ + // "", // TODO: add comment + // "custom prompt", + // ], + // }, + continue_writing: { + title: "Continue Writing", + aliases: undefined, + }, + summarize: { + title: "Summarize", + aliases: undefined, + }, + add_action_items: { + title: "Add Action Items", + aliases: undefined, + }, + write_anything: { + title: "Write Anything…", + aliases: undefined, + prompt_placeholder: "Write about ", + }, + make_longer: { + title: "Make Longer", + aliases: undefined, + }, + make_shorter: { + title: "Make Shorter", + aliases: undefined, + }, + rewrite: { + title: "Rewrite", + aliases: undefined, + }, + simplify: { + title: "Simplify", + aliases: undefined, + }, + translate: { + title: "Translate…", + aliases: undefined, + prompt_placeholder: "Translate into ", + }, + fix_spelling: { + title: "Fix Spelling", + aliases: undefined, + }, + improve_writing: { + title: "Improve Writing", + aliases: undefined, + }, + accept: { title: "Accept", aliases: undefined }, + retry: { title: "Retry", aliases: undefined }, + revert: { title: "Revert", aliases: undefined }, + }, + ai_block_toolbar: { + show_prompt: "Generated by AI", + show_prompt_datetime_tooltip: "Generated:", + update: "Update", + updating: "Updating…", + }, + ai_inline_toolbar: { + accept: "Accept", + retry: "Retry", + updating: "Updating…", + revert: "Revert", + }, +}; diff --git a/packages/xl-ai/src/i18n/locales/fr.ts b/packages/xl-ai/src/i18n/locales/fr.ts new file mode 100644 index 000000000..60137ca4f --- /dev/null +++ b/packages/xl-ai/src/i18n/locales/fr.ts @@ -0,0 +1,50 @@ +import type { AIDictionary } from "../dictionary"; + +export const fr: AIDictionary = { + formatting_toolbar: { + ai: { + tooltip: "Generate content", + input_placeholder: "Enter a prompt", + }, + }, + slash_menu: { + ai_block: { + title: "AI Block", + subtext: "Block with AI generated content", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + ai: { + title: "Ask AI", + subtext: "Continue writing with AI", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + }, + placeholders: { + ai: "Enter a prompt", + }, + ai_menu: { + // custom_prompt: { + // title: "Custom Prompt", + // subtext: "Use your query as an AI prompt", + // aliases: undefined, + // }, + make_longer: { + title: "Make Longer", + aliases: undefined, + }, + } as any, // TODO + ai_block_toolbar: { + show_prompt: "Generated by AI", + show_prompt_datetime_tooltip: "Generated:", + update: "Update", + updating: "Updating…", + }, + ai_inline_toolbar: { + accept: "Accept", + retry: "Retry", + updating: "Updating…", + revert: "Revert", + }, +}; diff --git a/packages/xl-ai/src/i18n/locales/index.ts b/packages/xl-ai/src/i18n/locales/index.ts new file mode 100644 index 000000000..6f109bcef --- /dev/null +++ b/packages/xl-ai/src/i18n/locales/index.ts @@ -0,0 +1,12 @@ +export * from "./ar.js"; +export * from "./en.js"; +export * from "./fr.js"; +export * from "./is.js"; +export * from "./ja.js"; +export * from "./ko.js"; +export * from "./nl.js"; +export * from "./pl.js"; +export * from "./pt.js"; +export * from "./ru.js"; +export * from "./vi.js"; +export * from "./zh.js"; diff --git a/packages/xl-ai/src/i18n/locales/is.ts b/packages/xl-ai/src/i18n/locales/is.ts new file mode 100644 index 000000000..864b8c6ea --- /dev/null +++ b/packages/xl-ai/src/i18n/locales/is.ts @@ -0,0 +1,50 @@ +import type { AIDictionary } from "../dictionary"; + +export const is: AIDictionary = { + formatting_toolbar: { + ai: { + tooltip: "Generate content", + input_placeholder: "Enter a prompt", + }, + }, + slash_menu: { + ai_block: { + title: "AI Block", + subtext: "Block with AI generated content", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + ai: { + title: "Ask AI", + subtext: "Continue writing with AI", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + }, + placeholders: { + ai: "Enter a prompt", + }, + ai_menu: { + custom_prompt: { + title: "Custom Prompt", + subtext: "Use your query as an AI prompt", + aliases: ["", "custom prompt"], + }, + make_longer: { + title: "Make Longer", + aliases: ["make longer"], + }, + } as any, // TODO + ai_block_toolbar: { + show_prompt: "Generated by AI", + show_prompt_datetime_tooltip: "Generated:", + update: "Update", + updating: "Updating…", + }, + ai_inline_toolbar: { + accept: "Accept", + retry: "Retry", + updating: "Updating…", + revert: "Revert", + }, +}; diff --git a/packages/xl-ai/src/i18n/locales/ja.ts b/packages/xl-ai/src/i18n/locales/ja.ts new file mode 100644 index 000000000..f96fa0b34 --- /dev/null +++ b/packages/xl-ai/src/i18n/locales/ja.ts @@ -0,0 +1,50 @@ +import type { AIDictionary } from "../dictionary"; + +export const ja: AIDictionary = { + formatting_toolbar: { + ai: { + tooltip: "Generate content", + input_placeholder: "Enter a prompt", + }, + }, + slash_menu: { + ai_block: { + title: "AI Block", + subtext: "Block with AI generated content", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + ai: { + title: "Ask AI", + subtext: "Continue writing with AI", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + }, + placeholders: { + ai: "Enter a prompt", + }, + ai_menu: { + custom_prompt: { + title: "Custom Prompt", + subtext: "Use your query as an AI prompt", + aliases: ["", "custom prompt"], + }, + make_longer: { + title: "Make Longer", + aliases: ["make longer"], + }, + } as any, // TODO + ai_block_toolbar: { + show_prompt: "Generated by AI", + show_prompt_datetime_tooltip: "Generated:", + update: "Update", + updating: "Updating…", + }, + ai_inline_toolbar: { + accept: "Accept", + retry: "Retry", + updating: "Updating…", + revert: "Revert", + }, +}; diff --git a/packages/xl-ai/src/i18n/locales/ko.ts b/packages/xl-ai/src/i18n/locales/ko.ts new file mode 100644 index 000000000..c7d61df2f --- /dev/null +++ b/packages/xl-ai/src/i18n/locales/ko.ts @@ -0,0 +1,50 @@ +import type { AIDictionary } from "../dictionary"; + +export const ko: AIDictionary = { + formatting_toolbar: { + ai: { + tooltip: "Generate content", + input_placeholder: "Enter a prompt", + }, + }, + slash_menu: { + ai_block: { + title: "AI Block", + subtext: "Block with AI generated content", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + ai: { + title: "Ask AI", + subtext: "Continue writing with AI", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + }, + placeholders: { + ai: "Enter a prompt", + }, + ai_menu: { + custom_prompt: { + title: "Custom Prompt", + subtext: "Use your query as an AI prompt", + aliases: ["", "custom prompt"], + }, + make_longer: { + title: "Make Longer", + aliases: ["make longer"], + }, + } as any, // TODO + ai_block_toolbar: { + show_prompt: "Generated by AI", + show_prompt_datetime_tooltip: "Generated:", + update: "Update", + updating: "Updating…", + }, + ai_inline_toolbar: { + accept: "Accept", + retry: "Retry", + updating: "Updating…", + revert: "Revert", + }, +}; diff --git a/packages/xl-ai/src/i18n/locales/nl.ts b/packages/xl-ai/src/i18n/locales/nl.ts new file mode 100644 index 000000000..8284aa9e0 --- /dev/null +++ b/packages/xl-ai/src/i18n/locales/nl.ts @@ -0,0 +1,50 @@ +import type { AIDictionary } from "../dictionary"; + +export const nl: AIDictionary = { + formatting_toolbar: { + ai: { + tooltip: "Generate content", + input_placeholder: "Enter a prompt", + }, + }, + slash_menu: { + ai_block: { + title: "AI Block", + subtext: "Block with AI generated content", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + ai: { + title: "Ask AI", + subtext: "Continue writing with AI", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + }, + placeholders: { + ai: "Enter a prompt", + }, + ai_menu: { + custom_prompt: { + title: "Custom Prompt", + subtext: "Use your query as an AI prompt", + aliases: ["", "custom prompt"], + }, + make_longer: { + title: "Make Longer", + aliases: ["make longer"], + }, + } as any, // TODO + ai_block_toolbar: { + show_prompt: "Generated by AI", + show_prompt_datetime_tooltip: "Generated:", + update: "Update", + updating: "Updating…", + }, + ai_inline_toolbar: { + accept: "Accept", + retry: "Retry", + updating: "Updating…", + revert: "Revert", + }, +}; diff --git a/packages/xl-ai/src/i18n/locales/pl.ts b/packages/xl-ai/src/i18n/locales/pl.ts new file mode 100644 index 000000000..adc3266b6 --- /dev/null +++ b/packages/xl-ai/src/i18n/locales/pl.ts @@ -0,0 +1,50 @@ +import type { AIDictionary } from "../dictionary"; + +export const pl: AIDictionary = { + formatting_toolbar: { + ai: { + tooltip: "Generate content", + input_placeholder: "Enter a prompt", + }, + }, + slash_menu: { + ai_block: { + title: "AI Block", + subtext: "Block with AI generated content", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + ai: { + title: "Ask AI", + subtext: "Continue writing with AI", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + }, + placeholders: { + ai: "Enter a prompt", + }, + ai_menu: { + custom_prompt: { + title: "Custom Prompt", + subtext: "Use your query as an AI prompt", + aliases: ["", "custom prompt"], + }, + make_longer: { + title: "Make Longer", + aliases: ["make longer"], + }, + } as any, // TODO + ai_block_toolbar: { + show_prompt: "Generated by AI", + show_prompt_datetime_tooltip: "Generated:", + update: "Update", + updating: "Updating…", + }, + ai_inline_toolbar: { + accept: "Accept", + retry: "Retry", + updating: "Updating…", + revert: "Revert", + }, +}; diff --git a/packages/xl-ai/src/i18n/locales/pt.ts b/packages/xl-ai/src/i18n/locales/pt.ts new file mode 100644 index 000000000..6d3fbc817 --- /dev/null +++ b/packages/xl-ai/src/i18n/locales/pt.ts @@ -0,0 +1,51 @@ +import type { AIDictionary } from "../dictionary"; + +export const pt: AIDictionary = { + formatting_toolbar: { + ai: { + tooltip: "Generate content", + input_placeholder: "Enter a prompt", + }, + }, + slash_menu: { + ai_block: { + title: "AI Block", + subtext: "Block with AI generated content", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + ai: { + title: "Ask AI", + subtext: "Continue writing with AI", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + }, + placeholders: { + ai: "Enter a prompt", + }, + ai_menu: { + custom_prompt: { + title: "Custom Prompt", + subtext: "Use your query as an AI prompt", + aliases: ["", "custom prompt"], + }, + make_longer: { + title: "Make Longer", + aliases: ["make longer"], + }, + } as any, // TODO + + ai_block_toolbar: { + show_prompt: "Generated by AI", + show_prompt_datetime_tooltip: "Generated:", + update: "Update", + updating: "Updating…", + }, + ai_inline_toolbar: { + accept: "Accept", + retry: "Retry", + updating: "Updating…", + revert: "Revert", + }, +}; diff --git a/packages/xl-ai/src/i18n/locales/ru.ts b/packages/xl-ai/src/i18n/locales/ru.ts new file mode 100644 index 000000000..d2c9debcb --- /dev/null +++ b/packages/xl-ai/src/i18n/locales/ru.ts @@ -0,0 +1,50 @@ +import type { AIDictionary } from "../dictionary"; + +export const ru: AIDictionary = { + formatting_toolbar: { + ai: { + tooltip: "Generate content", + input_placeholder: "Enter a prompt", + }, + }, + slash_menu: { + ai_block: { + title: "AI Block", + subtext: "Block with AI generated content", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + ai: { + title: "Ask AI", + subtext: "Continue writing with AI", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + }, + placeholders: { + ai: "Enter a prompt", + }, + ai_menu: { + custom_prompt: { + title: "Custom Prompt", + subtext: "Use your query as an AI prompt", + aliases: ["", "custom prompt"], + }, + make_longer: { + title: "Make Longer", + aliases: ["make longer"], + }, + } as any, // TODO + ai_block_toolbar: { + show_prompt: "Generated by AI", + show_prompt_datetime_tooltip: "Generated:", + update: "Update", + updating: "Updating…", + }, + ai_inline_toolbar: { + accept: "Accept", + retry: "Retry", + updating: "Updating…", + revert: "Revert", + }, +}; diff --git a/packages/xl-ai/src/i18n/locales/vi.ts b/packages/xl-ai/src/i18n/locales/vi.ts new file mode 100644 index 000000000..84b030761 --- /dev/null +++ b/packages/xl-ai/src/i18n/locales/vi.ts @@ -0,0 +1,50 @@ +import type { AIDictionary } from "../dictionary"; + +export const vi: AIDictionary = { + formatting_toolbar: { + ai: { + tooltip: "Generate content", + input_placeholder: "Enter a prompt", + }, + }, + slash_menu: { + ai_block: { + title: "AI Block", + subtext: "Block with AI generated content", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + ai: { + title: "Ask AI", + subtext: "Continue writing with AI", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + }, + placeholders: { + ai: "Enter a prompt", + }, + ai_menu: { + custom_prompt: { + title: "Custom Prompt", + subtext: "Use your query as an AI prompt", + aliases: ["", "custom prompt"], + }, + make_longer: { + title: "Make Longer", + aliases: ["make longer"], + }, + } as any, // TODO + ai_block_toolbar: { + show_prompt: "Generated by AI", + show_prompt_datetime_tooltip: "Generated:", + update: "Update", + updating: "Updating…", + }, + ai_inline_toolbar: { + accept: "Accept", + retry: "Retry", + updating: "Updating…", + revert: "Revert", + }, +}; diff --git a/packages/xl-ai/src/i18n/locales/zh.ts b/packages/xl-ai/src/i18n/locales/zh.ts new file mode 100644 index 000000000..a9bb77746 --- /dev/null +++ b/packages/xl-ai/src/i18n/locales/zh.ts @@ -0,0 +1,50 @@ +import type { AIDictionary } from "../dictionary"; + +export const zh: AIDictionary = { + formatting_toolbar: { + ai: { + tooltip: "Generate content", + input_placeholder: "Enter a prompt", + }, + }, + slash_menu: { + ai_block: { + title: "AI Block", + subtext: "Block with AI generated content", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + ai: { + title: "Ask AI", + subtext: "Continue writing with AI", + aliases: ["ai", "artificial intelligence", "generate"], + group: "AI", + }, + }, + placeholders: { + ai: "Enter a prompt", + }, + ai_menu: { + custom_prompt: { + title: "Custom Prompt", + subtext: "Use your query as an AI prompt", + aliases: ["", "custom prompt"], + }, + make_longer: { + title: "Make Longer", + aliases: ["make longer"], + }, + } as any, // TODO + ai_block_toolbar: { + show_prompt: "Generated by AI", + show_prompt_datetime_tooltip: "Generated:", + update: "Update", + updating: "Updating…", + }, + ai_inline_toolbar: { + accept: "Accept", + retry: "Retry", + updating: "Updating…", + revert: "Revert", + }, +}; diff --git a/packages/xl-ai/src/i18n/useAIDictionary.ts b/packages/xl-ai/src/i18n/useAIDictionary.ts new file mode 100644 index 000000000..ed63fdcb0 --- /dev/null +++ b/packages/xl-ai/src/i18n/useAIDictionary.ts @@ -0,0 +1,8 @@ +import { useBlockNoteContext } from "@blocknote/react"; + +import { getAIDictionary } from "./dictionary.js"; + +export function useAIDictionary() { + const ctx = useBlockNoteContext(); + return getAIDictionary(ctx!.editor!); +} diff --git a/packages/xl-ai/src/index.ts b/packages/xl-ai/src/index.ts new file mode 100644 index 000000000..fc8e8a9cb --- /dev/null +++ b/packages/xl-ai/src/index.ts @@ -0,0 +1,12 @@ +import "./style.css"; + +export * from "./api/blocknoteAIClient/client.js"; +export * from "./components/BlockNoteAIContext.js"; +export * from "./components/BlockNoteAIUI.js"; +export * from "./components/FormattingToolbar/AIToolbarButton.js"; +export * from "./components/SuggestionMenu/getAISlashMenuItems.js"; +export * from "./extensions/AIBlockToolbar/AIBlockToolbarPlugin.js"; +export * from "./extensions/AIShowSelectionPlugin.js"; + +export * from "./i18n/dictionary.js"; +export * as locales from "./i18n/locales/index.js"; diff --git a/packages/xl-ai/src/json-diff/README.md b/packages/xl-ai/src/json-diff/README.md new file mode 100644 index 000000000..ea30c0915 --- /dev/null +++ b/packages/xl-ai/src/json-diff/README.md @@ -0,0 +1 @@ +from https://github.com/andreyvit/json-diff diff --git a/packages/xl-ai/src/json-diff/json-diff.ts b/packages/xl-ai/src/json-diff/json-diff.ts new file mode 100644 index 000000000..59882c5be --- /dev/null +++ b/packages/xl-ai/src/json-diff/json-diff.ts @@ -0,0 +1,347 @@ +import { SequenceMatcher } from "@ewoudenberg/difflib"; +import { extendedTypeOf, roundObj } from "./util.js"; + +class JsonDiff { + constructor(private readonly options: any) { + options.outputKeys = options.outputKeys || []; + options.excludeKeys = options.excludeKeys || []; + } + + isScalar(obj: any) { + return typeof obj !== "object" || obj === null; + } + + objectDiff(obj1: Record, obj2: Record) { + let result: Record | undefined = {}; + let score = 0; + let equal = true; + + for (const [key, value] of Object.entries(obj1)) { + if (!this.options.outputNewOnly) { + const postfix = "__deleted"; + + if (!(key in obj2) && !this.options.excludeKeys.includes(key)) { + result[`${key}${postfix}`] = value; + score -= 30; + equal = false; + } + } + } + + for (const [key, value] of Object.entries(obj2)) { + const postfix = !this.options.outputNewOnly ? "__added" : ""; + + if (!(key in obj1) && !this.options.excludeKeys.includes(key)) { + result[`${key}${postfix}`] = value; + score -= 30; + equal = false; + } + } + + for (const [key, value1] of Object.entries(obj1)) { + if (key in obj2) { + if (this.options.excludeKeys.includes(key)) { + continue; + } + score += 20; + const value2 = obj2[key]; + const change = this.diff(value1, value2); + if (!change.equal) { + result[key] = change.result; + equal = false; + } else if (this.options.full || this.options.outputKeys.includes(key)) { + result[key] = value1; + } + // console.log(`key ${key} change.score=${change.score} ${change.result}`) + score += Math.min(20, Math.max(-10, change.score / 5)); // BATMAN! + } + } + + if (equal) { + score = 100 * Math.max(Object.keys(obj1).length, 0.5); + if (!this.options.full) { + result = undefined; + } + } else { + score = Math.max(0, score); + } + + // console.log(`objectDiff(${JSON.stringify(obj1, null, 2)} <=> ${JSON.stringify(obj2, null, 2)}) == ${JSON.stringify({score, result, equal})}`) + return { score, result, equal }; + } + + findMatchingObject(item: any, index: number, fuzzyOriginals: any) { + // console.log('findMatchingObject: ' + JSON.stringify({item, fuzzyOriginals}, null, 2)) + let bestMatch: any = null; + + for (const [key, { item: candidate, index: matchIndex }] of Object.entries( + fuzzyOriginals + ) as any) { + if (key !== "__next") { + const indexDistance = Math.abs(matchIndex - index); + if (extendedTypeOf(item) === extendedTypeOf(candidate)) { + const { score } = this.diff(item, candidate); + if ( + !bestMatch || + score > bestMatch.score || + (score === bestMatch.score && + indexDistance < bestMatch.indexDistance) + ) { + bestMatch = { score, key, indexDistance }; + } + } + } + } + + // console.log('findMatchingObject result = ' + JSON.stringify(bestMatch, null, 2)); + return bestMatch; + } + + scalarize(array: any, originals: any, fuzzyOriginals?: any) { + // console.log('scalarize', array, originals, fuzzyOriginals); + const fuzzyMatches: any = []; + if (fuzzyOriginals) { + // Find best fuzzy match for each object in the array + const keyScores: any = {}; + for (let index = 0; index < array.length; index++) { + const item = array[index]; + if (this.isScalar(item)) { + continue; + } + const bestMatch = this.findMatchingObject(item, index, fuzzyOriginals); + if ( + bestMatch && + (!keyScores[bestMatch.key] || + bestMatch.score > keyScores[bestMatch.key].score) + ) { + keyScores[bestMatch.key] = { score: bestMatch.score, index }; + } + } + for (const [key, match] of Object.entries(keyScores)) { + fuzzyMatches[(match as any).index] = key; + } + } + + const result = []; + for (let index = 0; index < array.length; index++) { + const item = array[index]; + if (this.isScalar(item)) { + result.push(item); + } else { + const key = fuzzyMatches[index] || "__$!SCALAR" + originals.__next++; + originals[key] = { item, index }; + result.push(key); + } + } + // console.log('Scalarize result', result); + return result; + } + + isScalarized(item: any, originals: any) { + return typeof item === "string" && item in originals; + } + + descalarize(item: any, originals: any) { + if (this.isScalarized(item, originals)) { + return originals[item].item; + } else { + return item; + } + } + + arrayDiff(obj1: any, obj2: any) { + const originals1 = { __next: 1 }; + const seq1 = this.scalarize(obj1, originals1); + const originals2 = { __next: originals1.__next }; + const seq2 = this.scalarize(obj2, originals2, originals1); + + if (this.options.sort) { + seq1.sort(); + seq2.sort(); + } + const opcodes = new SequenceMatcher(null, seq1, seq2).getOpcodes(); + + // console.log(`arrayDiff:\nobj1 = ${JSON.stringify(obj1, null, 2)}\nobj2 = ${JSON.stringify(obj2, null, 2)}\nseq1 = ${JSON.stringify(seq1, null, 2)}\nseq2 = ${JSON.stringify(seq2, null, 2)}\nopcodes = ${JSON.stringify(opcodes, null, 2)}`) + + let result: any[] | undefined = []; + let score = 0; + let equal = true; + + for (const [op, i1, i2, j1, j2] of opcodes) { + let i, j; + let asc, end; + let asc1, end1; + let asc2, end2; + if (!(op === "equal" || (this.options.keysOnly && op === "replace"))) { + equal = false; + } + + switch (op) { + case "equal": + for ( + i = i1, end = i2, asc = i1 <= end; + asc ? i < end : i > end; + asc ? i++ : i-- + ) { + const item = seq1[i]; + if (this.isScalarized(item, originals1)) { + if (!this.isScalarized(item, originals2)) { + throw new Error( + `internal bug: isScalarized(item, originals1) != isScalarized(item, originals2) for item ${JSON.stringify( + item + )}` + ); + } + const item1 = this.descalarize(item, originals1); + const item2 = this.descalarize(item, originals2); + const change = this.diff(item1, item2); + if (!change.equal) { + result.push(["~", change.result]); + equal = false; + } else { + if (this.options.full || this.options.keepUnchangedValues) { + result.push([" ", item1]); + } else { + result.push([" "]); + } + } + } else { + if (this.options.full || this.options.keepUnchangedValues) { + result.push([" ", item]); + } else { + result.push([" "]); + } + } + score += 10; + } + break; + case "delete": + for ( + i = i1, end1 = i2, asc1 = i1 <= end1; + asc1 ? i < end1 : i > end1; + asc1 ? i++ : i-- + ) { + result.push(["-", this.descalarize(seq1[i], originals1)]); + score -= 5; + } + break; + case "insert": + for ( + j = j1, end2 = j2, asc2 = j1 <= end2; + asc2 ? j < end2 : j > end2; + asc2 ? j++ : j-- + ) { + result.push(["+", this.descalarize(seq2[j], originals2)]); + score -= 5; + } + break; + case "replace": + if (!this.options.keysOnly) { + let asc3, end3; + let asc4, end4; + for ( + i = i1, end3 = i2, asc3 = i1 <= end3; + asc3 ? i < end3 : i > end3; + asc3 ? i++ : i-- + ) { + result.push(["-", this.descalarize(seq1[i], originals1)]); + score -= 5; + } + for ( + j = j1, end4 = j2, asc4 = j1 <= end4; + asc4 ? j < end4 : j > end4; + asc4 ? j++ : j-- + ) { + result.push(["+", this.descalarize(seq2[j], originals2)]); + score -= 5; + } + } else { + let asc5, end5; + for ( + i = i1, end5 = i2, asc5 = i1 <= end5; + asc5 ? i < end5 : i > end5; + asc5 ? i++ : i-- + ) { + const change = this.diff( + this.descalarize(seq1[i], originals1), + this.descalarize(seq2[i - i1 + j1], originals2) + ); + if (!change.equal) { + result.push(["~", change.result]); + equal = false; + } else { + result.push([" "]); + } + } + } + break; + } + } + + if (equal || opcodes.length === 0) { + if (!this.options.full) { + result = undefined; + } else { + result = obj1; + } + score = 100; + } else { + score = Math.max(0, score); + } + + return { score, result, equal }; + } + + diff(obj1: any, obj2: any): any { + const type1 = extendedTypeOf(obj1); + const type2 = extendedTypeOf(obj2); + + if (type1 === type2) { + switch (type1) { + case "object": + return this.objectDiff(obj1, obj2); + + case "array": + return this.arrayDiff(obj1, obj2); + } + } + + // Compare primitives or complex objects of different types + let score = 100; + let result = obj1; + let equal; + if (!this.options.keysOnly) { + if (type1 === "date" && type2 === "date") { + equal = obj1.getTime() === obj2.getTime(); + } else { + equal = obj1 === obj2; + } + if (!equal) { + score = 0; + + if (this.options.outputNewOnly) { + result = obj2; + } else { + result = { __old: obj1, __new: obj2 }; + } + } else if (!this.options.full) { + result = undefined; + } + } else { + equal = true; + result = undefined; + } + + // console.log(`diff: equal ${equal} obj1 ${obj1} obj2 ${obj2} score ${score} ${result || ''}`) + + return { score, result, equal }; + } +} + +export function diff(obj1: any, obj2: any, options: any = {}) { + if (options.precision !== undefined) { + obj1 = roundObj(obj1, options.precision); + obj2 = roundObj(obj2, options.precision); + } + return new JsonDiff(options).diff(obj1, obj2).result; +} diff --git a/packages/xl-ai/src/json-diff/types.d.ts b/packages/xl-ai/src/json-diff/types.d.ts new file mode 100644 index 000000000..df577052a --- /dev/null +++ b/packages/xl-ai/src/json-diff/types.d.ts @@ -0,0 +1,3 @@ +declare module "@ewoudenberg/difflib" { + export const SequenceMatcher: any; +} diff --git a/packages/xl-ai/src/json-diff/util.ts b/packages/xl-ai/src/json-diff/util.ts new file mode 100644 index 000000000..513293879 --- /dev/null +++ b/packages/xl-ai/src/json-diff/util.ts @@ -0,0 +1,32 @@ +export const extendedTypeOf = function (obj: any) { + const result = typeof obj; + if (obj == null) { + return "null"; + } else if (result === "object" && obj.constructor === Array) { + return "array"; + } else if (result === "object" && obj instanceof Date) { + return "date"; + } else { + return result; + } +}; + +export const roundObj = function (data: any, precision: number): any { + const type = typeof data; + if (Array.isArray(data)) { + return data.map((x: any) => roundObj(x, precision)); + } else if (type === "object") { + for (const key in data) { + data[key] = roundObj(data[key], precision); + } + return data; + } else if ( + type === "number" && + Number.isFinite(data) && + !Number.isInteger(data) + ) { + return +data.toFixed(precision); + } else { + return data; + } +}; diff --git a/packages/xl-ai/src/markdown/__snapshots__/markdownDiff.test.ts.snap b/packages/xl-ai/src/markdown/__snapshots__/markdownDiff.test.ts.snap new file mode 100644 index 000000000..b8ec48ca6 --- /dev/null +++ b/packages/xl-ai/src/markdown/__snapshots__/markdownDiff.test.ts.snap @@ -0,0 +1,126 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`markdown AI util > add sentence at end 1`] = ` +"UNCHANGED: # title + +UNCHANGED: hello + +ADD: world +" +`; + +exports[`markdown AI util > add sentence at middle 1`] = ` +"UNCHANGED: # title + +UNCHANGED: hello + +ADD: beautiful + +UNCHANGED: world +" +`; + +exports[`markdown AI util > add sentence at start 1`] = ` +"ADD: prefix + +UNCHANGED: # title + +UNCHANGED: hello + +UNCHANGED: world +" +`; + +exports[`markdown AI util > change: text at end 1`] = ` +"UNCHANGED: # title + +UNCHANGED: hello + +CHANGED: worlds +" +`; + +exports[`markdown AI util > change: text at middle 1`] = ` +"UNCHANGED: # title + +CHANGED: hello there, + +UNCHANGED: world +" +`; + +exports[`markdown AI util > change: text at start 1`] = ` +"CHANGED: # title + +UNCHANGED: hello + +UNCHANGED: world +" +`; + +exports[`markdown AI util > change: type at end 1`] = ` +"UNCHANGED: # title + +UNCHANGED: hello + +CHANGED: # world +" +`; + +exports[`markdown AI util > change: type at start 1`] = ` +"CHANGED: title + +UNCHANGED: hello + +CHANGED: wold +" +`; + +exports[`markdown AI util > mixed: change and insert 1`] = ` +"UNCHANGED: # title + +CHANGED: hello there + +ADD: beautiful + +CHANGED: wold +" +`; + +exports[`markdown AI util > mixed: insert and change 1`] = ` +"UNCHANGED: # title + +ADD: well, + +UNCHANGED: hello + +CHANGED: wold +" +`; + +exports[`markdown AI util > remove sentence at end 1`] = ` +"UNCHANGED: # title + +UNCHANGED: hello + +REMOVE: world +" +`; + +exports[`markdown AI util > remove sentence at middle 1`] = ` +"UNCHANGED: # title + +REMOVE: hello + +UNCHANGED: world +" +`; + +exports[`markdown AI util > remove sentence at start 1`] = ` +"REMOVE: # title + +UNCHANGED: hello + +UNCHANGED: world +" +`; diff --git a/packages/xl-ai/src/markdown/__snapshots__/markdownNodeDiff.test.ts.snap b/packages/xl-ai/src/markdown/__snapshots__/markdownNodeDiff.test.ts.snap new file mode 100644 index 000000000..91901fcec --- /dev/null +++ b/packages/xl-ai/src/markdown/__snapshots__/markdownNodeDiff.test.ts.snap @@ -0,0 +1,315 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`markdown AI util > 1 line -> large text 1`] = ` +"ADD: # Document Title + +ADD: Test + +CHANGED: This is the first sentence of the document. + +ADD: ## Introduction + +ADD: The introduction provides an overview of the document's purpose and structure. + +ADD: ## Main Content + +ADD: The main content section contains the bulk of the information. + +ADD: ### Subsection 1 + +ADD: Details about the first subsection are provided here. + +ADD: ### Subsection 2 + +ADD: Details about the second subsection are provided here. + +ADD: ## Conclusion + +ADD: The conclusion summarizes the key points discussed in the document. + +ADD: ## References + +ADD: A list of references and resources used in the document. +" +`; + +exports[`markdown AI util > 3 lines -> 1 line 1`] = ` +"CHANGED: mestis + +REMOVE: Test + +REMOVE: This +" +`; + +exports[`markdown AI util > 3 lines -> large text 1`] = ` +"CHANGED: # Document Title + +ADD: Test + +CHANGED: This is the first sentence of the document. + +ADD: ## Introduction + +ADD: The introduction provides an overview of the document's purpose and structure. + +ADD: ## Main Content + +ADD: The main content section contains the bulk of the information. + +ADD: ### Subsection 1 + +ADD: Details about the first subsection are provided here. + +CHANGED: ### Subsection 2 + +ADD: Details about the second subsection are provided here. + +ADD: ## Conclusion + +ADD: The conclusion summarizes the key points discussed in the document. + +ADD: ## References + +ADD: A list of references and resources used in the document. +" +`; + +exports[`markdown AI util > add sentence at end 1`] = ` +"UNCHANGED: # title + +UNCHANGED: hello + +ADD: world +" +`; + +exports[`markdown AI util > add sentence at middle 1`] = ` +"UNCHANGED: # title + +UNCHANGED: hello + +ADD: beautiful + +UNCHANGED: world +" +`; + +exports[`markdown AI util > add sentence at start 1`] = ` +"ADD: prefix + +UNCHANGED: # title + +UNCHANGED: hello + +UNCHANGED: world +" +`; + +exports[`markdown AI util > change: text at end 1`] = ` +"UNCHANGED: # title + +UNCHANGED: hello + +CHANGED: worlds +" +`; + +exports[`markdown AI util > change: text at middle 1`] = ` +"UNCHANGED: # title + +CHANGED: hello there, + +UNCHANGED: world +" +`; + +exports[`markdown AI util > change: text at start 1`] = ` +"CHANGED: # title + +UNCHANGED: hello + +UNCHANGED: world +" +`; + +exports[`markdown AI util > change: type at end 1`] = ` +"UNCHANGED: # title + +UNCHANGED: hello + +CHANGED: # world +" +`; + +exports[`markdown AI util > change: type at start 1`] = ` +"CHANGED: title + +UNCHANGED: hello + +CHANGED: wold +" +`; + +exports[`markdown AI util > collapse lines 1`] = ` +"CHANGED: # titleworldhello + +REMOVE: hello +" +`; + +exports[`markdown AI util > expand lines 1`] = ` +"CHANGED: # title + +ADD: hello +" +`; + +exports[`markdown AI util > large text -> 1 line 1`] = ` +"REMOVE: # Document Title + +REMOVE: Test + +CHANGED: hello + +REMOVE: ## Introduction + +REMOVE: The introduction provides an overview of the document's purpose and structure. + +REMOVE: ## Main Content + +REMOVE: The main content section contains the bulk of the information. + +REMOVE: ### Subsection 1 + +REMOVE: Details about the first subsection are provided here. + +REMOVE: ### Subsection 2 + +REMOVE: Details about the second subsection are provided here. + +REMOVE: ## Conclusion + +REMOVE: The conclusion summarizes the key points discussed in the document. + +REMOVE: ## References + +REMOVE: A list of references and resources used in the document. +" +`; + +exports[`markdown AI util > large text -> 3 lines 1`] = ` +"CHANGED: # title + +REMOVE: Test + +CHANGED: hello + +REMOVE: ## Introduction + +REMOVE: The introduction provides an overview of the document's purpose and structure. + +REMOVE: ## Main Content + +REMOVE: The main content section contains the bulk of the information. + +REMOVE: ### Subsection 1 + +REMOVE: Details about the first subsection are provided here. + +CHANGED: world + +REMOVE: Details about the second subsection are provided here. + +REMOVE: ## Conclusion + +REMOVE: The conclusion summarizes the key points discussed in the document. + +REMOVE: ## References + +REMOVE: A list of references and resources used in the document. +" +`; + +exports[`markdown AI util > lists: add list 1`] = ` +"UNCHANGED: # title + +ADD: * hello there + +ADD: * world +" +`; + +exports[`markdown AI util > lists: add list item 1`] = ` +"UNCHANGED: # title + +UNCHANGED: * hello + +ADD: * world +" +`; + +exports[`markdown AI util > lists: remove list 1`] = ` +"UNCHANGED: # title + +REMOVE: * hello there + +REMOVE: * world +" +`; + +exports[`markdown AI util > lists: remove list item 1`] = ` +"UNCHANGED: # title + +UNCHANGED: * hello + +REMOVE: * world +" +`; + +exports[`markdown AI util > lists: update list item 1`] = ` +"UNCHANGED: # title + +CHANGED: * hello there + +UNCHANGED: * world +" +`; + +exports[`markdown AI util > mixed: change and insert 1`] = ` +"UNCHANGED: # title + +CHANGED: hello there + +ADD: beautiful + +CHANGED: wold +" +`; + +exports[`markdown AI util > remove sentence at end 1`] = ` +"UNCHANGED: # title + +UNCHANGED: hello + +REMOVE: world +" +`; + +exports[`markdown AI util > remove sentence at middle 1`] = ` +"UNCHANGED: # title + +REMOVE: hello + +UNCHANGED: world +" +`; + +exports[`markdown AI util > remove sentence at start 1`] = ` +"REMOVE: # title + +UNCHANGED: hello + +UNCHANGED: world +" +`; diff --git a/packages/xl-ai/src/markdown/__snapshots__/markdownOperations.test.ts.snap b/packages/xl-ai/src/markdown/__snapshots__/markdownOperations.test.ts.snap new file mode 100644 index 000000000..41bf18c44 --- /dev/null +++ b/packages/xl-ai/src/markdown/__snapshots__/markdownOperations.test.ts.snap @@ -0,0 +1,853 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`markdownNodeDiffToBlockOperations > add sentence at start 1`] = ` +[ + { + "blocks": [ + { + "children": [], + "content": [ + { + "styles": {}, + "text": "test", + "type": "text", + }, + ], + "id": "1", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + ], + "position": "before", + "referenceId": "0", + "type": "add", + }, +] +`; + +exports[`markdownNodeDiffToBlockOperations > add word at end of sentence 1`] = ` +[ + { + "block": { + "content": [ + { + "styles": {}, + "text": "hello world", + "type": "text", + }, + ], + }, + "id": "0", + "type": "update", + }, +] +`; + +exports[`markdownNodeDiffToBlockOperations > change type 1`] = ` +[ + { + "block": { + "props": { + "level": 1, + }, + "type": "heading", + }, + "id": "0", + "type": "update", + }, +] +`; + +exports[`markdownNodeDiffToBlockOperations > complex change 1 1`] = ` +[ + { + "blocks": [ + { + "children": [], + "content": [ + { + "styles": {}, + "text": "prefix", + "type": "text", + }, + ], + "id": "3", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + ], + "position": "before", + "referenceId": "0", + "type": "add", + }, + { + "block": { + "content": [ + { + "styles": {}, + "text": "hello", + "type": "text", + }, + ], + "props": { + "level": 2, + }, + }, + "id": "0", + "type": "update", + }, + { + "id": "1", + "type": "delete", + }, +] +`; + +exports[`markdownNodeDiffToBlockOperations > complex change 2 1`] = ` +[ + { + "blocks": [ + { + "children": [], + "content": [ + { + "styles": {}, + "text": "prefix", + "type": "text", + }, + ], + "id": "3", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + ], + "position": "before", + "referenceId": "0", + "type": "add", + }, + { + "block": { + "content": [ + { + "styles": {}, + "text": "## hello + +world", + "type": "text", + }, + ], + "props": { + "backgroundColor": undefined, + "language": "javascript", + "level": undefined, + "textAlignment": undefined, + "textColor": undefined, + }, + "type": "codeBlock", + }, + "id": "0", + "type": "update", + }, + { + "id": "1", + "type": "delete", + }, + { + "id": "2", + "type": "delete", + }, +] +`; + +exports[`markdownNodeDiffToBlockOperations > empty paragraph and table 1`] = ` +[ + { + "block": { + "content": [ + { + "styles": { + "bold": true, + }, + "text": "A Call to Action: Empowering Europe's Public Agents with an Open-Source Alternative to Notion", + "type": "text", + }, + ], + }, + "id": "0", + "type": "update", + }, + { + "blocks": [ + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Dear President Ursula Von der Leyen,", + "type": "text", + }, + ], + "id": "5", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + ], + "position": "before", + "referenceId": "1", + "type": "add", + }, + { + "block": { + "content": [ + { + "styles": {}, + "text": "As the European Union continues to strive for innovation and digital transformation, I strongly believe that creating an open-source alternative to Notion for public agents is a crucial step forward. This initiative would not only enhance the productivity and collaboration of our public servants but also ensure the sovereignty and security of our data.", + "type": "text", + }, + ], + }, + "id": "1", + "type": "update", + }, + { + "blocks": [ + { + "children": [], + "content": [ + { + "styles": {}, + "text": "By developing an open-source platform, we can guarantee that our public agents' data remains within the EU's borders, protected by our stringent data protection laws. This would alleviate concerns about data privacy and security, allowing our agents to focus on their critical work without worrying about the risks associated with proprietary software.", + "type": "text", + }, + ], + "id": "8", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Moreover, an open-source platform would foster a culture of collaboration and transparency. Public agents from different member states could work together seamlessly, sharing knowledge and best practices to drive progress and innovation. This would be particularly beneficial in areas such as policy-making, research, and crisis management, where collaboration is essential.", + "type": "text", + }, + ], + "id": "9", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Furthermore, an open-source alternative to Notion would be a powerful symbol of the EU's commitment to digital sovereignty and its determination to shape the future of technology. By taking control of our digital tools, we can ensure that our values and principles are reflected in the software we use.", + "type": "text", + }, + ], + "id": "10", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "I urge you to consider the benefits of creating an open-source alternative to Notion for Europe's public agents. Together, we can empower our public servants, enhance collaboration, and drive innovation while protecting our data and promoting digital sovereignty.", + "type": "text", + }, + ], + "id": "11", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + ], + "position": "before", + "referenceId": "2", + "type": "add", + }, + { + "block": { + "content": [ + { + "styles": {}, + "text": "Sincerely, [Your Name]", + "type": "text", + }, + ], + "props": { + "backgroundColor": "default", + "textAlignment": "left", + }, + "type": "paragraph", + }, + "id": "2", + "type": "update", + }, + { + "blocks": [ + { + "children": [], + "content": { + "columnWidths": [ + undefined, + undefined, + undefined, + ], + "rows": [ + { + "cells": [ + [], + [], + [], + ], + }, + { + "cells": [ + [], + [ + { + "styles": {}, + "text": "Notion", + "type": "text", + }, + ], + [ + { + "styles": {}, + "text": "Open source", + "type": "text", + }, + ], + ], + }, + { + "cells": [ + [ + { + "styles": {}, + "text": "Cost", + "type": "text", + }, + ], + [ + { + "styles": {}, + "text": "30€/cs", + "type": "text", + }, + ], + [ + { + "styles": {}, + "text": "1€/cs", + "type": "text", + }, + ], + ], + }, + { + "cells": [ + [ + { + "styles": {}, + "text": "People in-house", + "type": "text", + }, + ], + [ + { + "styles": {}, + "text": "0", + "type": "text", + }, + ], + [ + { + "styles": {}, + "text": "5 developers (100k€ a year)", + "type": "text", + }, + ], + ], + }, + { + "cells": [ + [ + { + "styles": {}, + "text": "Number of civil servant (cs)", + "type": "text", + }, + ], + [ + { + "styles": {}, + "text": "36 million", + "type": "text", + }, + ], + [ + { + "styles": {}, + "text": "36 million", + "type": "text", + }, + ], + ], + }, + ], + "type": "tableContent", + }, + "id": "14", + "props": { + "textColor": "default", + }, + "type": "table", + }, + { + "children": [], + "content": [ + { + "styles": { + "bold": true, + }, + "text": "Summary of Costs and Benefits", + "type": "text", + }, + ], + "id": "15", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "The proposed open-source alternative to Notion would significantly reduce costs, from 30€ per civil servant to 1€ per civil servant, while also creating in-house jobs for 5 developers. This initiative would not only save the EU a substantial amount of money but also promote digital sovereignty and enhance collaboration among public agents.", + "type": "text", + }, + ], + "id": "16", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + { + "children": [], + "content": [ + { + "styles": { + "bold": true, + }, + "text": "Summary", + "type": "text", + }, + ], + "id": "17", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "In conclusion, creating an open-source alternative to Notion for Europe's public agents is a crucial step towards digital transformation, data sovereignty, and enhanced collaboration. With significant cost savings and the creation of in-house jobs, this initiative has the potential to drive innovation and progress in the EU while protecting our values and principles.", + "type": "text", + }, + ], + "id": "18", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + ], + "position": "after", + "referenceId": "2", + "type": "add", + }, +] +`; + +exports[`markdownNodeDiffToBlockOperations > large change 1`] = ` +[ + { + "blocks": [ + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Document Title", + "type": "text", + }, + ], + "id": "1", + "props": { + "backgroundColor": "default", + "level": 1, + "textAlignment": "left", + "textColor": "default", + }, + "type": "heading", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Test", + "type": "text", + }, + ], + "id": "2", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + ], + "position": "before", + "referenceId": "0", + "type": "add", + }, + { + "block": { + "content": [ + { + "styles": {}, + "text": "This is the first sentence of the document.", + "type": "text", + }, + ], + }, + "id": "0", + "type": "update", + }, + { + "blocks": [ + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Introduction", + "type": "text", + }, + ], + "id": "5", + "props": { + "backgroundColor": "default", + "level": 2, + "textAlignment": "left", + "textColor": "default", + }, + "type": "heading", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "The introduction provides an overview of the document's purpose and structure.", + "type": "text", + }, + ], + "id": "6", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Main Content", + "type": "text", + }, + ], + "id": "7", + "props": { + "backgroundColor": "default", + "level": 2, + "textAlignment": "left", + "textColor": "default", + }, + "type": "heading", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "The main content section contains the bulk of the information.", + "type": "text", + }, + ], + "id": "8", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Subsection 1", + "type": "text", + }, + ], + "id": "9", + "props": { + "backgroundColor": "default", + "level": 3, + "textAlignment": "left", + "textColor": "default", + }, + "type": "heading", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Details about the first subsection are provided here.", + "type": "text", + }, + ], + "id": "10", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Subsection 2", + "type": "text", + }, + ], + "id": "11", + "props": { + "backgroundColor": "default", + "level": 3, + "textAlignment": "left", + "textColor": "default", + }, + "type": "heading", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Details about the second subsection are provided here.", + "type": "text", + }, + ], + "id": "12", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "Conclusion", + "type": "text", + }, + ], + "id": "13", + "props": { + "backgroundColor": "default", + "level": 2, + "textAlignment": "left", + "textColor": "default", + }, + "type": "heading", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "The conclusion summarizes the key points discussed in the document.", + "type": "text", + }, + ], + "id": "14", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "References", + "type": "text", + }, + ], + "id": "15", + "props": { + "backgroundColor": "default", + "level": 2, + "textAlignment": "left", + "textColor": "default", + }, + "type": "heading", + }, + { + "children": [], + "content": [ + { + "styles": {}, + "text": "A list of references and resources used in the document.", + "type": "text", + }, + ], + "id": "16", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "textColor": "default", + }, + "type": "paragraph", + }, + ], + "position": "after", + "referenceId": "0", + "type": "add", + }, +] +`; + +exports[`markdownNodeDiffToBlockOperations > one empty paragraph 1`] = ` +[ + { + "block": { + "content": [ + { + "styles": {}, + "text": "hello world", + "type": "text", + }, + ], + }, + "id": "0", + "type": "update", + }, + { + "id": "1", + "type": "delete", + }, + { + "id": "2", + "type": "delete", + }, +] +`; + +exports[`markdownNodeDiffToBlockOperations > two empty paragraphs 1`] = ` +[ + { + "block": { + "content": [ + { + "styles": {}, + "text": "hello world", + "type": "text", + }, + ], + }, + "id": "0", + "type": "update", + }, + { + "id": "1", + "type": "delete", + }, + { + "id": "2", + "type": "delete", + }, + { + "id": "3", + "type": "delete", + }, +] +`; diff --git a/packages/xl-ai/src/markdown/__snapshots__/markdownUpdate.test.ts.snap b/packages/xl-ai/src/markdown/__snapshots__/markdownUpdate.test.ts.snap new file mode 100644 index 000000000..b3abb5917 --- /dev/null +++ b/packages/xl-ai/src/markdown/__snapshots__/markdownUpdate.test.ts.snap @@ -0,0 +1,32 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`markdownUpdateToBlockUpdate > change text 1`] = ` +{ + "content": [ + { + "styles": {}, + "text": "hello world", + "type": "text", + }, + ], +} +`; + +exports[`markdownUpdateToBlockUpdate > change type 1`] = ` +{ + "props": { + "level": 1, + }, + "type": "heading", +} +`; + +exports[`markdownUpdateToBlockUpdate > change unchecked to checked 1`] = ` +{ + "props": { + "checked": true, + }, +} +`; + +exports[`markdownUpdateToBlockUpdate > no change 1`] = `{}`; diff --git a/packages/xl-ai/src/markdown/markdownNodeDiff.test.ts b/packages/xl-ai/src/markdown/markdownNodeDiff.test.ts new file mode 100644 index 000000000..0f671493c --- /dev/null +++ b/packages/xl-ai/src/markdown/markdownNodeDiff.test.ts @@ -0,0 +1,391 @@ +import { describe, expect, it } from "vitest"; +import { + MarkdownNodeDiffResult, + markdownNodeDiff, +} from "./markdownNodeDiff.js"; +import { markdownNodeToString } from "./util.js"; + +async function operationsToReadableString( + operations: MarkdownNodeDiffResult[] +) { + return operations + .map((op) => { + const md = markdownNodeToString( + op.type === "remove" ? op.oldBlock : op.newBlock + ); + return `${op.type.toUpperCase()}: ${md}`; + }) + .join("\n"); +} + +describe("markdown AI util", () => { + it("collapse lines", async () => { + const md1 = `# title + +hello`; + + const md2 = `# titleworldhello`; + + const operations = await markdownNodeDiff(md1, md2); + const diff = await operationsToReadableString(operations); + expect(diff).toMatchSnapshot(); + }); + + it("expand lines", async () => { + const md1 = `# titleworldhello`; + + const md2 = `# title + +hello`; + + const operations = await markdownNodeDiff(md1, md2); + const diff = await operationsToReadableString(operations); + expect(diff).toMatchSnapshot(); + }); + + it("add sentence at end", async () => { + const md1 = `# title + +hello`; + + const md2 = `# title + +hello + +world`; + + const operations = await markdownNodeDiff(md1, md2); + const diff = await operationsToReadableString(operations); + expect(diff).toMatchSnapshot(); + }); + + it("remove sentence at end", async () => { + const md1 = `# title + +hello + +world`; + + const md2 = `# title + +hello`; + + const operations = await markdownNodeDiff(md1, md2); + const diff = await operationsToReadableString(operations); + expect(diff).toMatchSnapshot(); + }); + + it("add sentence at start", async () => { + const md1 = `# title + +hello + +world`; + + const md2 = `prefix +# title + +hello + +world`; + + const operations = await markdownNodeDiff(md1, md2); + const diff = await operationsToReadableString(operations); + expect(diff).toMatchSnapshot(); + }); + + it("remove sentence at start", async () => { + const md1 = `# title + +hello + +world`; + + const md2 = `hello + +world`; + + const operations = await markdownNodeDiff(md1, md2); + const diff = await operationsToReadableString(operations); + expect(diff).toMatchSnapshot(); + }); + + it("add sentence at middle", async () => { + const md1 = `# title + +hello + +world`; + + const md2 = `# title + +hello + +beautiful + +world`; + + const operations = await markdownNodeDiff(md1, md2); + const diff = await operationsToReadableString(operations); + expect(diff).toMatchSnapshot(); + }); + + it("remove sentence at middle", async () => { + const md1 = `# title + +hello + +world`; + + const md2 = `# title + +world`; + + const operations = await markdownNodeDiff(md1, md2); + const diff = await operationsToReadableString(operations); + expect(diff).toMatchSnapshot(); + }); + + it("change: type at start", async () => { + const md1 = `# title + +hello + +world`; + + const md2 = `title + +hello + +wold`; + + const operations = await markdownNodeDiff(md1, md2); + const diff = await operationsToReadableString(operations); + expect(diff).toMatchSnapshot(); + }); + + it("change: type at end", async () => { + const md1 = `# title + +hello + +world`; + + const md2 = `# title + +hello + +# world`; + + const operations = await markdownNodeDiff(md1, md2); + const diff = await operationsToReadableString(operations); + expect(diff).toMatchSnapshot(); + }); + + it("change: text at end", async () => { + const md1 = `# title + +hello + +world`; + + const md2 = `# title + +hello + +worlds`; + + const operations = await markdownNodeDiff(md1, md2); + const diff = await operationsToReadableString(operations); + expect(diff).toMatchSnapshot(); + }); + + it("change: text at start", async () => { + const md1 = `# new title + +hello + +world`; + + const md2 = `# title + +hello + +world`; + + const operations = await markdownNodeDiff(md1, md2); + const diff = await operationsToReadableString(operations); + expect(diff).toMatchSnapshot(); + }); + + it("change: text at middle", async () => { + const md1 = `# title + +hello + +world`; + + const md2 = `# title + +hello there, + +world`; + + const operations = await markdownNodeDiff(md1, md2); + const diff = await operationsToReadableString(operations); + expect(diff).toMatchSnapshot(); + }); + + it("mixed: change and insert", async () => { + const md1 = `# title + +hello + +world`; + + const md2 = `# title + +hello there + +beautiful + +wold`; + + const operations = await markdownNodeDiff(md1, md2); + const diff = await operationsToReadableString(operations); + expect(diff).toMatchSnapshot(); + }); + + it("lists: remove list item", async () => { + const md1 = `# title + +- hello +- world`; + + const md2 = `# title + +- hello`; + + const operations = await markdownNodeDiff(md1, md2); + const diff = await operationsToReadableString(operations); + expect(diff).toMatchSnapshot(); + }); + + it("lists: add list item", async () => { + const md1 = `# title + +- hello`; + + const md2 = `# title + +- hello +- world`; + + const operations = await markdownNodeDiff(md1, md2); + const diff = await operationsToReadableString(operations); + expect(diff).toMatchSnapshot(); + }); + + it("lists: update list item", async () => { + const md1 = `# title + +- hello +- world`; + + const md2 = `# title + +- hello there +- world`; + + const operations = await markdownNodeDiff(md1, md2); + const diff = await operationsToReadableString(operations); + expect(diff).toMatchSnapshot(); + }); + + it("lists: add list", async () => { + const md1 = `# title`; + + const md2 = `# title + +- hello there +- world`; + + const operations = await markdownNodeDiff(md1, md2); + const diff = await operationsToReadableString(operations); + expect(diff).toMatchSnapshot(); + }); + + it("lists: remove list", async () => { + const md1 = `# title + +- hello there +- world`; + + const md2 = `# title`; + + const operations = await markdownNodeDiff(md1, md2); + const diff = await operationsToReadableString(operations); + expect(diff).toMatchSnapshot(); + }); + + it("3 lines -> large text", async () => { + const md1 = `# title + +hello + +world`; + + const md2 = + "# Document Title\n\nTest\n\nThis is the first sentence of the document. \n\n## Introduction\n\nThe introduction provides an overview of the document's purpose and structure. \n\n## Main Content\n\nThe main content section contains the bulk of the information. \n\n### Subsection 1\n\nDetails about the first subsection are provided here. \n\n### Subsection 2\n\nDetails about the second subsection are provided here. \n\n## Conclusion\n\nThe conclusion summarizes the key points discussed in the document. \n\n## References\n\nA list of references and resources used in the document."; + + const operations = await markdownNodeDiff(md1, md2); + const diff = await operationsToReadableString(operations); + expect(diff).toMatchSnapshot(); + }); + + it("1 line -> large text", async () => { + const md1 = `hello`; + + const md2 = + "# Document Title\n\nTest\n\nThis is the first sentence of the document. \n\n## Introduction\n\nThe introduction provides an overview of the document's purpose and structure. \n\n## Main Content\n\nThe main content section contains the bulk of the information. \n\n### Subsection 1\n\nDetails about the first subsection are provided here. \n\n### Subsection 2\n\nDetails about the second subsection are provided here. \n\n## Conclusion\n\nThe conclusion summarizes the key points discussed in the document. \n\n## References\n\nA list of references and resources used in the document."; + + const operations = await markdownNodeDiff(md1, md2); + const diff = await operationsToReadableString(operations); + expect(diff).toMatchSnapshot(); + }); + + it("large text -> 3 lines", async () => { + const md1 = + "# Document Title\n\nTest\n\nThis is the first sentence of the document. \n\n## Introduction\n\nThe introduction provides an overview of the document's purpose and structure. \n\n## Main Content\n\nThe main content section contains the bulk of the information. \n\n### Subsection 1\n\nDetails about the first subsection are provided here. \n\n### Subsection 2\n\nDetails about the second subsection are provided here. \n\n## Conclusion\n\nThe conclusion summarizes the key points discussed in the document. \n\n## References\n\nA list of references and resources used in the document."; + + const md2 = `# title + +hello + +world`; + + const operations = await markdownNodeDiff(md1, md2); + const diff = await operationsToReadableString(operations); + expect(diff).toMatchSnapshot(); + }); + + it("large text -> 1 line", async () => { + const md1 = + "# Document Title\n\nTest\n\nThis is the first sentence of the document. \n\n## Introduction\n\nThe introduction provides an overview of the document's purpose and structure. \n\n## Main Content\n\nThe main content section contains the bulk of the information. \n\n### Subsection 1\n\nDetails about the first subsection are provided here. \n\n### Subsection 2\n\nDetails about the second subsection are provided here. \n\n## Conclusion\n\nThe conclusion summarizes the key points discussed in the document. \n\n## References\n\nA list of references and resources used in the document."; + + const md2 = `hello`; + const operations = await markdownNodeDiff(md1, md2); + const diff = await operationsToReadableString(operations); + expect(diff).toMatchSnapshot(); + }); + + it("3 lines -> 1 line", async () => { + const md1 = "# Document Title\n\nTest\n\nThis"; + + const md2 = `mestis`; + + const operations = await markdownNodeDiff(md1, md2); + const diff = await operationsToReadableString(operations); + expect(diff).toMatchSnapshot(); + }); +}); diff --git a/packages/xl-ai/src/markdown/markdownNodeDiff.ts b/packages/xl-ai/src/markdown/markdownNodeDiff.ts new file mode 100644 index 000000000..0a10eb487 --- /dev/null +++ b/packages/xl-ai/src/markdown/markdownNodeDiff.ts @@ -0,0 +1,408 @@ +import * as Diff from "diff"; +import type { Content } from "mdast"; +import remarkParse from "remark-parse"; +import { unified } from "unified"; + +export type MarkdownNodeDiffResult = + | { + type: "changed" | "unchanged"; + newBlock: Content; + oldBlock: Content; + } + | { + type: "add"; + newBlock: Content; + } + | { + type: "remove"; + oldBlock: Content; + }; + +function takeWhile(array: T[], predicate: (item: T) => boolean): T[] { + const index = array.findIndex((item) => !predicate(item)); + if (index === -1) { + return array.splice(0, array.length); + } + return array.splice(0, index); +} + +/** + * Flatten lists + * + * TODO: add support for nested lists + */ +export function flattenAst(ast: Content[]): Content[] { + const result: Content[] = []; + for (const node of ast) { + if (node.type === "list") { + result.push(...node.children); + } else { + result.push(node); + } + } + return result; +} + +function recursiveRegexpReplace( + str: string, + pattern: RegExp, + replacement: string +): string { + const result = str.replace(pattern, replacement); + if (result === str) { + return result; + } + return recursiveRegexpReplace(result, pattern, replacement); +} + +/** + * Takes two versions of a markdown document, and + * returns a list of `DiffResult` objects indicating + * whether a markdown node has been added, removed, changed, or unchanged + */ +export async function markdownNodeDiff( + oldMarkdown: string, + newMarkdown: string +): Promise { + // The asts will hold character positions in the original markdown + + // preprocess the markdown to replace multiple newlines with a single [EMPTY-LINE] + // otherwise remarkParse will collapse multiple newlines into a single one, + // and we lose information about empty blocks + oldMarkdown = recursiveRegexpReplace( + oldMarkdown, + /\n\n\n\n/g, + "\n\n[EMPTY-LINE]\n\n" + ); + newMarkdown = recursiveRegexpReplace( + newMarkdown, + /\n\n\n\n/g, + "\n\n[EMPTY-LINE]\n\n" + ); + const oldAst = unified().use(remarkParse).parse(oldMarkdown); + const newAst = unified().use(remarkParse).parse(newMarkdown); + + /* + e.g.: + [ + { + count: 7, + added: false, + removed: false, + value: "# title", + }, + { + count: 2, + added: false, + removed: true, + value: "\n\n", + }, + { + count: 5, + added: true, + removed: false, + value: "world", + }, + { + count: 5, + added: false, + removed: false, + value: "hello", + }, +] + */ + const charDiffs = Diff.diffChars(oldMarkdown, newMarkdown); + + const results: MarkdownNodeDiffResult[] = []; + + // Track current position in each version (old and new markdown) + let oldIndex = 0; + let newIndex = 0; + /* + e.g.: + + [ + { + type: "heading", + depth: 1, + children: [ + { + type: "text", + value: "title", + position: { + start: { + line: 1, + column: 3, + offset: 2, + }, + end: { + line: 1, + column: 8, + offset: 7, + }, + }, + }, + ], + position: { + start: { + line: 1, + column: 1, + offset: 0, + }, + end: { + line: 1, + column: 8, + offset: 7, + }, + }, + }, + { + type: "paragraph", + children: [ + { + type: "text", + value: "hello", + position: { + start: { + line: 3, + column: 1, + offset: 9, + }, + end: { + line: 3, + column: 6, + offset: 14, + }, + }, + }, + ], + position: { + start: { + line: 3, + column: 1, + offset: 9, + }, + end: { + line: 3, + column: 6, + offset: 14, + }, + }, + }, +] + */ + const oldBlocks = [...flattenAst(oldAst.children)]; + + /* + e.g.: +[ + { + type: "heading", + depth: 1, + children: [ + { + type: "text", + value: "titleworldhello", + position: { + start: { + line: 1, + column: 3, + offset: 2, + }, + end: { + line: 1, + column: 18, + offset: 17, + }, + }, + }, + ], + position: { + start: { + line: 1, + column: 1, + offset: 0, + }, + end: { + line: 1, + column: 18, + offset: 17, + }, + }, + }, +] + */ + const newBlocks = [...flattenAst(newAst.children)]; + + const diffsByBlock: Map = new Map(); + + // assign all diffs to blocks, this is used later + for (const diff of charDiffs) { + let endIndexOldMD = oldIndex; + let endIndexNewMD = newIndex; + if (diff.added) { + endIndexNewMD = newIndex + diff.value.length; + } else if (diff.removed) { + endIndexOldMD = oldIndex + diff.value.length; + } else { + endIndexOldMD = oldIndex + diff.value.length; + endIndexNewMD = newIndex + diff.value.length; + } + + if (!diff.added) { + for (const block of oldBlocks) { + // check if [oldIndex, endIndexOldMD) overlaps with [block.position!.start!.offset!, block.position!.end!.offset!) + if ( + block.position!.start!.offset! < endIndexOldMD && + block.position!.end!.offset! > oldIndex + ) { + diffsByBlock.set(block, [...(diffsByBlock.get(block) || []), diff]); + } else if (block.position!.start!.offset! > endIndexOldMD) { + // not interested in other blocks past the end of the diff + break; + } + } + } + + if (!diff.removed) { + for (const block of newBlocks) { + // check if [newIndex, endIndexNewMD) overlaps with [block.position!.start!.offset!, block.position!.end!.offset!) + if ( + block.position!.start!.offset! < endIndexNewMD && + block.position!.end!.offset! > newIndex + ) { + diffsByBlock.set(block, [...(diffsByBlock.get(block) || []), diff]); + } else if (block.position!.start!.offset! > endIndexNewMD) { + // not interested in other blocks past the end of the diff + break; + } + } + } + + oldIndex = endIndexOldMD; + newIndex = endIndexNewMD; + } + + // now, main algorithm to process diffs + for (const diff of charDiffs) { + if (diff.added) { + // if it's an add diff, check if it's an add that indicates one or more complete blocks have been added + + // we're not interested in other cases here, e.g. some text has been added to an existing block + // this will be handled by the "keep" diff below + const matchingNewBlocks = takeWhile( + newBlocks, + (block) => + diffsByBlock.get(block)!.some((d) => d === diff) && + diffsByBlock.get(block)!.length === 1 // the only diff on a block is this "add", so add the block + ); + for (const block of matchingNewBlocks) { + results.push({ type: "add", newBlock: block }); + } + continue; + } + + if (diff.removed) { + // if it's a remove diff, check if it's a remove that indicates one or more complete blocks have been removed + + // we're not interested in other cases here, e.g. some text has been removed from an existing block + // this will be handled by the "keep" diff below + const matchingOldBlocks = takeWhile( + oldBlocks, + (block) => + diffsByBlock.get(block)!.some((d) => d === diff) && + diffsByBlock.get(block)!.length === 1 // the only diff on a block is this "remove", so remove the block + ); + for (const block of matchingOldBlocks) { + results.push({ type: "remove", oldBlock: block }); + } + continue; + } + + // it's a "keep" diff (no add / remove) + // let's process all old / new blocks that have this diff + const matchingNewBlocks = takeWhile(newBlocks, (block) => + diffsByBlock.get(block)!.some((d) => d === diff) + ); + + const matchingOldBlocks = takeWhile(oldBlocks, (block) => + diffsByBlock.get(block)!.some((d) => diff === d) + ); + + while (matchingNewBlocks.length || matchingOldBlocks.length) { + const newBlock = matchingNewBlocks.shift(); + const oldBlock = matchingOldBlocks.shift(); + + if (!newBlock && !oldBlock) { + throw new Error("No matching blocks found"); + } + + if (!newBlock) { + /* + this can happen in the case we change 3 blocks into 1 block, e.g.: + + old: + # title + hello + world + + new: + # titleworld + + for the first iteration we'll dispatch a "changed" operation, + but then in the next iterations there will be old blocks (2) left + these are processed and removed here + */ + results.push({ type: "remove", oldBlock: oldBlock! }); + } else if (!oldBlock) { + /** + this can happen in the case we change 1 block into 3 blocks, e.g.: + + old: + hello + + new: + he + l + lo + */ + results.push({ type: "add", newBlock }); + } else { + if ( + diffsByBlock.get(oldBlock)!.every((d) => !d.added && !d.removed) && + diffsByBlock.get(newBlock)!.every((d) => !d.added && !d.removed) + ) { + results.push({ type: "unchanged", newBlock, oldBlock }); + } else { + results.push({ type: "changed", newBlock, oldBlock }); + } + } + } + } + + // remove [EMPTY-LINE] hacks we added at beginning of function + function removeFakeEmptyLines(node: any) { + if ( + node.oldBlock?.type === "paragraph" && + node.oldBlock.children.length === 1 && + node.oldBlock.children[0].type === "text" && + node.oldBlock.children[0].value === "[EMPTY-LINE]" + ) { + node.oldBlock.children[0].value = ""; + } + if ( + node.newBlock?.type === "paragraph" && + node.newBlock.children.length === 1 && + node.newBlock.children[0].type === "text" && + node.newBlock.children[0].value === "[EMPTY-LINE]" + ) { + node.newBlock.children[0].value = ""; + } + return node; + } + + for (const result of results) { + removeFakeEmptyLines(result); + } + return results; +} diff --git a/packages/xl-ai/src/markdown/markdownOperations.test.ts b/packages/xl-ai/src/markdown/markdownOperations.test.ts new file mode 100644 index 000000000..3c50793fa --- /dev/null +++ b/packages/xl-ai/src/markdown/markdownOperations.test.ts @@ -0,0 +1,303 @@ +import { BlockNoteEditor } from "@blocknote/core"; +import { describe, expect, it } from "vitest"; +import { markdownNodeDiff } from "./markdownNodeDiff.js"; +import { markdownNodeDiffToBlockOperations } from "./markdownOperations.js"; + +describe("markdownNodeDiffToBlockOperations", () => { + it("add sentence at start", async () => { + const editor = BlockNoteEditor.create({ + initialContent: [ + { + type: "paragraph", + content: "hello", + }, + ], + }); + + const diff = await markdownNodeDiff( + await editor.blocksToMarkdownLossy(), + "test\n\nhello" + ); + const update = await markdownNodeDiffToBlockOperations( + editor, + editor.document, + diff + ); + + expect(update).toMatchSnapshot(); + }); + + it("add word at end of sentence", async () => { + const editor = BlockNoteEditor.create({ + initialContent: [ + { + type: "paragraph", + content: "hello", + }, + ], + }); + + const diff = await markdownNodeDiff( + await editor.blocksToMarkdownLossy(), + "hello world" + ); + const update = await markdownNodeDiffToBlockOperations( + editor, + editor.document, + diff + ); + + expect(update).toMatchSnapshot(); + }); + + it("change type", async () => { + const editor = BlockNoteEditor.create({ + initialContent: [ + { + type: "paragraph", + content: "hello", + }, + ], + }); + + const diff = await markdownNodeDiff( + await editor.blocksToMarkdownLossy(), + "# hello" + ); + const update = await markdownNodeDiffToBlockOperations( + editor, + editor.document, + diff + ); + + expect(update).toMatchSnapshot(); + }); + + it("complex change 1", async () => { + const editor = BlockNoteEditor.create({ + initialContent: [ + { + type: "heading", + content: "hello there", + }, + { + type: "paragraph", + content: "beautiful", + }, + { + type: "paragraph", + content: "world", + }, + ], + }); + + const diff = await markdownNodeDiff( + await editor.blocksToMarkdownLossy(), + `prefix + +## hello + +world` + ); + const update = await markdownNodeDiffToBlockOperations( + editor, + editor.document, + diff + ); + + expect(update).toMatchSnapshot(); + }); + + it("complex change 2", async () => { + const editor = BlockNoteEditor.create({ + initialContent: [ + { + type: "heading", + content: "hello there", + }, + { + type: "paragraph", + content: "beautiful", + }, + { + type: "paragraph", + content: "world", + }, + ], + }); + + const diff = await markdownNodeDiff( + // note that the indentation will actually create a code block from the last two paragraphs + await editor.blocksToMarkdownLossy(), + `prefix + + ## hello + + world` + ); + const update = await markdownNodeDiffToBlockOperations( + editor, + editor.document, + diff + ); + + expect(update).toMatchSnapshot(); + }); + + it("large change", async () => { + const editor = BlockNoteEditor.create({ + initialContent: [ + { + type: "paragraph", + content: "hello", + }, + ], + }); + + const diff = await markdownNodeDiff( + await editor.blocksToMarkdownLossy(), + "# Document Title\n\nTest\n\nThis is the first sentence of the document. \n\n## Introduction\n\nThe introduction provides an overview of the document's purpose and structure. \n\n## Main Content\n\nThe main content section contains the bulk of the information. \n\n### Subsection 1\n\nDetails about the first subsection are provided here. \n\n### Subsection 2\n\nDetails about the second subsection are provided here. \n\n## Conclusion\n\nThe conclusion summarizes the key points discussed in the document. \n\n## References\n\nA list of references and resources used in the document." + ); + const update = await markdownNodeDiffToBlockOperations( + editor, + editor.document, + diff + ); + + expect(update).toMatchSnapshot(); + }); + + // TODO: this still breaks + it.skip("fake list", async () => { + const editor = BlockNoteEditor.create({ + initialContent: [ + { + type: "paragraph", + content: "hello\n- test\n- test2", + }, + ], + }); + + const diff = await markdownNodeDiff( + await editor.blocksToMarkdownLossy(), + "hello world" + ); + const update = await markdownNodeDiffToBlockOperations( + editor, + editor.document, + diff + ); + + expect(update).toMatchSnapshot(); + }); + + it("one empty paragraph", async () => { + const editor = BlockNoteEditor.create({ + initialContent: [ + { + type: "paragraph", + content: "hello", + }, + { + type: "paragraph", + content: "", + }, + { + type: "paragraph", + content: "there", + }, + ], + }); + + const diff = await markdownNodeDiff( + await editor.blocksToMarkdownLossy(), + "hello world" + ); + const update = await markdownNodeDiffToBlockOperations( + editor, + editor.document, + diff + ); + + expect(update).toMatchSnapshot(); + }); + + it("two empty paragraphs", async () => { + const editor = BlockNoteEditor.create({ + initialContent: [ + { + type: "paragraph", + content: "hello", + }, + { + type: "paragraph", + content: "", + }, + { + type: "paragraph", + content: "", + }, + { + type: "paragraph", + content: "there", + }, + ], + }); + + const diff = await markdownNodeDiff( + await editor.blocksToMarkdownLossy(), + "hello world" + ); + const update = await markdownNodeDiffToBlockOperations( + editor, + editor.document, + diff + ); + + expect(update).toMatchSnapshot(); + }); + + it("empty paragraph and table", async () => { + const editor = BlockNoteEditor.create({ + initialContent: [ + { + type: "paragraph", + content: "hello", + }, + { + type: "paragraph", + content: "", + }, + { + type: "table", + content: { + type: "tableContent", + rows: [ + { + cells: ["test", "test2"], + }, + ], + }, + }, + ], + }); + + const diff = await markdownNodeDiff( + await editor.blocksToMarkdownLossy(), + "**A Call to Action: Empowering Europe's Public Agents with an Open-Source Alternative to Notion**\n\nDear President Ursula Von der Leyen,\n\nAs the European Union continues to strive for innovation and digital transformation, I strongly believe that creating an open-source alternative to Notion for public agents is a crucial step forward. This initiative would not only enhance the productivity and collaboration of our public servants but also ensure the sovereignty and security of our data.\n\nBy developing an open-source platform, we can guarantee that our public agents' data remains within the EU's borders, protected by our stringent data protection laws. This would alleviate concerns about data privacy and security, allowing our agents to focus on their critical work without worrying about the risks associated with proprietary software.\n\nMoreover, an open-source platform would foster a culture of collaboration and transparency. Public agents from different member states could work together seamlessly, sharing knowledge and best practices to drive progress and innovation. This would be particularly beneficial in areas such as policy-making, research, and crisis management, where collaboration is essential.\n\nFurthermore, an open-source alternative to Notion would be a powerful symbol of the EU's commitment to digital sovereignty and its determination to shape the future of technology. By taking control of our digital tools, we can ensure that our values and principles are reflected in the software we use.\n\nI urge you to consider the benefits of creating an open-source alternative to Notion for Europe's public agents. Together, we can empower our public servants, enhance collaboration, and drive innovation while protecting our data and promoting digital sovereignty.\n\nSincerely, [Your Name]\n\n| | | |\n| ---------------------------- | ---------- | --------------------------- |\n| | Notion | Open source |\n| Cost | 30€/cs | 1€/cs |\n| People in-house | 0 | 5 developers (100k€ a year) |\n| Number of civil servant (cs) | 36 million | 36 million |\n\n**Summary of Costs and Benefits**\n\nThe proposed open-source alternative to Notion would significantly reduce costs, from 30€ per civil servant to 1€ per civil servant, while also creating in-house jobs for 5 developers. This initiative would not only save the EU a substantial amount of money but also promote digital sovereignty and enhance collaboration among public agents.\n\n**Summary**\n\nIn conclusion, creating an open-source alternative to Notion for Europe's public agents is a crucial step towards digital transformation, data sovereignty, and enhanced collaboration. With significant cost savings and the creation of in-house jobs, this initiative has the potential to drive innovation and progress in the EU while protecting our values and principles." + ); + const update = await markdownNodeDiffToBlockOperations( + editor, + editor.document, + diff + ); + + expect(update).toMatchSnapshot(); + }); +}); + +// investigate streaming +// inline content etc +// add tests for nesting +// add tests for lists +// add tests for tables diff --git a/packages/xl-ai/src/markdown/markdownOperations.ts b/packages/xl-ai/src/markdown/markdownOperations.ts new file mode 100644 index 000000000..d578324e0 --- /dev/null +++ b/packages/xl-ai/src/markdown/markdownOperations.ts @@ -0,0 +1,104 @@ +import { BlockNoteEditor } from "@blocknote/core"; + +import { Block } from "@blocknote/core"; +import { MarkdownNodeDiffResult } from "./markdownNodeDiff.js"; +import { markdownUpdateToBlockUpdate } from "./markdownUpdate.js"; +import { markdownNodeToString } from "./util.js"; + +function flattenBlocks(blocks: Block[]): Block[] { + return blocks.flatMap((block) => { + return [block, ...flattenBlocks(block.children)]; + }); +} + +/** + * Takes a list of markdown node diffs and converts them into a list of block operations + * to perform on the blocks to get to the target markdown + */ +export async function markdownNodeDiffToBlockOperations( + editor: BlockNoteEditor, + blocks: Block[], + markdownNodeDiff: MarkdownNodeDiffResult[] +) { + const operations: any[] = []; + + blocks = flattenBlocks(blocks); + if ( + markdownNodeDiff.filter((diff) => diff.type !== "add").length !== + blocks.length + ) { + throw new Error( + "Number of nodes in markdown diff does not match number of blocks" + ); + } + + let lastBlockId: string | undefined; + let currentBlockIndex = 0; + + for (const diff of markdownNodeDiff) { + if (diff.type === "add") { + const newBlocks = await editor.tryParseMarkdownToBlocks( + markdownNodeToString(diff.newBlock) + ); + + if (newBlocks.length !== 1) { + throw new Error("Expected single block to be added"); + } + + const block = newBlocks[0]; + + // new node has been added + if ( + operations.length > 0 && + operations[operations.length - 1].type === "add" + ) { + // add to previous "add operation" (add can be a list of blocks) + operations[operations.length - 1].blocks.push(block); + } else { + const positionInfo = + currentBlockIndex < blocks.length + ? { + position: "before", + referenceId: blocks[currentBlockIndex].id, + } + : { + position: "after", + referenceId: lastBlockId, + }; + + operations.push({ + type: "add", + ...positionInfo, + blocks: [block], + }); + } + } else if (diff.type === "remove") { + // remove block + operations.push({ + type: "delete", + id: blocks[currentBlockIndex].id, + }); + currentBlockIndex++; + } else if (diff.type === "unchanged") { + lastBlockId = blocks[currentBlockIndex].id; + currentBlockIndex++; + } else if (diff.type === "changed") { + // a block has been changed, get the update operation + lastBlockId = blocks[currentBlockIndex].id; + + const update = await markdownUpdateToBlockUpdate( + editor, + blocks[currentBlockIndex], + markdownNodeToString(diff.oldBlock), + markdownNodeToString(diff.newBlock) + ); + operations.push({ + type: "update", + id: blocks[currentBlockIndex].id, + block: update, + }); + currentBlockIndex++; + } + } + return operations; +} diff --git a/packages/xl-ai/src/markdown/markdownUpdate.test.ts b/packages/xl-ai/src/markdown/markdownUpdate.test.ts new file mode 100644 index 000000000..d5e3ab077 --- /dev/null +++ b/packages/xl-ai/src/markdown/markdownUpdate.test.ts @@ -0,0 +1,89 @@ +import { BlockNoteEditor } from "@blocknote/core"; +import { describe, expect, it } from "vitest"; +import { markdownUpdateToBlockUpdate } from "./markdownUpdate.js"; + +describe("markdownUpdateToBlockUpdate", () => { + it("change text", async () => { + const editor = BlockNoteEditor.create({ + initialContent: [ + { + type: "paragraph", + content: "hello", + }, + ], + }); + + const block = editor.document[0]; + const update = await markdownUpdateToBlockUpdate( + editor, + block, + await editor.blocksToMarkdownLossy([block]), + "hello world" + ); + expect(update).toMatchSnapshot(); + }); + + it("change type", async () => { + const editor = BlockNoteEditor.create({ + initialContent: [ + { + type: "paragraph", + content: "hello", + }, + ], + }); + + const block = editor.document[0]; + const update = await markdownUpdateToBlockUpdate( + editor, + block, + await editor.blocksToMarkdownLossy([block]), + "# hello" + ); + expect(update).toMatchSnapshot(); + }); + + it("change unchecked to checked", async () => { + const editor = BlockNoteEditor.create({ + initialContent: [ + { + type: "checkListItem", + props: { checked: false }, + content: "hello", + }, + ], + }); + + const block = editor.document[0]; + const update = await markdownUpdateToBlockUpdate( + editor, + block, + await editor.blocksToMarkdownLossy([block]), + "- [x] hello" + ); + expect(update).toMatchSnapshot(); + }); + + it("no change", async () => { + const editor = BlockNoteEditor.create({ + initialContent: [ + { + type: "paragraph", + content: "hello", + props: { + textAlignment: "right", + }, + }, + ], + }); + + const block = editor.document[0]; + const update = await markdownUpdateToBlockUpdate( + editor, + block, + await editor.blocksToMarkdownLossy([block]), + "hello" + ); + expect(update).toMatchSnapshot(); + }); +}); diff --git a/packages/xl-ai/src/markdown/markdownUpdate.ts b/packages/xl-ai/src/markdown/markdownUpdate.ts new file mode 100644 index 000000000..64b55167b --- /dev/null +++ b/packages/xl-ai/src/markdown/markdownUpdate.ts @@ -0,0 +1,74 @@ +import { Block, BlockNoteEditor } from "@blocknote/core"; +import { diff as jsonDiff } from "../json-diff/json-diff.js"; + +/** + * Calculate an update operation to an existing block to apply the changes + * from `oldMarkdown` to `newMarkdown`. Because Markdown is a lossy format, + * we don't want to blindly replace the entire block. This would lose information like + * text alignment, block colors, etc. + * + * Instead, we detect the changes from oldMarkdown to newMarkdown and apply these to the + * existing block. + * + * Method used (pseudocode): + * - blockChanges = jsondiff(asBlock(oldMarkdown), asBlock(newMarkdown)) + * - return this information as an update operation + */ +export async function markdownUpdateToBlockUpdate( + editor: BlockNoteEditor, + _oldBlock: Block, + oldMarkdown: string, + newMarkdown: string +) { + if (oldMarkdown === newMarkdown) { + throw new Error("Markdown is unchanged"); + } + const oldMarkdownAsBlocks = await editor.tryParseMarkdownToBlocks( + oldMarkdown + ); + if (oldMarkdownAsBlocks.length !== 1) { + throw new Error("Old markdown is not a single block"); + } + const oldMarkdownAsBlock = oldMarkdownAsBlocks[0]; + + const newMarkdownAsBlocks = await editor.tryParseMarkdownToBlocks( + newMarkdown + ); + if (newMarkdownAsBlocks.length !== 1) { + throw new Error("New markdown is not a single block"); + } + const newMarkdownAsBlock = newMarkdownAsBlocks[0]; + + const diff = jsonDiff(oldMarkdownAsBlock, newMarkdownAsBlock); + + if (Array.isArray(diff) || typeof diff !== "object") { + throw new Error("json diff is not a single change"); + } + + const ret: Record = {}; + + if (diff.props) { + ret.props = {}; + for (const key in diff.props) { + if (key.endsWith("__added")) { + ret.props[key.replace("__added", "")] = diff.props[key]; + } else if (key.endsWith("__deleted")) { + ret.props[key.replace("__deleted", "")] = undefined; + } else { + ret.props[key] = diff.props[key].__new; + } + } + } + + if (diff.content) { + // Note: we overwrite the entire content with the new content. + // This means we'll currently lose inline styles / content not supported by markdown + ret.content = newMarkdownAsBlock.content; + } + + if (diff.type) { + ret.type = newMarkdownAsBlock.type; + } + + return ret; +} diff --git a/packages/xl-ai/src/markdown/util.ts b/packages/xl-ai/src/markdown/util.ts new file mode 100644 index 000000000..5b7ab0915 --- /dev/null +++ b/packages/xl-ai/src/markdown/util.ts @@ -0,0 +1,7 @@ +import remarkStringify from "remark-stringify"; +import { unified } from "unified"; + +export function markdownNodeToString(node: any) { + const md = unified().use(remarkStringify).stringify(node); + return md; +} diff --git a/packages/xl-ai/src/style.css b/packages/xl-ai/src/style.css new file mode 100644 index 000000000..ff80cdfbe --- /dev/null +++ b/packages/xl-ai/src/style.css @@ -0,0 +1,84 @@ +/* AI Block */ +[data-content-type="ai"] .bn-ai-prompt-box { + align-items: center; + border-radius: 8px; + display: flex; + flex-direction: row; + gap: 10px; + outline: solid 3px rgba(154, 56, 173, 0.2); + padding: 12px; + width: 100%; +} + +[data-content-type="ai"] .bn-ai-prompt-box svg { + color: rgba(154, 56, 173, 0.2); + width: 24px; + height: 24px; +} + +[data-content-type="ai"] .bn-ai-prompt-box span { + flex: 1; +} + +[data-content-type="ai"] .bn-ai-prompt-box button { + background-color: transparent; + border: solid 1px rgba(120, 120, 120, 0.3); + border-radius: 4px; + color: rgba(154, 56, 173, 0.5); + cursor: pointer; + user-select: none; +} + +[data-content-type="ai"][data-prompt] p { + border-radius: 4px; +} + +.bn-editor[contenteditable="true"] + [data-content-type="ai"][data-prompt] + p:hover { + outline: solid 3px rgba(154, 56, 173, 0.1); +} + +.bn-editor[contenteditable="true"] + [data-content-type="ai"][data-prompt][data-is-focused] + p { + outline: solid 3px rgba(154, 56, 173, 0.2); +} + +.bn-side-menu[data-block-type="ai"]:not([data-prompt]) { + height: 58px; +} + +.bn-combobox { + display: flex; + flex-direction: column; + gap: 4px; + width: 100%; +} + +div:not(.bn-popover-content) > .bn-combobox-input, +div:not(.bn-popover-content) > .bn-combobox-items:not(:empty) { + background-color: var(--bn-colors-menu-background); + border: var(--bn-border); + border-radius: var(--bn-border-radius-medium); + box-shadow: var(--bn-shadow-medium); + color: var(--bn-colors-menu-text); + gap: 4px; + min-width: 145px; + padding: 2px; +} + +.bn-combobox-items { + max-width: 50%; +} + +/* Mantine (TODO) */ +/*.bn-toolbar .mantine-Button-root.bn-show-prompt-button,*/ +/*.bn-toolbar .mantine-Button-root.bn-show-prompt-button:hover {*/ +/* color: rgba(154, 56, 173, 0.5);*/ +/*}*/ + +[data-ai-show-selection] { + background-color: highlight; + padding: 2px 0; +} diff --git a/packages/xl-ai/src/testUtil/cases/defaultSchema.ts b/packages/xl-ai/src/testUtil/cases/defaultSchema.ts new file mode 100644 index 000000000..755c377e4 --- /dev/null +++ b/packages/xl-ai/src/testUtil/cases/defaultSchema.ts @@ -0,0 +1,591 @@ +import { + BlockNoteEditor, + DefaultBlockSchema, + DefaultInlineContentSchema, + DefaultStyleSchema, +} from "@blocknote/core"; +import { EditorTestCases } from "../index.js"; + +export const defaultSchemaTestCases: EditorTestCases< + DefaultBlockSchema, + DefaultInlineContentSchema, + DefaultStyleSchema +> = { + name: "default schema", + createEditor: () => { + return BlockNoteEditor.create({ + // uploadFile: uploadToTmpFilesDotOrg_DEV_ONLY, + }); + }, + documents: [ + { + name: "paragraph/empty", + blocks: [ + { + type: "paragraph", + }, + ], + }, + { + name: "paragraph/hello-world", + blocks: [ + { + type: "paragraph", + content: "Hello", + }, + { + type: "paragraph", + content: "World", + }, + ], + }, + { + name: "paragraph/styled", + blocks: [ + { + type: "paragraph", + props: { + textAlignment: "center", + textColor: "orange", + backgroundColor: "pink", + }, + content: [ + { + type: "text", + styles: {}, + text: "Plain ", + }, + { + type: "text", + styles: { + textColor: "red", + }, + text: "Red Text ", + }, + { + type: "text", + styles: { + backgroundColor: "blue", + }, + text: "Blue Background ", + }, + { + type: "text", + styles: { + textColor: "red", + backgroundColor: "blue", + }, + text: "Mixed Colors", + }, + ], + }, + ], + }, + { + name: "paragraph/nested", + blocks: [ + { + type: "paragraph", + content: "Paragraph", + children: [ + { + type: "paragraph", + content: "Nested Paragraph 1", + }, + { + type: "paragraph", + content: "Nested Paragraph 2", + }, + ], + }, + ], + }, + { + name: "paragraph/lineBreaks", + blocks: [ + { + type: "paragraph", + content: "Line 1\nLine 2", + }, + ], + }, + { + name: "lists/basic", + blocks: [ + { + type: "bulletListItem", + content: "Bullet List Item 1", + }, + { + type: "bulletListItem", + content: "Bullet List Item 2", + }, + { + type: "numberedListItem", + content: "Numbered List Item 1", + }, + { + type: "numberedListItem", + content: "Numbered List Item 2", + }, + { + type: "checkListItem", + content: "Check List Item 1", + }, + { + type: "checkListItem", + props: { + checked: true, + }, + content: "Check List Item 2", + }, + ], + }, + { + name: "lists/nested", + blocks: [ + { + type: "bulletListItem", + content: "Bullet List Item 1", + }, + { + type: "bulletListItem", + content: "Bullet List Item 2", + children: [ + { + type: "numberedListItem", + content: "Numbered List Item 1", + }, + { + type: "numberedListItem", + content: "Numbered List Item 2", + children: [ + { + type: "checkListItem", + content: "Check List Item 1", + }, + { + type: "checkListItem", + props: { + checked: true, + }, + content: "Check List Item 2", + }, + ], + }, + ], + }, + ], + }, + { + name: "file/button", + blocks: [ + { + type: "file", + }, + ], + }, + { + name: "file/basic", + blocks: [ + { + type: "file", + props: { + name: "example", + url: "exampleURL", + caption: "Caption", + }, + }, + ], + }, + { + name: "file/noName", + blocks: [ + { + type: "file", + props: { + url: "exampleURL", + caption: "Caption", + }, + }, + ], + }, + { + name: "file/noCaption", + blocks: [ + { + type: "file", + props: { + name: "example", + url: "exampleURL", + }, + }, + ], + }, + { + name: "file/nested", + blocks: [ + { + type: "file", + props: { + name: "example", + url: "exampleURL", + caption: "Caption", + }, + children: [ + { + type: "file", + props: { + name: "example", + url: "exampleURL", + caption: "Caption", + }, + }, + ], + }, + ], + }, + // Because images need to fetch the download URL async, their internal HTML + // is initially rendered without a `src` attribute, which is reflected in + // the tests. + { + name: "image/button", + blocks: [ + { + type: "image", + }, + ], + }, + { + name: "image/basic", + blocks: [ + { + type: "image", + props: { + name: "example", + url: "exampleURL", + caption: "Caption", + previewWidth: 256, + }, + }, + ], + }, + { + name: "image/noName", + blocks: [ + { + type: "image", + props: { + url: "exampleURL", + caption: "Caption", + previewWidth: 256, + }, + }, + ], + }, + { + name: "image/noCaption", + blocks: [ + { + type: "image", + props: { + name: "example", + url: "exampleURL", + previewWidth: 256, + }, + }, + ], + }, + { + name: "image/noPreview", + blocks: [ + { + type: "image", + props: { + name: "example", + url: "exampleURL", + caption: "Caption", + showPreview: false, + previewWidth: 256, + }, + }, + ], + }, + { + name: "image/nested", + blocks: [ + { + type: "image", + props: { + url: "exampleURL", + caption: "Caption", + previewWidth: 256, + }, + children: [ + { + type: "image", + props: { + url: "exampleURL", + caption: "Caption", + previewWidth: 256, + }, + }, + ], + }, + ], + }, + { + name: "link/basic", + blocks: [ + { + // id: UniqueID.options.generateID(), + type: "paragraph", + content: [ + { + type: "link", + href: "https://www.website.com", + content: "Website", + }, + ], + }, + ], + }, + { + name: "link/styled", + blocks: [ + { + // id: UniqueID.options.generateID(), + type: "paragraph", + content: [ + { + type: "link", + href: "https://www.website.com", + content: [ + { + type: "text", + text: "Web", + styles: { + bold: true, + }, + }, + { + type: "text", + text: "site", + styles: {}, + }, + ], + }, + ], + }, + ], + }, + { + name: "link/adjacent", + blocks: [ + { + // id: UniqueID.options.generateID(), + type: "paragraph", + content: [ + { + type: "link", + href: "https://www.website.com", + content: "Website", + }, + { + type: "link", + href: "https://www.website2.com", + content: "Website2", + }, + ], + }, + ], + }, + { + name: "hardbreak/basic", + blocks: [ + { + // id: UniqueID.options.generateID(), + type: "paragraph", + content: [ + { + type: "text", + text: "Text1\nText2", + styles: {}, + }, + ], + }, + ], + }, + { + name: "hardbreak/multiple", + blocks: [ + { + // id: UniqueID.options.generateID(), + type: "paragraph", + content: [ + { + type: "text", + text: "Text1\nText2\nText3", + styles: {}, + }, + ], + }, + ], + }, + { + name: "hardbreak/start", + blocks: [ + { + // id: UniqueID.options.generateID(), + type: "paragraph", + content: [ + { + type: "text", + text: "\nText1", + styles: {}, + }, + ], + }, + ], + }, + { + name: "hardbreak/end", + blocks: [ + { + // id: UniqueID.options.generateID(), + type: "paragraph", + content: [ + { + type: "text", + text: "Text1\n", + styles: {}, + }, + ], + }, + ], + }, + { + name: "hardbreak/only", + blocks: [ + { + // id: UniqueID.options.generateID(), + type: "paragraph", + content: [ + { + type: "text", + text: "\n", + styles: {}, + }, + ], + }, + ], + }, + { + name: "hardbreak/styles", + blocks: [ + { + // id: UniqueID.options.generateID(), + type: "paragraph", + content: [ + { + type: "text", + text: "Text1\n", + styles: {}, + }, + { + type: "text", + text: "Text2", + styles: { bold: true }, + }, + ], + }, + ], + }, + { + name: "hardbreak/link", + blocks: [ + { + // id: UniqueID.options.generateID(), + type: "paragraph", + content: [ + { + type: "link", + href: "https://www.website.com", + content: "Link1\nLink1", + }, + ], + }, + ], + }, + { + name: "hardbreak/between-links", + blocks: [ + { + // id: UniqueID.options.generateID(), + type: "paragraph", + content: [ + { + type: "link", + href: "https://www.website.com", + content: "Link1\n", + }, + { + type: "link", + href: "https://www.website2.com", + content: "Link2", + }, + ], + }, + ], + }, + { + name: "complex/misc", + blocks: [ + { + // id: UniqueID.options.generateID(), + type: "heading", + props: { + backgroundColor: "blue", + textColor: "yellow", + textAlignment: "right", + level: 2, + }, + content: [ + { + type: "text", + text: "Heading ", + styles: { + bold: true, + underline: true, + }, + }, + { + type: "text", + text: "2", + styles: { + italic: true, + strike: true, + }, + }, + ], + children: [ + { + // id: UniqueID.options.generateID(), + type: "paragraph", + props: { + backgroundColor: "red", + }, + content: "Paragraph", + children: [], + }, + { + // id: UniqueID.options.generateID(), + type: "bulletListItem", + props: {}, + }, + ], + }, + ], + }, + ], +}; diff --git a/packages/xl-ai/src/testUtil/index.ts b/packages/xl-ai/src/testUtil/index.ts new file mode 100644 index 000000000..69031648c --- /dev/null +++ b/packages/xl-ai/src/testUtil/index.ts @@ -0,0 +1,20 @@ +import { + BlockNoteEditor, + BlockSchema, + InlineContentSchema, + PartialBlock, + StyleSchema, +} from "@blocknote/core"; + +export type EditorTestCases< + B extends BlockSchema, + I extends InlineContentSchema, + S extends StyleSchema +> = { + name: string; + createEditor: () => BlockNoteEditor; + documents: Array<{ + name: string; + blocks: PartialBlock, NoInfer, NoInfer>[]; + }>; +}; diff --git a/packages/xl-ai/tsconfig.json b/packages/xl-ai/tsconfig.json new file mode 100644 index 000000000..607ad93cf --- /dev/null +++ b/packages/xl-ai/tsconfig.json @@ -0,0 +1,32 @@ +{ + "compilerOptions": { + "target": "ESNext", + "useDefineForClassFields": true, + "module": "ESNext", + "lib": ["ESNext", "DOM"], + "moduleResolution": "Node", + "jsx": "react-jsx", + "strict": true, + "sourceMap": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "noEmit": false, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noImplicitReturns": true, + "outDir": "dist", + "declaration": true, + "declarationDir": "types", + "composite": true, + "skipLibCheck": true, + }, + "include": ["src"], + "references": [ + { + "path": "../core" + }, + { + "path": "../react" + } + ] +} diff --git a/packages/xl-ai/vite.config.ts b/packages/xl-ai/vite.config.ts new file mode 100644 index 000000000..b3996d26f --- /dev/null +++ b/packages/xl-ai/vite.config.ts @@ -0,0 +1,53 @@ +import react from "@vitejs/plugin-react"; +import * as path from "path"; +import { webpackStats } from "rollup-plugin-webpack-stats"; +import { defineConfig } from "vite"; +import pkg from "./package.json"; +// import eslintPlugin from "vite-plugin-eslint"; + +// https://vitejs.dev/config/ +export default defineConfig((conf) => ({ + test: { + environment: "jsdom", + setupFiles: ["./vitestSetup.ts"], + }, + plugins: [react(), webpackStats()], + // used so that vitest resolves the core package from the sources instead of the built version + resolve: { + alias: + conf.command === "build" + ? ({} as Record) + : ({ + // load live from sources with live reload working + "@blocknote/core": path.resolve(__dirname, "../core/src/"), + "@blocknote/mantine": path.resolve(__dirname, "../mantine/src/"), + "@blocknote/react": path.resolve(__dirname, "../react/src/"), + } as Record), + }, + build: { + sourcemap: true, + lib: { + entry: path.resolve(__dirname, "src/index.ts"), + name: "blocknote-xl-ai", + fileName: "blocknote-xl-ai", + }, + rollupOptions: { + // make sure to externalize deps that shouldn't be bundled + // into your library + external: Object.keys({ + ...pkg.dependencies, + ...pkg.peerDependencies, + ...pkg.devDependencies, + }), + output: { + // Provide global variables to use in the UMD build + // for externalized deps + globals: { + react: "React", + "react-dom": "ReactDOM", + }, + interop: "compat", // https://rollupjs.org/migration/#changed-defaults + }, + }, + }, +})); diff --git a/packages/xl-ai/vitestSetup.ts b/packages/xl-ai/vitestSetup.ts new file mode 100644 index 000000000..51c7c7b5a --- /dev/null +++ b/packages/xl-ai/vitestSetup.ts @@ -0,0 +1,45 @@ +import { Agent, setGlobalDispatcher } from "undici"; +import { afterEach, beforeEach } from "vitest"; + +// make sure our fetch request uses HTTP/2 +setGlobalDispatcher( + new Agent({ + allowH2: true, + }) +); + +// https.globalAgent.options.ca = fs.readFileSync("../xl-ai-server/localhost.pem"); +// debugger; +beforeEach(() => { + (window as Window & { __TEST_OPTIONS?: any }).__TEST_OPTIONS = {}; +}); + +afterEach(() => { + delete (window as Window & { __TEST_OPTIONS?: any }).__TEST_OPTIONS; +}); + +// Mock ClipboardEvent +class ClipboardEventMock extends Event { + public clipboardData = { + getData: () => { + // + }, + setData: () => { + // + }, + }; +} +(global as any).ClipboardEvent = ClipboardEventMock; + +// Mock DragEvent +class DragEventMock extends Event { + public dataTransfer = { + getData: () => { + // + }, + setData: () => { + // + }, + }; +} +(global as any).DragEvent = DragEventMock; diff --git a/packages/xl-docx-exporter/package.json b/packages/xl-docx-exporter/package.json index 6004c1300..9259c97fc 100644 --- a/packages/xl-docx-exporter/package.json +++ b/packages/xl-docx-exporter/package.json @@ -47,7 +47,8 @@ "lint": "eslint src --max-warnings 0", "test": "vitest --run", "test-watch": "vitest watch", - "email": "email dev" + "email": "email dev", + "_prepare": "npm run build" }, "dependencies": { "@blocknote/core": "^0.24.1", diff --git a/packages/xl-multi-column/package.json b/packages/xl-multi-column/package.json index 25a213872..179588271 100644 --- a/packages/xl-multi-column/package.json +++ b/packages/xl-multi-column/package.json @@ -42,7 +42,8 @@ "lint": "eslint src --max-warnings 0", "test": "vitest", "test-watch": "vitest watch", - "clean": "rimraf dist && rimraf types" + "clean": "rimraf dist && rimraf types", + "_prepare": "npm run build" }, "dependencies": { "@blocknote/core": "^0.24.1", diff --git a/packages/xl-pdf-exporter/package.json b/packages/xl-pdf-exporter/package.json index 55048fb96..43b5377c4 100644 --- a/packages/xl-pdf-exporter/package.json +++ b/packages/xl-pdf-exporter/package.json @@ -46,7 +46,8 @@ "lint": "eslint src --max-warnings 0", "test": "vitest --run", "test-watch": "vitest watch", - "email": "email dev" + "email": "email dev", + "_prepare": "npm run build" }, "dependencies": { "@blocknote/core": "^0.24.1", diff --git a/playground/.env b/playground/.env new file mode 100644 index 000000000..087c0f3af --- /dev/null +++ b/playground/.env @@ -0,0 +1,2 @@ +VITE_BLOCKNOTE_AI_SERVER_API_KEY= +VITE_BLOCKNOTE_AI_SERVER_BASE_URL= \ No newline at end of file diff --git a/playground/package.json b/playground/package.json index a03e18259..15b385390 100644 --- a/playground/package.json +++ b/playground/package.json @@ -10,6 +10,9 @@ "clean": "rimraf dist" }, "dependencies": { + "ai": "^4.1.0", + "@ai-sdk/openai": "^1.1.0", + "@ai-sdk/groq": "^1.1.0", "@aws-sdk/client-s3": "^3.609.0", "@aws-sdk/s3-request-presigner": "^3.609.0", "@blocknote/ariakit": "^0.24.1", @@ -18,6 +21,7 @@ "@blocknote/react": "^0.24.1", "@blocknote/server-util": "^0.24.1", "@blocknote/shadcn": "^0.24.1", + "@blocknote/xl-ai": "^0.24.1", "@blocknote/xl-multi-column": "^0.24.1", "@emotion/react": "^11.11.4", "@emotion/styled": "^11.11.5", diff --git a/playground/src/examples.gen.tsx b/playground/src/examples.gen.tsx index 1aa17a29d..112fb0975 100644 --- a/playground/src/examples.gen.tsx +++ b/playground/src/examples.gen.tsx @@ -1165,6 +1165,38 @@ } ] }, + "ai": { + "pathFromRoot": "examples/09-ai", + "slug": "ai", + "projects": [ + { + "projectSlug": "minimal", + "fullSlug": "ai/minimal", + "pathFromRoot": "examples/09-ai/01-minimal", + "config": { + "playground": true, + "docs": true, + "author": "yousefed", + "tags": [ + "AI", + "llm" + ], + "dependencies": { + "@blocknote/xl-ai": "latest", + "@mantine/core": "^7.10.1", + "ai": "^4.1.0", + "@ai-sdk/openai": "^1.1.0", + "@ai-sdk/groq": "^1.1.0" + } as any + }, + "title": "AI integration", + "group": { + "pathFromRoot": "examples/09-ai", + "slug": "ai" + } + } + ] + }, "vanilla-js": { "pathFromRoot": "examples/vanilla-js", "slug": "vanilla-js", diff --git a/playground/tsconfig.json b/playground/tsconfig.json index 6ca41017b..8866f24d6 100644 --- a/playground/tsconfig.json +++ b/playground/tsconfig.json @@ -21,6 +21,7 @@ "include": ["src", "../examples"], "references": [ { "path": "./tsconfig.node.json" }, + { "path": "../packages/xl-ai/" }, { "path": "../packages/core/" }, { "path": "../packages/react/" }, { "path": "../packages/shadcn/" }, diff --git a/playground/vite.config.ts b/playground/vite.config.ts index 9a4362f0b..c7e9cca47 100644 --- a/playground/vite.config.ts +++ b/playground/vite.config.ts @@ -33,6 +33,10 @@ export default defineConfig((conf) => ({ : { // Comment out the lines below to load a built version of blocknote // or, keep as is to load live from sources with live reload working + "@blocknote/xl-ai": path.resolve( + __dirname, + "../packages/xl-ai/src/" + ), "@blocknote/core": path.resolve(__dirname, "../packages/core/src/"), "@blocknote/react": path.resolve( __dirname, diff --git a/tests/src/utils/customblocks/Alert.tsx b/tests/src/utils/customblocks/Alert.tsx index ad64f90c9..a8cf51c9d 100644 --- a/tests/src/utils/customblocks/Alert.tsx +++ b/tests/src/utils/customblocks/Alert.tsx @@ -128,6 +128,7 @@ export const Alert = createBlockSpec( ); export const insertAlert = (editor: BlockNoteEditor) => ({ + key: "alert", title: "Insert Alert", onItemClick: () => { const block: PartialBlock< diff --git a/vitest.workspace.js b/vitest.workspace.js new file mode 100644 index 000000000..97c66e944 --- /dev/null +++ b/vitest.workspace.js @@ -0,0 +1,77 @@ +import { defineWorkspace } from "vitest/config"; + +export default defineWorkspace([ + "./packages/xl-ai/vite.config.ts", + // "./examples/03-ui-components/link-toolbar-buttons/vite.config.ts", + // "./examples/03-ui-components/08-suggestion-menus-emoji-picker-columns/vite.config.ts", + // "./examples/03-ui-components/09-suggestion-menus-emoji-picker-component/vite.config.ts", + // "./examples/03-ui-components/01-ui-elements-remove/vite.config.ts", + // "./examples/03-ui-components/10-suggestion-menus-grid-mentions/vite.config.ts", + // "./examples/03-ui-components/12-static-formatting-toolbar/vite.config.ts", + // "./packages/xl-docx-exporter/vite.config.ts", + // "./examples/03-ui-components/03-formatting-toolbar-block-type-items/vite.config.ts", + // "./packages/react/vite.config.ts", + // "./playground/vite.config.ts", + // "./packages/server-util/vite.config.ts", + // "./packages/xl-ai-server/vite.config.ts", + // "./packages/shadcn/vite.config.ts", + // "./packages/mantine/vite.config.ts", + // "./packages/xl-pdf-exporter/vite.config.ts", + + // "./examples/03-ui-components/11-uppy-file-panel/vite.config.ts", + // "./packages/core/vite.config.ts", + // "./packages/core/vite.config.bundled.ts", + // "./examples/03-ui-components/02-formatting-toolbar-buttons/vite.config.ts", + // "./packages/ariakit/vite.config.ts", + // "./examples/03-ui-components/05-side-menu-drag-handle-items/vite.config.ts", + // "./examples/03-ui-components/14-experimental-mobile-formatting-toolbar/vite.config.ts", + // "./examples/03-ui-components/13-custom-ui/vite.config.ts", + // "./examples/03-ui-components/04-side-menu-buttons/vite.config.ts", + // "./examples/03-ui-components/06-suggestion-menus-slash-menu-items/vite.config.ts", + // "./examples/03-ui-components/07-suggestion-menus-slash-menu-component/vite.config.ts", + // "./packages/xl-multi-column/vite.config.ts", + // "./examples/06-custom-schema/04-pdf-file-block/vite.config.ts", + // "./examples/06-custom-schema/03-font-style/vite.config.ts", + // "./examples/06-custom-schema/react-custom-blocks/vite.config.ts", + // "./examples/06-custom-schema/react-custom-styles/vite.config.ts", + // "./examples/06-custom-schema/01-alert-block/vite.config.ts", + // "./examples/07-collaboration/02-liveblocks/vite.config.ts", + // "./examples/07-collaboration/03-y-sweet/vite.config.ts", + // "./examples/07-collaboration/01-partykit/vite.config.ts", + // "./examples/05-interoperability/06-converting-blocks-to-docx/vite.config.ts", + // "./examples/05-interoperability/02-converting-blocks-from-html/vite.config.ts", + // "./examples/05-interoperability/03-converting-blocks-to-md/vite.config.ts", + // "./examples/05-custom-schema/react-custom-styles/dist/vite.config.js", + // "./examples/05-interoperability/01-converting-blocks-to-html/vite.config.ts", + // "./examples/04-theming/01-theming-dom-attributes/vite.config.ts", + // "./examples/04-theming/02-changing-font/vite.config.ts", + // "./examples/04-theming/03-theming-css/vite.config.ts", + // "./examples/05-interoperability/04-converting-blocks-from-md/vite.config.ts", + // "./examples/04-theming/04-theming-css-variables/vite.config.ts", + // "./examples/05-interoperability/05-converting-blocks-to-pdf/vite.config.ts", + // "./examples/02-backend/01-file-uploading/vite.config.ts", + // "./examples/04-theming/05-theming-css-variables-code/vite.config.ts", + // "./examples/02-backend/03-s3/vite.config.ts", + // "./examples/02-backend/04-rendering-static-documents/vite.config.ts", + // "./examples/02-backend/02-saving-loading/vite.config.ts", + // "./examples/vanilla-js/react-vanilla-custom-styles/vite.config.ts", + // "./examples/vanilla-js/react-vanilla-custom-inline-content/vite.config.ts", + // "./examples/vanilla-js/react-vanilla-custom-blocks/vite.config.ts", + // "./examples/01-basic/05-removing-default-blocks/vite.config.ts", + // "./examples/01-basic/testing/vite.config.ts", + // "./examples/01-basic/09-shadcn/vite.config.ts", + // "./examples/06-custom-schema/react-custom-inline-content/vite.config.ts", + // "./examples/01-basic/11-custom-placeholder/vite.config.ts", + // "./examples/01-basic/06-block-manipulation/vite.config.ts", + // "./examples/01-basic/02-block-objects/vite.config.ts", + // "./examples/09-ai/01-minimal/vite.config.ts", + // "./examples/01-basic/01-minimal/vite.config.ts", + // "./examples/01-basic/08-ariakit/vite.config.ts", + // "./examples/01-basic/07-selection-blocks/vite.config.ts", + // "./examples/01-basic/03-multi-column/vite.config.ts", + // "./examples/01-basic/10-localization/vite.config.ts", + // "./examples/08-extensions/01-tiptap-arrow-conversion/vite.config.ts", + // "./examples/01-basic/12-multi-editor/vite.config.ts", + // "./examples/06-custom-schema/02-suggestion-menus-mentions/vite.config.ts", + // "./examples/01-basic/04-default-blocks/vite.config.ts" +]);