tiptap/packages/extension-table-row/src/table-row.ts

35 lines
632 B
TypeScript

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