0

每当我尝试使用 Prepros 编译 Jade 时,都会收到“意外标识符”错误。
这是我的代码:

doctype 5
html(lang="en")
    head
        title Hello World in Jade!
        style(href="style.css" rel="stylesheet")
4

2 回答 2

4

属性在jade中需要用逗号分隔。

style(href="style.css", rel="stylesheet")
于 2013-06-05T17:18:15.390 回答
0

为了跟进大卫的回答,您在示例中的代码在 Scalate(不带逗号)上实现时是正确的。正如他所说,在使用 Jade 的标准 (JS) 实现时,您可以用逗号分隔属性。

于 2013-07-05T20:35:26.083 回答