Format Table in JIRA -
i trying pass string jira via api call , have string formatted have below. string ->
"this message table. \\\ ||a||b||c|| \\\ |1|2|3| \\\ |4|5|6|" expected output:
this message table | | b | c | | 1 | 2 | 3 | | 4 | 5 | 6 | pretty in url below line breakers in message aren't working. appreciated.
https://jira.atlassian.com/secure/wikirendererhelpaction.jspa?section=tables
try \n or \r\n in submitted string instead of \\. i've used \\ when want start new line in jira's output, think need line break on input here.
Comments
Post a Comment