UNPKG

substance

Version:

Substance is a JavaScript library for web-based content editing. It provides building blocks for realizing custom text editors and web-based publishing systems.

11 lines (8 loc) 232 B
import { TextNode } from '../../model' class TableCell extends TextNode {} TableCell.schema = { type: 'table-cell', rowspan: { type: 'number', default: 0 }, colspan: { type: 'number', default: 0 } } export default TableCell