如何在Pug模板引擎中阻止注释掉代码?
我知道如何评论一条线:
//-doesn't show
但我不想写完如下的完整html评论:
<!--
no show
-->
答案 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.