我有带这行的haml文件
.class{ aria_hidden: "true" }
编译后,haml创建
<div class="class" aria_hidden="true">
为什么haml不将_改为-
发布于 2017-11-28 11:01:34
查看您的HAML配置文件:hyphenate_data_attrs: true;。
HAML文档 #hyphenate_data_attrs 如果设置为true,Haml将在Haml 4.0时将所有自定义数据属性中的下划线转换为连字符,这将默认为true。
https://stackoverflow.com/questions/47329077
复制相似问题