Skip to content

Commit

Permalink
feat: readability improvement for punctuations between more Hangul
Browse files Browse the repository at this point in the history
  • Loading branch information
Dalgona committed May 23, 2021
1 parent 3954738 commit b870cf3
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions lib/neodgm_pro/lookups/gpos/kerning.ex
Original file line number Diff line number Diff line change
Expand Up @@ -128,15 +128,16 @@ lookups NeoDGMPro.Lookups.GPOS.Kerning, for: "GPOS" do

%Lookup{
owner: GPOS,
name: "Readability improvement for punctuations between hangul",
name: "Readability improvement for punctuations between Hangul",
features: %{"dist" => scripts()},
type: 2,
subtables: [
%PairAdjustment2{
class_1: %ClassDefinition{
assignments: %{
1 => ~w(jung_0_00 jung_1_00),
2 => '\u1161가까나다따라마바빠사싸아자짜차카타파하'
1 => ~w(jung_0_00 jung_0_09 jung_1_00 jung_1_09),
2 => '\u1161\u314F가까나다따라마바빠사싸아자짜차카타파하',
3 => '\u116A\u3158과꽈놔돠똬롸뫄봐뽜솨쏴와좌쫘촤콰톼퐈화'
}
},
class_2: %ClassDefinition{
Expand All @@ -148,7 +149,8 @@ lookups NeoDGMPro.Lookups.GPOS.Kerning, for: "GPOS" do
value_format_2: [],
records: %{
{1, 1} => {%ValueRecord{x_advance: 1}, %ValueRecord{}},
{2, 1} => {%ValueRecord{x_advance: 1}, %ValueRecord{}}
{2, 1} => {%ValueRecord{x_advance: 1}, %ValueRecord{}},
{3, 1} => {%ValueRecord{x_advance: 1}, %ValueRecord{}}
}
}
]
Expand Down

0 comments on commit b870cf3

Please sign in to comment.