我compass watch my_project
在 Windows XP 上运行。
index.scss
:@charset "UTF-8"; @import 'partial'; // ...
_partial.scss
:p:before { content: '•'; }
config.rb
:encoding = "utf-8"
生成
index.css
:@charset "UTF-8"; /* line 1, ../sass/_partial.scss */ p:before { content: 'ÔÇó'; } // ...
如何让 Compass/Sass 将部分解释为 UTF-8?是否可以设置一个环境变量来更改 Ruby 使用的默认字符编码(compass
是 Ruby 应用程序)?