tiptap/packages/extension-table-row/src/table-row.ts
2021-02-10 18:25:08 +01:00

30 lines
517 B
TypeScript

import { Node, mergeAttributes } from '@tiptap/core'
export interface TableRowOptions {
HTMLAttributes: {
[key: string]: any
},
}
export const TableRow = Node.create<TableRowOptions>({
name: 'tableRow',
defaultOptions: {
HTMLAttributes: {},
},
content: '(tableCell | tableHeader)*',
tableRole: 'row',
parseHTML() {
return [
{ tag: 'tr' },
]
},
renderHTML({ HTMLAttributes }) {
return ['tr', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]
},
})