Skip to content

Instantly share code, notes, and snippets.

@rossta
Created February 25, 2011 23:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rossta/844730 to your computer and use it in GitHub Desktop.
Save rossta/844730 to your computer and use it in GitHub Desktop.
Enable automatic html-escaping locally rather than by default.
<% autoescape do %>
<div>
<%= content_helper_gets_escaped %>
</div>
<% end %>
<%= content_helper_not_escaped %>
<% autoescape do %>
<div>
<%= content_helper_gets_escaped %>
</div>
<% autoescape do %>
<div>
<%= content_helper_gets_escaped %>
</div>
<% end %>
<% end %>
<%= content_helper_not_escaped %>
<% autoescape do %>
<div>
<%= content_helper_gets_escaped %>
</div>
<% end %>
<% autoescape do %>
<div>
<%= content_helper_gets_escaped %>
</div>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment