summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/content_editor/extensions/table_cell.js
blob: 6c25b8674668c48c26397d9e5cbba7afdebabdbd (plain)
1
2
3
4
5
6
7
8
9
import { TableCell } from '@tiptap/extension-table-cell';

export const tiptapExtension = TableCell.extend({
  content: 'inline*',
});

export function serializer(state, node) {
  state.renderInline(node);
}