From 153a665a349e3652e1b8d303f9080d2210eded64 Mon Sep 17 00:00:00 2001 From: Graham Leach-Krouse Date: Wed, 18 May 2022 15:17:23 -0500 Subject: [PATCH] Enquote JSON strings --- proposals/3592-pdf-markup.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/proposals/3592-pdf-markup.md b/proposals/3592-pdf-markup.md index 29470f7af..0c7cb9561 100644 --- a/proposals/3592-pdf-markup.md +++ b/proposals/3592-pdf-markup.md @@ -49,11 +49,11 @@ the front matter of a book). Text annotations will be represented within an `m.markup.location` as follows: ``` -m.markup.location: { - m.markup.pdf.text: { - rect: {left: ..., right: ..., top: ..., bottom: ...} - contents: ... - page_index: ... +"m.markup.location": { + "m.markup.pdf.text": { + "rect": {"left": ..., "right": ..., "top": ..., "bottom": ...} + "contents": ... + "page_index": ... } .. } @@ -73,12 +73,12 @@ Highlight Annotations will be represented within an `m.markup.location` as follows: ``` -m.markup.location: { - m.markup.pdf.highlight: { - rect: {left: ..., right: ..., top: ..., bottom: ...} - contents: ..., - quad_points: [...], - page_index: ... +"m.markup.location": { + "m.markup.pdf.highlight": { + "rect": {"left": ..., "right": ..., "top": ..., "bottom": ...} + "contents": ..., + "quad_points": [...], + "page_index": ... } .. }