11

我正在尝试输出一些类似的东西

<p>Hello, this is my text. <a href="#">Link here</a> This is more text</p>

但使用 HAML

这将如何完成?我一直在寻找示例,但没有一个示例显示如何做到这一点,而是在链接的任一侧使用纯文本?

尼尔

4

2 回答 2

29

如果你想做一个 1 班轮:

%p= "Hello, this is my text. #{link_to 'Link here', '#'} This is more text".html_safe

多行

%p 
  Hello, this is my text. 
  = link_to 'Link here', '#'
  This is more text
于 2012-06-06T23:35:47.027 回答
2

你应该能够做到这一点:

%p Hello, this is my text. <a href="#">Link here</a> This is more text

这也可以:

%p
  Hello, this is my test.
  %a{:href => '#'} Link here
  This is more text
于 2012-06-06T23:07:27.170 回答