add schema
This commit is contained in:
@@ -1,7 +1,33 @@
|
||||
import { Node } from '@tiptap/core'
|
||||
import { Node, mergeAttributes } from '@tiptap/core'
|
||||
|
||||
export interface TableCellOptions {
|
||||
HTMLAttributes: {
|
||||
[key: string]: any
|
||||
},
|
||||
}
|
||||
export const TableCell = Node.create({
|
||||
name: 'tableCell',
|
||||
|
||||
defaultOptions: <TableCellOptions>{
|
||||
HTMLAttributes: {},
|
||||
},
|
||||
|
||||
// content: options.cellContent,
|
||||
content: 'block+',
|
||||
// attrs: cellAttrs,
|
||||
// tableRole: 'cell',
|
||||
isolating: true,
|
||||
|
||||
parseHTML() {
|
||||
// return [{ tag: 'td', getAttrs: dom => getCellAttrs(dom, extraAttrs) }]
|
||||
return [{ tag: 'td' }]
|
||||
},
|
||||
|
||||
renderHTML({ HTMLAttributes }) {
|
||||
// toDOM(node) { return ["td", setCellAttrs(node, extraAttrs), 0] }
|
||||
return ['td', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]
|
||||
},
|
||||
|
||||
})
|
||||
|
||||
declare module '@tiptap/core' {
|
||||
|
||||
Reference in New Issue
Block a user