我将来的gulp任务将获取.scss
个文件,应用一些postCSS变形器(cssnano,autoprefixer),并使用sass进行编译。
问题:我的.scss文件中有一个自定义语法
#ytb_block_header_3 .ytb_extension_tracker {
background:{{ ytb_variable("background", "HEADER_boutons", "color") }};
color:{{ ytb_variable("color", "HEADER_boutons", "color") }};
width:{{ ytb_variable("generic", "HEADER_boutons_width", "value") }};
padding:2.5% 2%;
height:35px;
border:1px solid #ffa300;
text-align:center;
float:right;
}
已编译的.css将发送到后端服务器,在该服务器中将再次在PHP中对其进行解析以替换{{ ytb_variable() }}
函数