Initial support for ligation in Kitty (#1007)

This commit is contained in:
be5invis 2021-06-02 19:17:49 -07:00
parent f0402d2d40
commit 8a69ab9179
13 changed files with 220 additions and 42 deletions

View file

@ -2,12 +2,12 @@
const { Ot } = require("ot-builder");
module.exports = function () {
module.exports = function (argv) {
let font = {
head: new Ot.Head.Table(),
hhea: new Ot.MetricHead.Hhea(),
os2: new Ot.Os2.Table(4),
post: new Ot.Post.Table(3, 0),
post: new Ot.Post.Table(argv.featureControl.exportGlyphNames ? 2 : 3, 0),
maxp: Ot.Maxp.Table.TrueType(),
name: new Ot.Name.Table()
};