在我的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
但是,您可能会注意到,这会在链接和逗号之间产生一个空格。有什么实际的方法可以避免这种空白?我知道可以删除标记周围的空格的语法,但是可以将这种语法仅应用于文本吗?我真的不喜欢额外标记的解决方案来完成此任务。