docs: add content

This commit is contained in:
Hans Pagel
2020-11-17 17:10:48 +01:00
parent 3d3dcdaf42
commit 4f36f30c75
5 changed files with 212 additions and 59 deletions

View File

@@ -1,25 +0,0 @@
# Configuration
## toc
## Introduction
tiptap is all about customization. There are a ton of options to configure the behavior and functionality of the editor. Most of those settings can be set before creating the Editor. Give tiptap a JSON with all the settings you would like to overwrite.
## Overwrite the default settings
See an example with `autofocus: true` here:
```js
import { Editor } from '@tiptap/core'
import { defaultExtensions } from '@tiptap/starter-kit'
new Editor({
element: document.querySelector('.element'),
extensions: defaultExtensions(),
content: '<p>Hey there!</p>',
autofocus: true,
})
```
This will set the focus to tiptap after the editor is initialized. Of course, there are way more options available.
Check out the API documentation to see [all available options](/api/editor/).