rename all extensions (drop suffix)

This commit is contained in:
Philipp Kühn
2018-10-24 07:46:47 +02:00
parent 787892dd4c
commit 6b03315e59
41 changed files with 344 additions and 344 deletions

View File

@@ -7,9 +7,9 @@
<script>
import { Editor, EditorContent } from 'tiptap'
import {
BulletListNode,
ListItemNode,
PlaceholderExtension,
BulletList,
ListItem,
Placeholder,
} from 'tiptap-extensions'
export default {
@@ -20,10 +20,10 @@ export default {
return {
editor: new Editor({
extensions: [
new BulletListNode(),
new ListItemNode(),
new PlaceholderExtension({
emptyNodeClass: 'is-empty',
new BulletList(),
new ListItem(),
new Placeholder({
emptyClass: 'is-empty',
}),
],
}),