jugglerchris / rust-html2text

Rust library to render HTML as text.
MIT License
152 stars 27 forks source link

Fix issue 155: table rows with styling going missing. #156

Closed jugglerchris closed 4 months ago

jugglerchris commented 4 months ago

There was a missing case in wrap_render_nodes(); table row nodes need to wrap the nested contents so that the TableRow nodes are still direct children of the TableBody.

Fixes #155