Skip to content

Instantly share code, notes, and snippets.

@dux
Created August 21, 2013 21:36
Show Gist options
  • Save dux/6300577 to your computer and use it in GitHub Desktop.
Save dux/6300577 to your computer and use it in GitHub Desktop.
basic HAML filter to enable Html XMP tag functionality in IE and Opera :xmp
module Haml::Filters::Xmp
include Haml::Filters::Base
def render(text)
text.gsub /</, '&lt;'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment