Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/nodes/TableCell.js')
-rw-r--r--src/nodes/TableCell.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/nodes/TableCell.js b/src/nodes/TableCell.js
new file mode 100644
index 000000000..606f2b428
--- /dev/null
+++ b/src/nodes/TableCell.js
@@ -0,0 +1,8 @@
+import { TableCell } from '@tiptap/extension-table-cell'
+
+export default TableCell.extend({
+ content: 'inline*',
+ addAttributes() {
+ return {}
+ },
+})