如何使用 haml 和 erb button_to 辅助函数将 img 标签添加到按钮文本

How to add img tags to button text using haml and erb button_to helper function

我有这段代码(ruby haml)

= button_to tr('single_sign_on') , '/something/something0', method: :post, class: "btn-SSO"

现在我需要在按钮文本中插入 2 个图标。 任何想法如何做到这一点。我对这项技术和代码库的经验为零。 这不必使用 button_to 辅助函数。 可以只是简单的 haml(我假设我必须将其包装在表格中)。

这个助手将一个块作为参数,您可以在其中添加图标https://apidock.com/rails/v5.2.3/ActionView/Helpers/UrlHelper/button_to

= button_to '/something/something0', method: :post, class: "btn-SSO" do
  = tr('single_sign_on')   
  i.fa.fa-save # example