Skip to content

Instantly share code, notes, and snippets.

@sentientwaffle
Created July 22, 2011 16:50
Show Gist options
  • Save sentientwaffle/1099841 to your computer and use it in GitHub Desktop.
Save sentientwaffle/1099841 to your computer and use it in GitHub Desktop.
-# This renders perfectly.
= bubbl
-# This doesnt render... why?
= bubble
module MyHelper
# This renders.
def bubbl
%(<div class="bubbl">Hi</div>).html_safe
end
# This does not render.
def bubble
%(<div class="bubble">Hi</div>).html_safe
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment