nicoburns / blessed-rs

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

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

Closed mstange closed 2 years ago

mstange commented 2 years 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 2 years ago

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

Also, thank you for maintaining this resource.