Skip to content

Instantly share code, notes, and snippets.

@themactep
Created September 1, 2010 17:42
Show Gist options
  • Save themactep/561057 to your computer and use it in GitHub Desktop.
Save themactep/561057 to your computer and use it in GitHub Desktop.
<pre>
<%= "<em>text</em>".class %>
<%= raw("<em>text</em>").class %>
<%= "<em>text</em>" %>
<%= raw("<em>text</em>") %>
<%= ["<em>text</em>"].join %>
<%= [raw("<em>text</em>")].join %>
<%= "<em>text</em>" << raw("<em>text</em>") %>
<%= raw("<em>text</em>") << "<em>text</em>" %>
</pre>
<!-- output --
String
ActiveSupport::SafeBuffer
<em>text</em>
text
<em>text</em>
<em>text</em>
<em>text</em><em>text</em>
text<em>text</em>
-- end -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment