我通过使用以下内容在主体中传递markdown来使用其API生成GitHub注释
{
"body": "Component \n | --------\n ![alt text](https://static.wooicon.com/files/a/rr/ow/cd50f73a0f0a769fcb10138d4f8eb98b/arrow-down.png)",
"commit_id": "8574ac234999ffb5bbf93f66fac30a84342fe396",
"path": "README.md",
"position": 4
}
我现在正在寻找使用this页面中的表情符号来代替上面的图片URL。
我确实尝试仅按如下方式传递表情符号
"body": "Component \n | --------\n ![alt text](:small_red_triangle_down:)",
但是,这似乎没有用,也没有渲染图像。请告知我如何在GitHub markdown中使用表情符号。
答案 0 :(得分:0)
考虑到GitHub API确实在pull request和issues中提到了表情符号,但是...在application/vnd.github.symmetra-preview+json
中将Accept
用作自定义media type application/vnd.github.machine-man-preview+json
标头。
您可以尝试使用相同的媒体类型。但是,它在beta last February (2018)中。
OP Kevin Chau添加in the comments:
通过连接到markdown并使用标头
,我就可以在代码中使用MyVector