Open sundermann opened 9 years ago
Thanks for reporting this one.
In general it would be an improvement if the export classes can also use child tags from
<td>
so that one could write it's own export which parses some more tags inside of<td>
and displays the content more beautifully.
Could you please post a use-case?
Thanks!
For example the PDF Export could render <p>
tags as block elements. Another idea is to render the bullets when exporting a HTML list.
Right now the only way to do some kind of structuring content is to use custom rendering by adding \n or \t into the exported cell.
A th:block element inside the table will break filter based exports. For example:
will not render any rows in the resulting export. This seems to be an issue with TbodyElProcessor since it does check for
<tr>
elements in<tbody>
only. In case of th:block the th:block itself should be skipped. In general it would be an improvement if the export classes can also use child tags from<td>
so that one could write it's own export which parses some more tags inside of<td>
and displays the content more beautifully.