We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nukta ਼ (U+0A3C) when added to consonants makes them to sound different than their original form.
਼
Some forms are already standardised by Unicode. However, the non-standard forms may be handled differently based on the font used or the platform.
For example: ਡ + ਼ may be shown as ਡ਼ by some fonts and ੜ in others.
ਡ + ਼
ਡ਼
ੜ
In case the font shows ੜ, we can force the font to show ਡ਼ using ZWJ (U+200D): ਡ + ZWJ + ਼.
ਡ + ZWJ + ਼
Handling of nukta normalization for both cases should be implemented. The user should be able to select which type of normalization is required.
Related discussion: #210
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Summary
Nukta
਼
(U+0A3C) when added to consonants makes them to sound different than their original form.Some forms are already standardised by Unicode.
However, the non-standard forms may be handled differently based on the font used or the platform.
For example:
ਡ + ਼
may be shown asਡ਼
by some fonts andੜ
in others.In case the font shows
ੜ
, we can force the font to showਡ਼
using ZWJ (U+200D):ਡ + ZWJ + ਼
.Handling of nukta normalization for both cases should be implemented.
The user should be able to select which type of normalization is required.
Related discussion: #210
Approach
The text was updated successfully, but these errors were encountered: