Actions
Feature #31231
closedBetter handling of HTML tables when creating an issue from an email
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Description
In the email receiving feature, each cell in HTML tables is converted to a single line with blank lines before and after. As a result, a table is converted to a long sparse text and the appearance is not good.
I think we can improve the appearance and readability by grouping the converted text by row.
[Input]
<table> <tr> <th>Name (en)</th> <th>Name (fr)</th> <th>Code</th> </tr> <tr> <td>red</td> <td>rouge</td> <td>#ff0000</td> </tr> <tr> <td>green</td> <td>vert</td> <td>#00ff00</td> </tr> <tr> <td>blue</td> <td>bleu</td> <td>#0000ff</td> </tr> </table>
[Output (before)]
Name (en) Name (fr) Code red rouge #ff0000 green vert #00ff00 blue bleu #0000ff
[Output (after)]
*Name (en)* *Name (fr)* *Code* red rouge #ff0000 green vert #00ff00 blue bleu #0000ff
Files
Related issues
Actions