Files
moli/moli-html2md/tests/fixtures/headerless-data-table.html
ldm0 0e521aa8a3 feat(markdown): render simple HTML tables as GFM
Synthesize empty headings for simple headerless tables and keep complex tables readable as blocks. Use owned output fragments to avoid repeated copying through nested fallback tables.

Cover escaping, alignment, layouts, CLI output and linear copy growth. Validated with cargo fmt, workspace Clippy, and 18,114 passing nextest tests (13 skipped).
2026-09-17 01:16:06 +08:00

8 lines
178 B
HTML

<!doctype html>
<html><head><meta charset="utf-8"></head><body>
<table>
<tr><td>苹果</td><td>5 元</td></tr>
<tr><td>香蕉</td><td>3 元</td></tr>
</table>
</body></html>