From ff4ae62e3ed82e2de92024944c866bf7be1ae24a Mon Sep 17 00:00:00 2001 From: Paul-Cornell Date: Mon, 3 Nov 2025 10:58:35 -0800 Subject: [PATCH] Update generative-ocr.mdx Change some commas to colons in the JSON examples to fix bad syntax. --- ui/enriching/generative-ocr.mdx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/ui/enriching/generative-ocr.mdx b/ui/enriching/generative-ocr.mdx index 93bbd496..11a5da92 100644 --- a/ui/enriching/generative-ocr.mdx +++ b/ui/enriching/generative-ocr.mdx @@ -16,9 +16,9 @@ Before (vertical watermarked text, represented incorrectly): ```json { - "...", "...", + "...": "...", "text": "3 2 0 2 t c O 9 2 ] V C . s c [ 2 v 9 0 8 6 1 . 0 1 3 2 : v i X r", - "...", "..." + "...": "..." } ``` @@ -26,9 +26,9 @@ After (vertical watermarked text, now represented correctly from the original co ```json { - "...", "...", + "...": "...", "text": "arXiv:2310.16809v2 [cs.CV] 29 Oct 2023", - "...", "..." + "...": "..." } ``` @@ -40,9 +40,9 @@ Before (hyperlink, represented incorrectly): ```json { - "...", "...", + "...": "...", "text": "con/Yuliang-Liu/MultinodalOCR|", - "...", "..." + "...": "..." } ``` @@ -50,9 +50,9 @@ After (hyperlink, now represented correctly from the original content): ```json { - "...", "...", + "...": "...", "text": "https://github.com/Yuliang-Liu/MultimodalOCR", - "...", "..." + "...": "..." } ``` @@ -64,9 +64,9 @@ Before (Chinese characters, represented incorrectly): ```json { - "...", "...", + "...": "...", "text": "GT SHE GPT4-V: EHES", - "...", "..." + "...": "..." } ``` @@ -74,9 +74,9 @@ After (Chinese characters, now represented correctly from the original content, ```json { - "...", "...", + "...": "...", "text": "GT : \u91d1\u724c\u70e7\u814a GPT4-V: \u6587\u9759\u5019\u9e1f", - "...", "..." + "...": "..." } ```