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
| HTML |`.html`, `.htm`| Full DOM: headings, tables (incl. `colspan`/`rowspan`), lists, links, blockquotes, code blocks |
24
24
| CSV |`.csv`| Converted to Markdown tables |
25
25
| Jupyter Notebook |`.ipynb`| Markdown cells preserved, code cells in fenced blocks with language detection |
@@ -33,6 +33,8 @@ A pure Rust tool and library that converts various document formats into Markdow
33
33
34
34
Format is auto-detected from magic bytes and file extension. ZIP-based formats (DOCX/PPTX/XLSX) are distinguished by inspecting internal archive structure.
35
35
36
+
Large XLSX/XLS sheets render Markdown and plain text together in one row pass. Workbook parsing still uses memory proportional to the worksheet, but conversion does not build a second full cell matrix before producing output.
0 commit comments