blob: 5a641d675b3616e28d7560874bbd07e7d09464c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd">
<fontconfig>
<description>Enable font features for Inter</description>
<match target="font">
<test name="family" compare="eq" ignore-blanks="true">
<string>Inter</string>
</test>
<edit name="fontfeatures" mode="append">
<string>ss07 on</string> <!-- Square punctuation -->
<string>ss08 on</string> <!-- Square quotes -->
</edit>
</match>
</fontconfig>
|