文字以哈巴狗的A开头(Text begin with A in pug)
我在帕格有这样的代码。 但帕格重新在Html中使用了一个应答器,但我不想要。 这只是我的文字,以A开头。
ul li A list of the relevantI have a code like this in Pug. But Pug retranscribes this in Html with a balise but I don't want . It's just my text who begin with A.
ul li A list of the relevant最满意答案
只需将你的李的内容放在同一行
ul li A list of the relevant将呈现给
<ul> <li>A list of the relevant</li> </ul>Just put the content of your li in the same line
ul li A list of the relevantwill render to
<ul> <li>A list of the relevant</li> </ul>更多推荐
发布评论