Ruby on Rails 将I18n与HTML标记和符号一起使用

示例

# config / locales / en.yml
en:
  stackoverflow:
    header:
      title_html: "Use <strong>I18n</strong> with Tags &amp; Symbols"

请注意_html在名称后添加了extra title。

在视图中

# ERB
<h2><%= t(:title_html, scope: [:stackoverflow, :header]) %></h2>