格式化 VSTS Repo Step with field with rest API

Format VSTS Repo Step with field with rest API

是否可以使用 VSTS Rest API 将 VSTS "Repo Steps" 部分格式化为 html 格式,如粗体并包括段落?

您可以使用更新字段 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

wordand

test