Skip to content

Instantly share code, notes, and snippets.

@jdtornow
Created May 8, 2012 21:03
Show Gist options
  • Save jdtornow/2639261 to your computer and use it in GitHub Desktop.
Save jdtornow/2639261 to your computer and use it in GitHub Desktop.
haml coffeescript filter
module Haml::Filters::CoffeeScript
include Haml::Filters::Base
def render(text)
result = ::CoffeeScript.compile(text)
"<script type=\"text/javascript\">\n#{result}</script>"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment