diff --git a/src/markitdown/_markitdown.py b/src/markitdown/_markitdown.py index 848656b..4b1fc97 100644 --- a/src/markitdown/_markitdown.py +++ b/src/markitdown/_markitdown.py @@ -731,7 +731,6 @@ class ExcelConverter(HtmlConverter): md_content = "" for s in workbook.sheet_names: sheet = workbook.get_sheet_by_name(s) - # TODO: Add argument to allow filtering empty row / columns tabular_data = sheet.to_python(skip_empty_area=False) md_content += f"## {s}\n" html_content = tabulate(tabular_data, tablefmt="html")