Actions
Defect #40515
closedDisplaying issue descriptions in the issues list ignores CommonMark table alignment
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Affected version:
Description
When configuring the "Text formatting" setting to "CommonMark Markdown", the rendered tables within issue descriptions default to a centered alignment regardless of the alignment specified in the markup (left, center, or right).
This issue does not occur when the "Text formatting" setting is set to the deprecated Redcarpet-based Markdown.
The markup of the issue description:
| name | value | |:-----|------:| | a | 1 | | bb | 22 | | ccc | 333 |
Issues list with description (Markdown):
Issues list with description (CommonMark):
Files
Updated by Takenori TAKAKI 8 months ago
- File 40515.patch 40515.patch added
I made a patch to fix this issue by adding a css that sets text-align according to the align attribute (left or right) set in th/td tags.
Actions