File tree 3 files changed +5
-1
lines changed
3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -319,6 +319,9 @@ def check(opts: Namespace) -> bool:
319
319
glyph_names : list [str ] = []
320
320
for g in glyphs :
321
321
if g is not None and (gn := g .get ("glyph-name" )):
322
+ # space is not given as octal in svg fonts
323
+ if gn == "space" :
324
+ gn = "0020"
322
325
glyph_names .append (gn [- 4 :] if gn .startswith ("uni" ) else gn )
323
326
324
327
supported_codes : set = set (all_glyphs .keys ())
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ $PYTHON generate.py extract Bravura
13
13
$PYTHON generate.py css Bravura
14
14
15
15
echo " Generating Leipzig files ..."
16
+ $PYTHON generate.py check Leipzig
16
17
$PYTHON generate.py extract Leipzig
17
18
$PYTHON generate.py css Leipzig
18
19
Original file line number Diff line number Diff line change 2
2
<smufl >
3
3
<standardUnicodePoints >
4
4
<description >Standard Unicode Points (added by hand)</description >
5
- <glyph glyph-code =" " smufl-name =" space" />
5
+ <glyph glyph-code =" 0020 " smufl-name =" space" />
6
6
<glyph glyph-code =" 266D" smufl-name =" musicFlatSign" />
7
7
<glyph glyph-code =" 266E" smufl-name =" musicNaturalSign" />
8
8
<glyph glyph-code =" 266F" smufl-name =" musicSharpSign" />
You can’t perform that action at this time.
0 commit comments