123456789101112131415161718192021222324252627282930 |
- <?xml version='1.0'?>
- <!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
- <fontconfig>
- <!-- ## Replace webfonts with localy installed families.
- Copy and paste the template at the bottom of this file and add
- more substitutions as necessary.
- The file will not be overwritten on fontconfig-iu update.
- User-defined settings override 37-repl-webfonts.conf. ## -->
- <!-- @font-face:WEBFONT TO REPLACE => LOCAL REPLACEMENT FONT -->
- <match target="font">
- <test name="family">
- <string>@font-face:WEBFONT TO REPLACE</string>
- </test>
- <edit name="family" mode="assign">
- <string>LOCAL REPLACEMENT FONT</string>
- </edit>
- </match>
- <match target="pattern">
- <test name="family">
- <string>@font-face:WEBFONT TO REPLACE</string>
- </test>
- <edit name="family" mode="prepend" binding="strong">
- <string>LOCAL REPLACEMENT FONT</string>
- </edit>
- </match>
- </fontconfig>
|