我正在尝试通过API调用将字符串传递给JIRA,并将字符串格式化为如下所示。字符串 - >
"This is a message with a table. \\\ ||A||B||C|| \\\ |1|2|3| \\\ |4|5|6|"
预期产出:
This is a message with a table
| A | B | C |
| 1 | 2 | 3 |
| 4 | 5 | 6 |
下面的网址中的内容很多,但邮件中的断路器无法正常工作。任何帮助表示赞赏。
https://jira.atlassian.com/secure/WikiRendererHelpAction.jspa?section=tables
答案 0 :(得分:1)
在提交的字符串中尝试\n
甚至\r\n
,而不是\\
。当我想在JIRA的输出中开始一个新行时,我已经使用了\\
,但我认为你需要输入上的换行符他们在这里。