-
Notifications
You must be signed in to change notification settings - Fork 50
Description
Hello,
I have already reported a couple of other issues and a PR, but I haven't yet even taken the time to thank you for this neat package... Thank you!!
I am opening this issue because I am a bit confused with which inverse romanization I should expect to_kana(str) to return.
These lines suggest that your intent was for it to return the Hepburn version if possible, otherwise the Kunrei version:
https://github.com/soimort/python-romkan/blob/master/src/romkan/common.py#L373-376
Later however, ROMKAN.update( {"ti": "チ"} ) explicitly prescribes Kunrei over Hepburn:
https://github.com/soimort/python-romkan/blob/master/src/romkan/common.py#L382-383
( "チ" is Kunrei, "ティ" is Hepburn)
What is the rationale behind this?
Is the intent to emulate keyboard input method ("wapuro" style) inverse romanization?
Thanks!
Baptiste