Deletes a table block.
bool deleteTable(String tableId) { if (document.blockById(tableId) is! MarkdownTableBlock) return false; documentEditor.deleteTable(tableId); return true; }