Skip to content

Commit

Permalink
Merge pull request #2219 from 1c7/patch-2
Browse files Browse the repository at this point in the history
Fix typo: Draft -> Quill
  • Loading branch information
benbro authored Aug 3, 2018
2 parents def8ddb + e631c30 commit 4a6bd6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/guides/comparison-with-other-rich-text-editors.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Although different between them, CKEditor and TinyMCE are compared together beca

Draft is often compared with Quill, but Draft, by its own description, is a "Rich Text Editor Framework for React." It provides the building blocks to create an editor, but is not one ready to use by itself. It is still worthwhile to compare Quill's internals with Draft however:

- Prior to Quill 1.0, Draft allowed more customization over its content and document model, but this is no longer the case. Quill now exposes its document model, called [Parchment](https://github.com/quilljs/parchment), and allows customization to an even deeper level than Draft at this point. [Cloning Medium with Parchment](/guides/cloning-medium-with-parchment/) is a great demonstration of what is possible with Parchment.
- Prior to Quill 1.0, Quill allowed more customization over its content and document model, but this is no longer the case. Quill now exposes its document model, called [Parchment](https://github.com/quilljs/parchment), and allows customization to an even deeper level than Draft at this point. [Cloning Medium with Parchment](/guides/cloning-medium-with-parchment/) is a great demonstration of what is possible with Parchment.

- Draft organizes nodes into two levels: block and inline. Parchment also has a block and inline layer, but inline nodes can be nested, allowing semantic output such as `<strong><em>Stronger</em></strong>` whereas the equivalent in Draft must use just one inline format node and utilizes inline styles:

Expand Down

0 comments on commit 4a6bd6a

Please sign in to comment.