Reputation: 12387
Creating a new issue in Jira, I try to copy and paste a table from a previous issue. The table appears correctly formatted in the previous issue, and when I click into edit mode, the formatting is as follows
||heading 1||heading 2||heading 3|| |col A1|col A2|col A3| |col B1|col B2|col B3| https://jira.atlassian.com/secure/WikiRendererHelpAction.jspa?section=tables
I copy and past this exactly into the new issue, but it doesnt format or look like a table, remains in its unformatted state just like above.
Upvotes: 5
Views: 11287
Reputation: 2869
Just to be on the safe side, I always wrap table cell contents in a blank space like so:
|| heading 1 || heading 2 || heading 3 ||
| col A1 | col A2 | col A3 |
| col B1 | col B2 | col B3 |
This seems to work better than without the extra spaces.
Also, @mdoar is correct in suggesting that you look at the Description and Comments field settings for Renderer.
Upvotes: 6