Created
October 26, 2014 16:08
-
-
Save pier-oliviert/f9194a77d3da2724ac4a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <%= 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 %> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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