You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 21, 2019. It is now read-only.
const tablePlugin = PluginEditTable({
typeTable: ['table'],
typeRow: ['table_row'],
//<th> and <td> elements
typeCell: ['table_cell', 'table_heading']
});
adding this parameter object for PluginEditTable like above breaks the functionality of the isSelectionInTable function, with this breaking most of the plugin functionality as it can't recognize the table. However removing that object parameter from PluginEditTable fixes it:
const tablePlugin = PluginEditTable();
This problem is encountered when I want to deserialize table with multiple cell types like and ...
so I need to define multiple typeCell types.
Anyone has ideas how to fix this?
The text was updated successfully, but these errors were encountered:
I have plugin set up like this:
adding this parameter object for PluginEditTable like above breaks the functionality of the isSelectionInTable function, with this breaking most of the plugin functionality as it can't recognize the table. However removing that object parameter from PluginEditTable fixes it:
This problem is encountered when I want to deserialize table with multiple cell types like and ...
so I need to define multiple typeCell types.
Anyone has ideas how to fix this?
The text was updated successfully, but these errors were encountered: