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