Skip to content

Instantly share code, notes, and snippets.

@IanVaughan
Created June 19, 2012 14:52
Show Gist options
  • Select an option

  • Save IanVaughan/2954624 to your computer and use it in GitHub Desktop.

Select an option

Save IanVaughan/2954624 to your computer and use it in GitHub Desktop.
HAML to ERB (for dummies like me!)
HAML ERB comment
% tag/tagname just replace % to <>
if there's no %, it assumes div
# id pound sign
. class period
- <% Running Ruby/Ruby code
= <%= Inserting Ruby/Ruby expression
%section#dashboard <section id="dashboard">
%section.grouped#upgrade <section class="grouped" id="upgrade">
%td#whatif.itworks.fine hm?

<td class='itworks fine' id='whatif'>hm?</td>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment