代码: 全选
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!--
If the font still has no generic name, add sans-serif
-->
<match target="pattern">
<test qual="all" name="family" compare="not_eq">
<string>sans-serif</string>
</test>
<test qual="all" name="family" compare="not_eq">
<string>serif</string>
</test>
<test qual="all" name="family" compare="not_eq">
<string>monospace</string>
</test>
<edit name="family" mode="append_last">
<!-- <string>sans-serif</string> -->
<string>monospace</string>
<!-- 此处修改无效,原为凡未知字体概以 sans-serif 论,我没理解错吧!
我想改为凡未知字体皆以 monospace 论。
为何我弄个网页指定为 MyFont , 但看到的仍然是 sans-serif 而非 monospace 。 -->
</edit>
</match>
</fontconfig>