/haml

Haml is HTML Abstraction Markup Language

#Haml is HTML Abstraction Markup Language

###1. Install Haml (ruby gem) >> install gem haml

###2. Convert Haml to HTML (command line) >> haml writteninhaml.haml writteninhtml.html ####HTML Code

Hello World

Jae

Lee

####Haml Code %h1 Hello World %p.name#first Jae %p.name#last Lee
###3. Refactoring HTML tags to Haml

HTML tags HTML class elements HTML id elements
% . #

###4. Reference Links - Haml Tutorial http://haml.info/tutorial.html