TableCell extension
Don’t try to use tables without table cells. It won’t be fun.
Install
npm install @tiptap/extension-table
This extension requires the Table
extension to be installed.
This extension is installed by default with the TableKit
extension, so you don’t need to install it separately.
import { Editor } from '@tiptap/core'
import { TableKit } from '@tiptap/extension-table'
new Editor({
extensions: [TableKit],
})
Source code
packages/extension-table-cell/
Minimal Install
import { Editor } from '@tiptap/core'
import { TableCell } from '@tiptap/extension-table/cell'
new Editor({
extensions: [TableCell],
})