2014-02-24 62 views
0

我想這HTML格式轉換成玉:我應該如何格式化這個Jade佈局?

<div class="textItem"> 
    <div class="avatar"> 
     <img src="http://wowthemes.net/demo/biscaya/img/demo/avatar.jpg" alt="avatar"> 
    </div> 
    "How often have I said to you that when you have eliminated the impossible, whatever remains, however improbable, must be the truth?<span style="font-family:arial;">"</span><br/><b>Ralph G. Flowers </b> 
</div> 

我已經試過這種方法,但它試圖打開文本到另一個標籤:

.textItem 
    .avatar 
     img(src="http://wowthemes.net/demo/biscaya/img/demo/avatar.jpg" alt="avatar") 
    "How often have I said to you that when you have eliminated the impossible, whatever remains, however improbable, must be the truth?<span style="font-family:arial;">"</span><br/><b>Ralph G. Flowers </b> 

任何想法?

回答

1
doctype html 
html(lang="en") 
    head 
    body 
    .textItem 
    .avatar 
     img(src="http://wowthemes.net/demo/biscaya/img/demo/avatar.jpg" alt="avatar") 
     | How often have I said to you that when you have eliminated the impossible, whatever remains, however improbable, must be the truth? 
     span(style="font-family:arial") 
     br 
     | Ralph G. Flowers 
     br 

這應該給你我想你想要的。

+0

釘住它。謝謝! – drewwyatt