From b7e6314357c9aa00e54195c362b900a48d31e266 Mon Sep 17 00:00:00 2001 From: yahtnif Date: Thu, 15 Nov 2018 08:05:59 +0800 Subject: [PATCH] Fix: escape pipe char in table --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7eaaf04d..a0e6f62c 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ export default { | **Property** | **Type** | **Default** | **Description** | | --- | :---: | :---: | --- | -| `content` | `Object|String` | `null` | The editor state object used by Prosemirror. You can also pass HTML to the `content` slot. When used both, the `content` slot will be ignored. | +| `content` | `Object\|String` | `null` | The editor state object used by Prosemirror. You can also pass HTML to the `content` slot. When used both, the `content` slot will be ignored. | | `editable` | `Boolean` | `true` | When set to `false` the editor is read-only. | | `extensions` | `Array` | `[]` | A list of extensions used, by the editor. This can be `Nodes`, `Marks` or `Plugins`. | | `onInit` | `Function` | `undefined` | This will return an Object with the current `state` and `view` of Prosemirror on init. |