在Rails应用程序上使用haml转换为ruby的html转换?

时间:2015-02-09 14:11:43

标签: html ruby-on-rails ruby haml

我想最有效地进行搜索引擎优化?以下HAML元标记在我的新ruby on rails应用程序中。如果我将其转换为HTML有什么优势吗?

- content_for :title,       @service ? @service.page_title : " - Legal Compliance"
- content_for :description, @service ? @service.meta_description : "Legal Compliance"
- content_for :keyword,     @service ? @service.meta_keywords : "Legal Compliance"

1 个答案:

答案 0 :(得分:1)

这是你想要的吗?

<% content_for :title,       @service ? @service.page_title : " - Legal Compliance" %>
<% content_for :description, @service ? @service.meta_description : "Legal Compliance" %>
<% content_for :keyword,     @service ? @service.meta_keywords : "Legal Compliance" %>