Merge branch 'main' of github.com:ueberdosis/tiptap-next into main

This commit is contained in:
Hans Pagel
2020-11-05 16:02:21 +01:00
6 changed files with 15 additions and 11 deletions

View File

@@ -53,7 +53,7 @@ export default {
</script>
<style lang="scss">
ul[data-type="task_list"] {
ul[data-type="taskList"] {
list-style: none;
padding: 0;

View File

@@ -27,10 +27,10 @@ import Text from '@tiptap/extension-text'
new Editor({
extensions: [
Document(),
Paragraph(),
Text(),
// all your other extensions
Document(),
Paragraph(),
Text(),
// all your other extensions
]
})
```