2011-09-27 84 views
13

如何在slim模板語言中編寫以下內容?如何使用slim模板語言在段落中間放置超鏈接?

<p>Join the <a href="">Google group</a> and let us know what you think, or what other features you’d like to see.</p> 

我試過如下:

p 
    ' Join the 
    a href="" Google Group 
    ' and let us know what you think, or what other features you’d like to see 

但是由於單詞「集團」和「和」沒有他們之間的空白不起作用。

回答

21

顯然,你可以報價後添加額外的空格:

p 
    ' Join the 
    a href="" Google Group 
    ' and let us know what you think, or what other features you’d like to see 
+1

這是正確的。報價後的空格成爲您的左邊距。您可以隨意添加儘可能多的空間,只要您喜歡到行的開頭。 – stonean

+6

這個語法讓我想嘔吐一點點。 – DickieBoy

6

你可以做

p This is a paragraph with a link #{link_to 'embedded', 'http://google.com'}. 

Rails的標籤助手只是方法,這樣你就可以應用邏輯裏面的意見等方法。

相關問題