diff options
author | Aaron Parecki <aaron@parecki.com> | 2023-10-07 22:39:45 +0000 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2023-10-07 22:39:45 +0000 |
commit | 658e0d9ecbb2e4014743fd6a2390270e7b8ca7ac (patch) | |
tree | 6dae9246a8d3449f88a25e7aab0662c8ef3d54f7 /views | |
parent | 4392fdde95ebe19e33d96644dba0175adfb3c9a7 (diff) | |
parent | 68c7abef7faed4104a0bec7d625b380b9108f7dd (diff) |
Merge branch 'main' of github.com:aaronpk/Quill into main
Diffstat (limited to 'views')
-rw-r--r-- | views/docs/editor.php | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/views/docs/editor.php b/views/docs/editor.php index 9cac51a..30606da 100644 --- a/views/docs/editor.php +++ b/views/docs/editor.php @@ -43,12 +43,21 @@ Authorization: Bearer XXXXXXXXXXX { "type": "h-entry", "properties": { - "name": ["Post Title"], + "name": [ + "Post Title" + ], "content": [ - "html": "<p>The HTML contents of your post from the editor</p>" + { + "html": "<p>The HTML contents of your post from the editor</p>" + } + ], + "mp-slug": [ + "slug" ], - "mp-slug": ["slug"], - "category": ["foo","bar"] + "category": [ + "foo", + "bar" + ] } } </pre> |