Created
February 7, 2016 18:26
-
-
Save jeromegn/5cf734c242566423f01d to your computer and use it in GitHub Desktop.
Slang -> ECR -> HTML
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
<span id="some-id" class="classname"> | |
<div id="hello" class="world world2"> | |
<span data-some-var="<%= some_var %>"> | |
<span> | |
<span class="deep_nested"> | |
<%= Process.pid %> | |
</span> | |
</span> | |
</span> | |
<span class="alongside" pid="<%= Process.pid %>"> | |
<custom-tag id="with-id" pid="<%= "#{Process.pid}" %>"> | |
<% strings.each do |s| %> | |
<span> | |
<%= s %> | |
</span> | |
<% end %> | |
</custom-tag> | |
</span> | |
</div> | |
</span> | |
<div id="amazing-div" some-attr="<%= "hello" %>"></div> |
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
span#some-id.classname | |
#hello.world.world2 | |
span data-some-var=some_var | |
span | |
span.deep_nested | |
= Process.pid | |
span.alongside pid=Process.pid | |
custom-tag#with-id pid="#{Process.pid}" | |
- strings.each do |s| | |
span | |
= s | |
#amazing-div some-attr="hello" |
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
<span id="some-id" class="classname"> | |
<div id="hello" class="world world2"> | |
<span data-some-var="hello"> | |
<span> | |
<span class="deep_nested"> | |
12280 | |
</span> | |
</span> | |
</span> | |
<span class="alongside" pid="12280"> | |
<custom-tag id="with-id" pid="12280"> | |
<span> | |
ah | |
</span> | |
<span> | |
oh | |
</span> | |
</custom-tag> | |
</span> | |
</div> | |
</span> | |
<div id="amazing-div" some-attr="hello"></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment