『此文为转载,侵删,原文连接在末尾』
代码可以注释,不要的代码可以先 comment out 。 写 Markdown 呢?一篇文章写出来,总是有点草稿的,每次都忍痛割爱删掉,可能下次还要再敲一遍。 所以我一般都写到某个特定的 class 的 div 里,再用 CSS 把它们隐藏。
可惜这种方法既不优雅也不通用。
刚搜了一下:syntax - Comments in Markdown - Stack Overflow。
你可以用下面这些:
[comment]: <> (This is a comment, it will not be included)
[comment]: <> (in the output file unless you use it in)
[comment]: <> (a reference style link.)
[//]: <> (This is also a comment.)
[//]: # (This may be the most platform independent comment)
我决定以后用:
[^_^]: commentted-out contents should be shift to right by four spaces (vim :`>>`).
亲测可用( Pandoc 、 GitHub 、简书、作业部落)。
如果你想测试一下你的 Markdown 能不能这么用,这是一点测试的文字:
a[^_^]:bcd
显示的 a c d 应当间隔一样长。
第 1 条附言 · 137 天前
不是每种 Markdown 都能注释多行文字,测试代码:
a[^_^]: b cd
效果:
a
c
d
v2ex 似乎无力了……(在我自己用的 pandoc 下,只有 a 和 d 这两行。)
我还试了 Pandoc、GitHub、简书和作业部落对此的支持,放在了这里 多行代码注释-简书 - 简书。
此文为转载,存为己用:原文地址