Skip to content

Instantly share code, notes, and snippets.

@pier-oliviert
Created October 26, 2014 16:08
Show Gist options
  • Select an option

  • Save pier-oliviert/f9194a77d3da2724ac4a to your computer and use it in GitHub Desktop.

Select an option

Save pier-oliviert/f9194a77d3da2724ac4a to your computer and use it in GitHub Desktop.
<%= content_tag :div do |div| %>
It's a
<% div.css << 'test' %>
div
<% end %>
<%= content_tag :div do |div| %>
<% div.css << :boo %>
Embedded tag awesomeness!
<%= content_tag :p do |p| %>
Nice to see you
<% div.css << 'test' %>
<% end %>
<% end %>
<div class="test">
It's a div
</div>
<div class="boo test">
Embedded tag awesomeness!
<p>Nice to see you</p>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment