Reads almost anything / 几乎什么都能读
The lightweight formats convert instantly in-browser. Heavier ones (Office, PDF) load their parser on first use — or run blazing-fast from the command line.
Why people use it / 为什么用它
👀 Read anything, anywhere / 随处阅读
Open obscure or office formats in any browser without the app that made them. 不装原始软件,也能在浏览器里打开常见文件。
🔒 Private by design / 隐私优先
Runs locally via WebAssembly — your documents never touch a server. 转换在本机浏览器完成,文件不会上传。
🧩 Merge & diff / 合并与对比
Combine many documents into one page, or compare two revisions side by side. 多文件合成一页,也可以对比两个版本。
⚙️ Library + CLI too / 也能写脚本
pip install everythingtohtml for automation, local workflows, and scripts. 适合批量转换和自动化处理。
Same engine, on the command line / 同一个引擎,也能命令行使用
# install pip install "everythingtohtml[all]" # convert, merge, or diff everythingtohtml report.docx -o report.html everythingtohtml a.docx b.docx c.pdf -o handbook.html everythingtohtml spec-old.docx spec-new.docx --diff -o changes.html