]> BookStack Code Mirror - bookstack/blobdiff - resources/js/editor/markdown-serializer.js
Started on table editing/resizing
[bookstack] / resources / js / editor / markdown-serializer.js
index 8e7da7d91855abefe6db3307fa62e5b58d9f65e7..ad7783243018484fc15f2cec59ed9add1864ecaa 100644 (file)
@@ -9,6 +9,10 @@ nodes.callout = function (state, node) {
     writeNodeAsHtml(state, node);
 };
 
+nodes.table = function (state, node) {
+    writeNodeAsHtml(state, node);
+};
+
 function isPlainURL(link, parent, index, side) {
     if (link.attrs.title || !/^\w+:/.test(link.attrs.href)) {
         return false