Skip to content

Instantly share code, notes, and snippets.

@matsuu
Created July 2, 2009 16:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matsuu/139583 to your computer and use it in GitHub Desktop.
Save matsuu/139583 to your computer and use it in GitHub Desktop.
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!-- We can't hint CJK fonts well, so turn off autohint for CJK fonts. -->
<match target="font">
<test name="lang" compare="contains">
<string>ja</string>
<string>ko</string>
<string>zh</string>
</test>
<!--
<test name="hintstyle" compare="more">
<const>hintslight</const>
</test>
<edit name="hintstyle" mode="assign">
<const>hintslight</const>
</edit>
-->
<edit name="autohint" mode="assign">
<bool>false</bool>
</edit>
</match>
</fontconfig>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment