0

SonarQube 有 webservice api 来添加评论 api/issues/add_comment。这个 webservice api 将参数作为 issue_id 和文本。我想添加 html 文本而不是纯文本。无论我通过什么文本,它都被视为普通文本。如何使用 webserive 添加评论 api 将 htmlText/markdown 作为评论传递 示例:

http://localhost:9000/api/issues/add_comment?text="<a href="http://www.link.com" target="_blank">visit this issue</a>" &issue=abcd-e0a3-49dc-9d46-45bf92748361

上面的 api 在声纳问题评论部分将所有内容都写为普通文本。

4

1 回答 1

2

这不可能以 HTML 格式发表评论,只是为了避免像 XSS 这样的安全问题。

“文本”参数接受 SonarQube Markdown 格式,您可以在https://sonarqube.com/markdown/help上查看在线文档

于 2016-07-10T14:31:14.157 回答