What is a concise way to create inline elements in Jade

I like to put all my inline elements in a single line.

<ul>
  <li><a>click<span>here</span><strong>!</strong></a></li>

Wondering if there's a better way to create inline elements in Jade than this:

ul
  li 
    a(href="#") click 
      span here
      strong !

This get's a little closer but I'm not sure how to add the span and strong tags without breaking the lines.

ul
  li: a(href='#') click
    span ...

This obviously isn't a super big problem but it's a little annoying that I can't put inline elements inline. Thanks for the help


Since version 1.0, jade supports inline tags:

#[tag(attribute='value') inner stuff]

In your case that would be:

ul
  li #[a(href="#") click  #[span here #[strong !]]]

Ran into this today myself. Found a way to do this in jade using the pipe. Here is my example wrapping a strong tag inside ap element.

p.some-class
    strong This Renders Strong                          
    |This renders normal

I also struggled with this a while back; the only answer I found is to just use HTML.

ul
  li: a(href='#') click<span>here</span><strong>!</strong>
链接地址: http://www.djcxy.com/p/88898.html

上一篇: 用于Node.js模板的Jade和EJS有哪些优缺点?

下一篇: 在Jade中创建内联元素的简明方法是什么?