A symbol for 'h' is equivalent to the planck constant 'h'. The unicode standard omits the mathematical 'h' to avoid the duplication.
ReX currently uses this non-existing glyph and fails to render 'h'.
A workaround is to check for this special case and use the alternative codepoint.
Find and replace
match codepoint {
LOWER_A..=LOWER_Z => style_lookup(&LATIN_LOWER_LUT, codepoint, style),
A symbol for 'h' is equivalent to the planck constant 'h'. The unicode standard omits the mathematical 'h' to avoid the duplication. ReX currently uses this non-existing glyph and fails to render 'h'.
A workaround is to check for this special case and use the alternative codepoint.
Find and replace
with