我的目的是改进Visual C#解决方案的代码文档。因此,我希望将基于xml的C#文档上载到。
选项1: DO2
但我正在寻找更多的解决方案,以将代码docu构建为html文件,并将其发布到VSTS的项目wiki中。
选项2:首选但未找到
是否有VSTS实现选项2的包?有人能描述一下实现方案2的方法吗?
发布于 2018-01-17 02:42:17
VSTS项目wiki不支持html文件,但它支持一些HTML标记,因此您可以使用HTML标记创建wiki页面。
例如:
<p>This text needs to <del>strikethrough</del> <ins>since it is redundant</ins>!</p>
<p><tt>This text is teletype text.</tt></p>
<font color="blue">Colored text</font>
<center>This text will be center-aligned.</center>
<p>This text contains <sup>superscript</sup> text.</p>
<p>This text contains <sub>subscript</sub> text.</p>
<p>The project status is <span style="color:green;font-weight:bold">GREEN</span> even though the bug count / developer may be in <span style="color:red;font-weight:bold">red.</span> - Capability of span
<p><small>Disclaimer: Wiki also supports showing small text</small></p>
<p><big>Bigger text</big></p>
Markdown文件、小部件、wiki和拉请求注释的语法指南
因为每个团队项目wiki都使用一个git存储库后端,所以您可以脱机更新它(Clone > modify/create > Commit > Push)。
https://stackoverflow.com/questions/48276779
复制相似问题