我试图输出一些东西
<p>Hello,this is my text. <a href="#">Link here</a> This is more text</p>
但是使用HAML
这怎么办?我一直在寻找示例,但没有一个显示如何做到但链接的任何一侧都有纯文本?
尼尔
解决方法
如果你想做一个班轮:
%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