blob: 58dba21d362cdbee32d765461c4e52dee731811f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font">
<or>
<test name="family">
<string>TakaoMincho</string>
</test>
<test name="family">
<string>TakaoGothic</string>
</test>
<test name="family">
<string>TakaoPMincho</string>
</test>
<test name="family">
<string>TakaoPGothic</string>
</test>
<test name="family">
<string>TakaoExMincho</string>
</test>
<test name="family">
<string>TakaoExGothic</string>
</test>
</or>
<edit name="autohint">
<bool>false</bool>
</edit>
</match>
</fontconfig>
|