当前位置 : 主页 > 编程语言 > ruby >

ruby – 在haml的末尾斜线 – 我应该清理它吗?

来源:互联网 收集:自由互联 发布时间:2021-06-23
我想知道为什么在我的项目的源代码中,我有时会在行的末尾看到/( Haml). %meta{:content = "text/html; charset=utf-8", "http-equiv" = "Content-Type"}/ 也许这是由于一些HTML到Haml的转换,但为什么呢? 我找
我想知道为什么在我的项目的源代码中,我有时会在行的末尾看到/( Haml).

%meta{:content => "text/html; charset=utf-8", "http-equiv" => "Content-Type"}/

也许这是由于一些HTML到Haml的转换,但为什么呢?

我找不到任何关于那个的文档.只是想知道我是否应该清理它.

它创建了一个void自动关闭标记.

The forward slash character, when placed at the end of a tag
definition, causes Haml to treat it as being an empty (or void)
element. Depending on the format, the tag will be rendered either
without a closing tag (:html4 or :html5), or as a self-closing tag
(:xhtml).

请参阅HAML文档:http://haml.info/docs/yardoc/file.REFERENCE.html#empty-void-tags-

网友评论