[USE] Allow ZWNJ at the end of a cluster
This commit is contained in:
parent
a3e6dbbb43
commit
09b9a1ffdd
File diff suppressed because it is too large
Load Diff
|
@ -167,14 +167,14 @@ hieroglyph_cluster = SB+ | SB* G SE* (J SE* (G SE*)?)*;
|
||||||
other = any;
|
other = any;
|
||||||
|
|
||||||
main := |*
|
main := |*
|
||||||
virama_terminated_cluster => { found_syllable (use_virama_terminated_cluster); };
|
virama_terminated_cluster ZWNJ? => { found_syllable (use_virama_terminated_cluster); };
|
||||||
sakot_terminated_cluster => { found_syllable (use_sakot_terminated_cluster); };
|
sakot_terminated_cluster ZWNJ? => { found_syllable (use_sakot_terminated_cluster); };
|
||||||
standard_cluster => { found_syllable (use_standard_cluster); };
|
standard_cluster ZWNJ? => { found_syllable (use_standard_cluster); };
|
||||||
number_joiner_terminated_cluster => { found_syllable (use_number_joiner_terminated_cluster); };
|
number_joiner_terminated_cluster ZWNJ? => { found_syllable (use_number_joiner_terminated_cluster); };
|
||||||
numeral_cluster => { found_syllable (use_numeral_cluster); };
|
numeral_cluster ZWNJ? => { found_syllable (use_numeral_cluster); };
|
||||||
symbol_cluster => { found_syllable (use_symbol_cluster); };
|
symbol_cluster ZWNJ? => { found_syllable (use_symbol_cluster); };
|
||||||
hieroglyph_cluster => { found_syllable (use_hieroglyph_cluster); };
|
hieroglyph_cluster ZWNJ? => { found_syllable (use_hieroglyph_cluster); };
|
||||||
broken_cluster => { found_syllable (use_broken_cluster); buffer->scratch_flags |= HB_BUFFER_SCRATCH_FLAG_HAS_BROKEN_SYLLABLE; };
|
broken_cluster ZWNJ? => { found_syllable (use_broken_cluster); buffer->scratch_flags |= HB_BUFFER_SCRATCH_FLAG_HAS_BROKEN_SYLLABLE; };
|
||||||
other => { found_syllable (use_non_cluster); };
|
other => { found_syllable (use_non_cluster); };
|
||||||
*|;
|
*|;
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -21,3 +21,4 @@
|
||||||
../fonts/e68a88939e0f06e34d2bc911f09b70890289c8fd.ttf;;U+AA00,U+200C,U+AA34;[raMedial_cham_pre=0+400|a_cham=0+1121]
|
../fonts/e68a88939e0f06e34d2bc911f09b70890289c8fd.ttf;;U+AA00,U+200C,U+AA34;[raMedial_cham_pre=0+400|a_cham=0+1121]
|
||||||
../fonts/2a670df15b73a5dc75a5cc491bde5ac93c5077dc.ttf;;U+11124,U+200D,U+11127;[u11124=0+514|u11127=0+0]
|
../fonts/2a670df15b73a5dc75a5cc491bde5ac93c5077dc.ttf;;U+11124,U+200D,U+11127;[u11124=0+514|u11127=0+0]
|
||||||
../fonts/2a670df15b73a5dc75a5cc491bde5ac93c5077dc.ttf;;U+11124,U+2060,U+11127;[u11124=0+514|uni25CC=1+547|u11127=1+0]
|
../fonts/2a670df15b73a5dc75a5cc491bde5ac93c5077dc.ttf;;U+11124,U+2060,U+11127;[u11124=0+514|uni25CC=1+547|u11127=1+0]
|
||||||
|
../fonts/a56745bac8449d0ad94918b2bb5930716ba02fe3.ttf;;U+1142C,U+11442,U+200C,U+1142E;[u1142C=0+547|u11442=0+0|u1142E=3+547]
|
||||||
|
|
Loading…
Reference in New Issue