Adding Table Support

This commit is contained in:
Chrissi2812
2018-12-06 18:07:08 +01:00
parent 19202f25f0
commit c830768b3b
18 changed files with 473 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { Node } from 'tiptap'
import TableNodes from './TableNodes'
export default class TableRow extends Node {
get name() {
return 'table_row'
}
get schema() {
return TableNodes.table_row
}
}