Skip to content

Instantly share code, notes, and snippets.

@dejan
Created April 3, 2009 13:59
Show Gist options
  • Save dejan/89756 to your computer and use it in GitHub Desktop.
Save dejan/89756 to your computer and use it in GitHub Desktop.
code filter for haml
module Haml
module Filters
module Code
include Base
def render(text)
text = Haml::Helpers.html_escape(text)
text = Haml::Helpers.preserve(text)
text
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment