diff options
Diffstat (limited to 'otfl-font-otc.lua')
-rw-r--r-- | otfl-font-otc.lua | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/otfl-font-otc.lua b/otfl-font-otc.lua index 93b942f..5eb51f9 100644 --- a/otfl-font-otc.lua +++ b/otfl-font-otc.lua @@ -35,18 +35,22 @@ local extra_lists = { { endash = "hyphen hyphen", emdash = "hyphen hyphen hyphen", - -- quotedblleft = "quoteleft quoteleft", - -- quotedblright = "quoteright quoteright", - -- quotedblleft = "grave grave", - -- quotedblright = "quotesingle quotesingle", - -- quotedblbase = "comma comma", + quotedblleft = "quoteleft quoteleft", + quotedblright = "quoteright quoteright", + quotedblleft = "grave grave", + quotedblright = "quotesingle quotesingle", + quotedblbase = "comma comma", + exclamdown = "exclam grave", + questiondown = "question grave", + guillemotleft = "less less", + guillemotright= "greater greater", }, }, trep = { { - -- [0x0022] = 0x201D, + [0x0022] = 0x201D, [0x0027] = 0x2019, - -- [0x0060] = 0x2018, + [0x0060] = 0x2018, }, }, anum = { @@ -98,14 +102,14 @@ local extra_features = { -- maybe just 1..n so that we prescribe order }, anum = { { - features = { arab = { URD = true, dflt = true } }, + features = { arab = { FAR = true, dflt = true } }, name = "ctx_anum_1", subtables = { "ctx_anum_1_s" }, type = "gsub_single", flags = { }, }, { - features = { arab = { URD = true } }, + features = { arab = { FAR = true } }, name = "ctx_anum_2", subtables = { "ctx_anum_2_s" }, type = "gsub_single", |