评论Jade / pug

时间:2011-12-16 22:07:58

标签: node.js pug

我尝试在Jade / pug中发表评论,但评论在HTML中呈现为文本。这是我的代码:

doctype html

html(lang='en')
    body
        / This should be a comment

我做什么蠢事?

2 个答案:

答案 0 :(得分:158)

正如comment documentation中所述,您可以使用//转换为HTML评论,也可以使用//-在输出的HTML代码中不可见。

答案 1 :(得分:2)

在玉器中,我们使用 // - 进行评论。 如果您正在尝试对块进行注释,请确保它应缩进,如下例所示 -

doctype html

html(lang='en')
    body
        //- 
            This should be a comment
            Indent correctly for block content