Wrong encoding for partial
问题 I am running compass watch my_project on Windows XP. index.scss : @charset "UTF-8"; @import 'partial'; // ... _partial.scss : p:before { content: '•'; } config.rb : encoding = "utf-8" Generated index.css : @charset "UTF-8"; /* line 1, ../sass/_partial.scss */ p:before { content: 'ÔÇó'; } // ... How do I make Compass/Sass interpret the partial as UTF-8? Is there perhaps an environment variable that I can set to change default character encoding used by Ruby ( compass is a Ruby app)? 回答1: On my