Skip to content

Instantly share code, notes, and snippets.

@izhangzhihao
Created February 3, 2018 14:19
Show Gist options
  • Save izhangzhihao/cff99d06a92d5bb3ca19c45fd09d27f1 to your computer and use it in GitHub Desktop.
Save izhangzhihao/cff99d06a92d5bb3ca19c45fd09d27f1 to your computer and use it in GitHub Desktop.
Url decode in jekyll
# _plugins/url_decode.rb
require 'liquid'
require 'uri'
module URLDecode
def url_decode(url)
return URI.decode(url)
end
end
Liquid::Template.register_filter(URLDecode)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment