在rails haml文件中使用资产管道

时间:2017-05-09 09:23:20

标签: ruby-on-rails asset-pipeline

我有一个带有一些元定义的haml文件。 我需要定义facebook图像metatag,如

<meta property="og:image" content="path-to/mylogo.png" />

我如何使用资产管道实现这一点,我已尝试执行以下操作

%meta(property="og:image", content=image_url('newLogo.png'))

但它给了我一个错误。

1 个答案:

答案 0 :(得分:1)

您没有使用正确的语法

%meta{ property: "og:image", content: image_url('newLogo.png')}/

为了将来参考,您可以使用此在线工具将html转换为haml - htmltohaml.com