Skip to content

Instantly share code, notes, and snippets.

@vills
Forked from jamesan/url_encode.rb
Created May 20, 2012 14:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vills/2758306 to your computer and use it in GitHub Desktop.
Save vills/2758306 to your computer and use it in GitHub Desktop.
Percent encoding for URI conforming to RFC 3986. Ref: http://tools.ietf.org/html/rfc3986#page-12
require 'liquid'
require 'uri'
# Percent encoding for URI conforming to RFC 3986.
# Ref: http://tools.ietf.org/html/rfc3986#page-12
module URLEncoding
def url_encode(url)
return URI.escape(url, Regexp.new("[^#{URI::PATTERN::UNRESERVED}]"))
end
end
Liquid::Template.register_filter(URLEncoding)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment