Jade - 在一行中嵌套的html标记

时间:2015-03-24 12:32:05

标签: pug

根据Jade的文档,我可以写:

div
    ul
         li.active one
         li two
         li three

我正在考虑这样的事情:

div - ul
    li.active one
    li two
    li three

如何将多个html标签放在一行?我没有在文档中找到方法。

提前致谢。 :)

1 个答案:

答案 0 :(得分:15)

div: ul
    li.active one
    li two
    li three

https://pugjs.org/language/tags.html

enter image description here