nicoburns / blessed-rs

A community guide to the Rust ecosystem
https://blessed.rs
1.18k stars 66 forks source link

rowspan="2" is wrong, causes missing borders in Firefox #4

Closed mstange closed 1 year ago

mstange commented 1 year ago

I was noticing missing table borders in Firefox (bugzilla bug) and then found out that the tables are actually malformed: The rowspans are incorrect.

Example:

Screenshot 2022-11-04 at 1 41 20 PM

The two "rows" are actually just two <p> elements in the same row, so no rowspan is needed.

mstange commented 1 year ago

Thanks! I can confirm the borders are present in Firefox now.

Also, thank you for maintaining this resource.