格式化VSTS Repo使用带有rest API的字段

时间:2016-10-12 11:20:20

标签: tfs azure-devops tfs-workitem

是否可以使用像Bold这样的html格式来格式化VSTS“Repo Steps”部分,并使用VSTS Rest API包含Paragraph?

1 个答案:

答案 0 :(得分:2)

您可以使用更新字段REST API更新Repo Step值,例如 :bold,:paragraph。

简单请求:

https://XXX.visualstudio.com/_apis/wit/workitems/110?api-version=1.0 

数据:

[
  {
    "op": "replace",
    "path": "/fields/Microsoft.VSTS.TCM.ReproSteps",
    "value": "<div>He<b>llo</b></div><div>wo<i>r<b>d</b>and</i></div><div>te<u><b><i>st</i></b></u></div>"
  }
]

结果: 他的 LLO

窝的 d

TE ST