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
ただし、これによりリンクとコンマの間にスペースが生じることに注意してください。この空白を回避する実用的な方法はありますか?タグの周りの空白を削除する構文があることは知っていますが、これと同じ構文をテキストだけに適用できますか?これを達成するための追加のマークアップのソリューションは本当に好きではありません。