Skip to content

Instantly share code, notes, and snippets.

@whizcreed
Created November 12, 2011 09:48
Show Gist options
  • Save whizcreed/1360317 to your computer and use it in GitHub Desktop.
Save whizcreed/1360317 to your computer and use it in GitHub Desktop.
HAML filter for comatose cms
# HAML Text Filter
TextFilters.define :haml, "HAML" do
require 'haml'
def render_text(text)
engine = Haml::Engine.new(text)
engine.render
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment