好的,
我正在使用haml创建一个模板,但遇到了一个错误。
我通常在haml中使用"<",在预处理后将所有文本放在一行。
即:
%p
%img{:src => "link to image"}<
Some text
但是当我使用时
image_tag "image name", :alt => "some text"
Some text
如何将"<"添加到末尾,以便图像下方的文本可以在同一行上渲染?
如果是我,我会考虑在末尾有"Some text"
的字符串中插入image_tag
:
= "#{image_tag('image_name', :alt => 'some text')} Some text"