Files
outline/shared/editor/nodes/TableRow.ts
2022-01-19 18:43:15 -08:00

24 lines
399 B
TypeScript

import { NodeSpec } from "prosemirror-model";
import Node from "./Node";
export default class TableRow extends Node {
get name() {
return "tr";
}
get schema(): NodeSpec {
return {
content: "(th | td)*",
tableRole: "row",
parseDOM: [{ tag: "tr" }],
toDOM() {
return ["tr", 0];
},
};
}
parseMarkdown() {
return { block: "tr" };
}
}