add schema
This commit is contained in:
@@ -1,7 +1,30 @@
|
||||
import { Node } from '@tiptap/core'
|
||||
import { Node, mergeAttributes } from '@tiptap/core'
|
||||
|
||||
export interface TableRowOptions {
|
||||
HTMLAttributes: {
|
||||
[key: string]: any
|
||||
},
|
||||
}
|
||||
|
||||
export const TableRow = Node.create({
|
||||
name: 'tableRow',
|
||||
|
||||
defaultOptions: <TableRowOptions>{
|
||||
HTMLAttributes: {},
|
||||
},
|
||||
|
||||
// content: '(tableCell | tableHeader)*',
|
||||
content: 'tableCell*',
|
||||
|
||||
// tableRole: 'row',
|
||||
|
||||
parseHTML() {
|
||||
return [{ tag: 'tr' }]
|
||||
},
|
||||
|
||||
renderHTML({ HTMLAttributes }) {
|
||||
return ['tr', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]
|
||||
},
|
||||
})
|
||||
|
||||
declare module '@tiptap/core' {
|
||||
|
||||
Reference in New Issue
Block a user