From 6291edca132ed8a91fb8d88517d8f531d7530607 Mon Sep 17 00:00:00 2001 From: Alex Good Date: Tue, 7 May 2024 17:37:47 +0100 Subject: [PATCH] Fix malformed sentence in rich_text_schema --- docs/under-the-hood/rich_text_schema.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/under-the-hood/rich_text_schema.md b/docs/under-the-hood/rich_text_schema.md index 8c83700..feafe80 100644 --- a/docs/under-the-hood/rich_text_schema.md +++ b/docs/under-the-hood/rich_text_schema.md @@ -98,6 +98,6 @@ The second child is a parent of the first, while the final block is a sibling of ### Embeds -Blocks with `isEmbed: true` are blocks which are not part of the flow of text and represent some non-textual content such as an image. Embed block markers should _not_ break up the flow of text. I.e. the text following an `isEmbed: true` block marker belongs to the block marker immediately +Blocks with `isEmbed: true` are blocks which are not part of the flow of text and represent some non-textual content such as an image. Embed block markers should _not_ break up the flow of text. I.e. the text following an `isEmbed: true` block marker belongs to the first non embed block preceding the embed block marker. If an application encounters an unknown embed block it should render the block using some sort of generic UI and round trip the block through the editor. The editor **SHOULD** allow the user to delete the embedded block marker in some manner.