Kronuz / pyScss

pyScss, a Scss compiler for Python
MIT License
582 stars 140 forks source link

@charset should only output once #340

Open kaaaahhhhnnnn opened 9 years ago

kaaaahhhhnnnn commented 9 years ago
@charset "utf-8";
@charset "utf-8";

should only show up once.

thirashima commented 9 years ago

This is especially an issue if you are using pyscss with the bourbon + neat libraries, since neat uses charset at the top of each of their included files, so your output will have about 40 instances of '@charset "UTF-8";' in it.

eevee commented 8 years ago

I suppose the question is... what happens if there are multiple @charsets with different arguments?