如何评论TFS Markdown Widget中的一行?当我说"评论"我所指的是在保存视图时使一行文本对视图不可见。换句话说,当我打开窗口小部件进行编辑时,只能看到我(作为编辑器)的一行文本。
<!--- This does not work -->
[comment]: # This does not work
[comment]: <> This does not work
// This does not work
/* This does not work */
更新:这些DO工作:
[comment]: # (This does work)
[//]: # (This does work)
关键,我没有意识到这一点,是评论本身必须在内部。而我进一步发现,只需要开放的parens!
答案 0 :(得分:1)
<强>更新强>
[comment]: #
和[comment]: <>
都应该有效。它与[]
中的内容无关。因此,[comment]
或[\\]
之间没有区别,甚至[123]
。
但是,建议您在评论前使用#
代替<>
,同时添加空行。
与平台无关的语法最为
(empty line) [comment]: # (This actually is the most platform independent comment)
更多详细信息,您可以参考 Nick Volynkin Comments in Markdown的答案。
此外,这里还有一些基本的Markdown语法指导。有关更多信息,请参阅Daring Fireball。
以下是VSTS和TFS中的 Markdown guidance 。