html-to-xlsx
html-to-xlsx copied to clipboard
Cells with line breaks are displayed incorrectly
After converting a cell with multiple rows, initially the value in the cell is displayed as a single row. Tried the br pre tags and a few css style approaches
hi! for line breaks the cell needs to have text wrap enabled, you can do that by adding overflow: scroll
style to the cell
<td style="overflow: scroll">Hello<br />world</td>