Skip to content
New issue

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

Fix up transliteration documentation. #1027

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

bjhess
Copy link

@bjhess bjhess commented Nov 20, 2024

The current documentation for transliteration does not transliterate.

> "для Минималистов".to_slug.normalize!(:transliterations => [:russian, :latin]).to_s
=> "для-минималистов"

These two commands do successfully transliterate, so let's update the documentation to the simplest of the two:

> "для Минималистов".to_slug.normalize!(:transliterate => [:russian, :latin]).to_s
=> "dlya-minimalistov"
> "для Минималистов".to_slug.normalize(:transliterate => true, :transliterations => [:russian, :latin]).to_s
=> "dlya-minimalistov"

The current documentation for transliteration does not transliterate.

> "для Минималистов".to_slug.normalize!(:transliterations => [:russian, :latin]).to_s
=> "для-минималистов"

These two commands do successfully transliterate, so let's update the
documentation to the simplest of the two:

> "для Минималистов".to_slug.normalize!(:transliterate => [:russian, :latin]).to_s
=> "dlya-minimalistov"
> "для Минималистов".to_slug.normalize(:transliterate => true, :transliterations => [:russian, :latin]).to_s
=> "dlya-minimalistov"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant