Skip to content

Instantly share code, notes, and snippets.

@mait
Created April 21, 2012 23:29
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 mait/2440239 to your computer and use it in GitHub Desktop.
Save mait/2440239 to your computer and use it in GitHub Desktop.
KoPub font settings
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="scan">
<test name="fullname">
<string>KoPubDotum Bold</string><string>KoPub돋움체 Bold</string>
<string>KoPubBatang Bold</string><string>KoPub바탕체 Bold</string>
</test>
<edit name="style" mode="assign">
<string>Bold</string>
</edit>
<edit name="weight" mode="assign">
<const>bold</const>
</edit>
</match>
<match target="scan">
<test name="fullname">
<string>KoPubDotum Light</string><string>KoPub돋움체 Light</string>
<string>KoPubBatang Light</string><string>KoPub바탕체 Light</string>
</test>
<edit name="style" mode="assign">
<string>Light</string>
</edit>
<edit name="weight" mode="assign">
<const>light</const>
</edit>
</match>
<match target="scan">
<test name="fullname">
<string>KoPubDotum Bold</string>
<string>KoPubDotum Medium</string>
<string>KoPubDotum Light</string>
</test>
<edit name="family">
<string>KoPubDotum</string>
</edit>
</match>
<match target="scan">
<test name="fullname">
<string>KoPubBatang Bold</string>
<string>KoPubBatang Medium</string>
<string>KoPubBatang Light</string>
</test>
<edit name="family">
<string>KoPubBatang</string>
</edit>
</match>
<match target="font">
<test name="family">
<string>KoPubDotum</string>
<string>KoPubBatang</string>
</test>
<edit name="hintstyle">
<const>hintmedium</const>
</edit>
</match>
</fontconfig>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment