Skip to content

Instantly share code, notes, and snippets.

@ruprict
Created April 4, 2012 01:04
Show Gist options
  • Save ruprict/2296858 to your computer and use it in GitHub Desktop.
Save ruprict/2296858 to your computer and use it in GitHub Desktop.
module Jekyll
module RemoveExtension
def remove_extension(input)
input.gsub(/\.\w+\Z/, '')
end
end
end
Liquid::Template.register_filter(Jekyll::RemoveExtension)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment