reynoldsnlp/udar

Add text transliteration output

reynoldsnlp opened this issue · 1 comments

https://en.wikipedia.org/wiki/Romanization_of_Russian#Transliteration_table

The idea would be that code something like the following would work:

t = Text('Слова на научную тему.')
t.transliterate()  # scholarly is the default
# 'Slova na naučnuju temu.'
t.transliterate('iso9')
# 'Slova na naučnuû temu.'

resolved in b34532e