Skip to content

Latest commit

 

History

History
36 lines (32 loc) · 807 Bytes

README.md

File metadata and controls

36 lines (32 loc) · 807 Bytes

#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