You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It will then use a min function to reduce it one input by minimising the found inputs.
>>> features, text = min(inputs) # inputs are in the previous code block.
(('aalt',), 'Å')
# aalt has been returned because:
>>> min(('aalt',), ('smcp',))
('aalt',)
I don't have an exact answer on how this should work but I should have a solution next quarter.
The text was updated successfully, but these errors were encountered:
m4rc1e
changed the title
hb_input output
hb_input questionable output
Dec 12, 2019
Users may not get the output they expect for each glyph. Here are some quick checks with Alegreya
dnom is desired
smcp is desired
After skimming the code, I found HbInputGenerator uses memoization to find all the inputs for a given character.
It will then use a min function to reduce it one input by minimising the found inputs.
I don't have an exact answer on how this should work but I should have a solution next quarter.
The text was updated successfully, but these errors were encountered: