consistentize the fonts

Signed-off-by: Xe Iaso <me@xeiaso.net>
This commit is contained in:
Xe Iaso
2023-03-24 15:01:26 -04:00
parent adaabb5163
commit 85a6850cf6
3 changed files with 8 additions and 24 deletions

View File

@@ -49,9 +49,9 @@
css = 400;
};
widths.normal = {
shape = 600;
shape = 500;
menu = 7;
css = "expanded";
css = "normal";
};
inherit metric-override;
};
@@ -157,7 +157,7 @@
--layout-features=* \
--no-hinting \
--desubroutinize \
--unicodes="U+0000-00A0,U+00A2-00A9,U+00AC-00AE,U+00B0-00B7,U+00B9-00BA,U+00BC-00BE,U+00D7,U+00F7,U+2000-206F,U+2074,U+20AC,U+2122,U+2190-21BB,U+2212,U+2215,U+F8FF,U+FEFF,U+FFFD"
--unicodes="U+0000-0170,U+00D7,U+00F7,U+2000-206F,U+2074,U+20AC,U+2122,U+2190-21BB,U+2212,U+2215,U+F8FF,U+FEFF,U+FFFD,U+00E8"
mv *.ttf ttf
done

View File

@@ -3,14 +3,14 @@
font-weight: 100 900;
font-style: normal;
src: local("Iosevka Aile Iaso")
, url("iosevka-aile-extended.woff2") format("woff2");
, url("iosevka-aile-regular.woff2") format("woff2");
}
@font-face {
font-family: "Iosevka Aile Iaso";
font-weight: 100 900;
font-style: italic;
src: local("Iosevka Aile Iaso")
, url("iosevka-aile-extendeditalic.woff2") format("woff2");
, url("iosevka-aile-italic.woff2") format("woff2");
}
@font-face {
@@ -25,12 +25,12 @@
font-weight: 100 900;
font-style: normal;
src: local("Iosevka Etoile Iaso")
, url("iosevka-etoile-extended.woff2") format("woff2");
, url("iosevka-etoile-regular.woff2") format("woff2");
}
@font-face {
font-family: "Iosevka Etoile Iaso";
font-weight: 100 900;
font-style: italic;
src: local("Iosevka Etoile Iaso")
, url("iosevka-etoile-extendeditalic.woff2") format("woff2");
, url("iosevka-etoile-italic.woff2") format("woff2");
}

View File

@@ -68,23 +68,7 @@ with open("specimen.html", "w") as fout:
''')
i = 0
for ch in range(0x20, 0xA0):
if i == 10:
fout.write("</tr><tr>")
i = 0
fout.write(f'''<td><big>&#x{ch:02x}</big><br />0x{ch:02x}</td>''')
i += 1
for ch in range(0xA2, 0xA9):
if i == 10:
fout.write("</tr><tr>")
i = 0
fout.write(f'''<td><big>&#x{ch:02x}</big><br />0x{ch:02x}</td>''')
i += 1
for ch in range(0xAC, 0xAE):
for ch in range(0x20, 0xBE):
if i == 10:
fout.write("</tr><tr>")
i = 0