Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Akira TAGOH
fontconfig
Commits
9a6ad6f1
Commit
9a6ad6f1
authored
Aug 25, 2021
by
Pierre Ducroquet
Browse files
Always add the family name from spacing=100
parent
686739af
Pipeline
#485450
passed with stage
in 7 minutes and 42 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
conf.d/48-spacing.conf
View file @
9a6ad6f1
<?
xml
version
=
"1.0"
?>
<!
DOCTYPE
fontconfig
SYSTEM
"urn:fontconfig:fonts.dtd"
>
<
fontconfig
>
<
description
>
Add
mono
to
the
family
when
no
generic
name
and
spacing
is
100
</
description
>
<
description
>
Add
mono
to
the
family
when
spacing
is
100
</
description
>
<!--
If
the
font
has
no
generic
name
and
spacing
100
,
add
mono
If
the
request
specifies
spacing
100
,
add
mono
space
to
family
-->
<
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
>
<
test
qual
=
"any"
name
=
"spacing"
compare
=
"eq"
>
<
int
>
100
</
int
>
</
test
>
<
edit
name
=
"family"
mode
=
"
a
ppend
_last
"
>
<
edit
name
=
"family"
mode
=
"p
re
pend"
>
<
string
>
monospace
</
string
>
</
edit
>
</
match
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment