From 67a40cae49c6429bc6936417df3b7416ba3a058d Mon Sep 17 00:00:00 2001 From: Hans Pagel Date: Wed, 12 Aug 2020 12:02:07 +0200 Subject: [PATCH] fix typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 51d54997..1469a2fe 100644 --- a/README.md +++ b/README.md @@ -80,8 +80,8 @@ export default { | `extensions` | `Array` | `[]` | A list of extensions used, by the editor. This can be `Nodes`, `Marks` or `Plugins`. | | `useBuiltInExtensions` | `Boolean` | `true` | By default tiptap adds a `Doc`, `Paragraph` and `Text` node to the Prosemirror schema. | | `dropCursor` | `Object` | `{}` | Config for `prosemirror-dropcursor`. | -| `enableDropCursor` | `Boolean` | `true` | Option to enable / disable the dropCursor plugin`. | -| `enableGapCursor` | `Boolean` | `true` | Option to enable / disable the gapCursor plugin`. | +| `enableDropCursor` | `Boolean` | `true` | Option to enable / disable the dropCursor plugin. | +| `enableGapCursor` | `Boolean` | `true` | Option to enable / disable the gapCursor plugin. | | `parseOptions` | `Object` | `{}` | A list of [Prosemirror parseOptions](https://prosemirror.net/docs/ref/#model.ParseOptions). | | `onInit` | `Function` | `undefined` | This will return an Object with the current `state` and `view` of Prosemirror on init. | | `onFocus` | `Function` | `undefined` | This will return an Object with the `event` and current `state` and `view` of Prosemirror on focus. |