在Pug(Jade)中发表评论?

时间:2013-12-10 11:14:35

标签: pug

如何在Pug模板引擎中阻止注释掉代码?

我知道如何评论一条线:

//-doesn't show

但我不想写完如下的完整html评论:

<!--
    no show
-->

2 个答案:

答案 0 :(得分:48)

//-
    Just indent the comment
    like normal elements

只需缩进你的评论,就像你做其他元素一样。

请注意,您的缩进正确,否则您的评论可能超出预期。

答案 1 :(得分:3)

官方文档

https://pugjs.org/language/comments.html#block-comments


缓冲的评论-评论将出现在呈现的HTML中

//
    Comments for your HTML readers.
    Use as much text as you want.


无缓冲注释-注释将不出现在呈现的HTML中

//-
    Comments for your template writers.
    Use as much text as you want.