80-delicious.conf revision a32e9e42
1<?xml version="1.0"?>
2<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
3<fontconfig>
4  <its:rules xmlns:its="http://www.w3.org/2005/11/its" version="1.0">
5    <its:translateRule translate="no" selector="/fontconfig/*[not(self::description)]"/>
6  </its:rules>
7
8<!-- Fix-ups for Delicious family -->
9
10<!-- Delicious 'heavy' variant says its Medium weight -->
11<match target="scan">
12	<test name="family" compare="eq" ignore-blanks="true">
13		<string>Delicious</string>
14	</test>
15	<test name="style">
16		<string>Heavy</string>
17	</test>
18	<edit name="weight">
19		<const>heavy</const>
20	</edit>
21</match>
22
23</fontconfig>
24