Created
August 3, 2015 11:05
-
-
Save mxlje/f0888f05ca702c5f776e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
slug = text.downcase.gsub(/(ä|Ä|ö|Ö|ü|Ü|ß| |\?|\!)/, { | |
'ä' => 'ae', | |
'Ä' => 'ae', | |
'ö' => 'oe', | |
'Ö' => 'oe', | |
'ü' => 'ue', | |
'Ü' => 'ue', | |
'ß' => 'ss', | |
' ' => '-', | |
'?' => '', | |
'!' => '', | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment