Skip to content

Instantly share code, notes, and snippets.

@railscard
Created January 13, 2016 10:03
Show Gist options
  • Save railscard/277d400b8b33ec435cf9 to your computer and use it in GitHub Desktop.
Save railscard/277d400b8b33ec435cf9 to your computer and use it in GitHub Desktop.
module UnicodeStringUtils
def downcase(input)
input.to_s.mb_chars.downcase
end
def upcase(input)
input.to_s.mb_chars.downcase
end
end
Liquid::Template.register_filter(UnicodeStringUtils)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment