如何使 haml 文件中的句子加粗?

How to make a sentence inside a haml file bold?

这是我的 haml 文件中的代码:

= render :partial => _paragraph,
         :locals => {:content =>  "It is hot. But something's definitely up."}

如何将最后一句话加粗?

您可以在您的字符串中添加标签,然后将它们作为原始文本插入您的部分段落

= render :partial => _paragraph, :locals => {:content =>  "It's one thing to notice an uptick in appetite if you've been training hard at the gym, or if you're pregnant or PMS-ing. <b>But when you always feel like a bottomless pit for no obvious reason, then something's definitely up.</b>"}

并且在 _paragraph

= raw content