move some pages

This commit is contained in:
Philipp Kühn
2020-04-18 20:39:48 +02:00
parent fe1a647028
commit 53d20a454a
10 changed files with 40 additions and 11 deletions

View File

@@ -0,0 +1,22 @@
# Installation
```bash
# Using npm
npm install @tiptap/core
# Using Yarn
yarn add @tiptap/core
```
## Quick Start
```js
import { Editor } from '@tiptap/core'
import extensions from '@tiptap/starter-kit'
new Editor({
element: document.getElementsByClassName('element'),
extensions: extensions(),
content: '<p>Hey there.</p>',
})
```