我有一个从 Microsoft Forms 检索一些附件并将工作项添加到 Azure Devops 的工作流
我在一个步骤中,我必须添加一个包含两列(名称和网址)的表,例如:
在Url
列中,我想添加超链接而不是文本,例如:
<a href='....'>Click here</a>
我尝试添加concat
如下表达式:
concat("<a href='", ..., "'>", "Click here", "</a>)
^ here I don't know how to pass the link argument
如何在表达式link
中传递参数concat
?
或者如果想在列中添加超链接,应该使用什么其他方法?