Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/thbar/diacritics_fu

Tiny Ruby library to remove accents and other diacritics from a string (relies on ActiveSupport).
https://github.com/thbar/diacritics_fu

Last synced: 2 months ago
JSON representation

Tiny Ruby library to remove accents and other diacritics from a string (relies on ActiveSupport).

Awesome Lists containing this project

README

        

Quick start
===========

DiacriticsFu::escape("éphémère")
=> "ephemere"

DiacriticsFu::escape("räksmörgås")
=> "raksmorgas"

What?
=====

A small library to remove accents from a string. Relies on ActiveSupport.

Created because I needed a simple way to remove most diacritics from French sentences, while generating slugs (url) for a CMS (either Mephisto or ComatoseCMS).

Nb: this approach is not the fastest way to achieve this. It's good enough for me though.

Author
======

Thibaut Barrère (http://blog.logeek.fr)

Testing
=======

You can run the spec against the latest available ActiveSupport using "rake spec".

To run the tests against all installed ActiveSupport versions, use "rake spec_multi"

License
=======

MIT