【发布时间】:2017-11-16 11:57:07
【问题描述】:
我有这行的haml文件
.class{ aria_hidden: "true" }
编译后创建haml
<div class="class" aria_hidden="true">
为什么haml不把_改成-?
【问题讨论】:
我有这行的haml文件
.class{ aria_hidden: "true" }
编译后创建haml
<div class="class" aria_hidden="true">
为什么haml不把_改成-?
【问题讨论】:
查看您的 HAML 配置文件:hyphenate_data_attrs: true;。
#hyphenate_data_attrs
如果设置为 true,Haml 将在所有自定义数据属性中将下划线转换为连字符自 Haml 4.0 起,默认为 true。
【讨论】: