在我的 Rails 模板中,我想使用 HAML 来完成这种效果的最终 HTML:
I will first <a href="http://example.com">link somewhere</a>, then render this half of the sentence if a condition is met
这个模板非常接近:
I will first
= link_to 'link somewhere', 'http://example.com'
- if @condition
, then render this half of the sentence if a condition is met
但是,您可能会注意到,这会在链接和逗号之间产生一个空格。有什么实际的方法可以避免这种空格吗?我知道有一些语法可以去除标签周围的空白,但是这种语法可以仅仅应用于文本吗?我真的不喜欢用额外的标记来完成这个任务。