is such a common element,
a tag without a name defaults to a div. So
#foo Hello!
becomes
Hello!
Haml uses indentation
to bring the individual elements to represent the HTML structure.
A tag's children are indented two spaces more than the parent tag.
Again, a closing tag is automatically added.
For example:
%ul
%li Salt
%li Pepper
becomes:
You can also put plain text as a child of an element:
%p
Hello,
World!
It's even possible to embed Ruby code into Haml documents.
An equals sign,
=, will output the result of the code.
A hyphen,
-, will run the code but not output the result.
You can even use control statements
like
if and
while:
%p
Date/Time:
- now = DateTime.now
%strong= now
- if now > DateTime.parse("December 31, 2006")
= "Happy new " + "year!"
Haml provides far more tools than those presented here.
Check out the reference documentation in the Haml module.
=== Sass
At its most basic,
Sass is just another way of writing CSS.
Although it's very much like normal CSS,
the basic syntax offers a few helpful features:
tabulation (using *two spaces*)
indicates the attributes in a rule,
rather than non-DRY brackets;
and newlines indicate the end of an attribute,
rather than a semicolon.
For example:
#main
:background-color #f00
:width 98%
becomes:
#main {
background-color: #f00;
width: 98% }
However, Sass provides much more than a way to make CSS look nice.
In CSS, it's important to have accurate selectors,
so your styles don't just apply to everything.
However, in order to do this,
you need to use nested element selectors.
These get very ugly very quickly.
I'm sure everyone's had to write something like
"#main .sidebar .top p h1 a",
followed by
"#main .sidebar .top p h1 a:visited" and
"#main .sidebar .top p h1 a:hover".
Well, Sass gets rid of that.
Like Haml, it uses indentation to indicate the structure of the document.
So, what was:
#main {
width: 90%;
}
#main p {
border-style: solid;
border-width: 1px;
border-color: #00f;
}
#main p a {
text-decoration: none;
font-weight: bold;
}
#main p a:hover {
text-decoration: underline;
}
becomes:
#main
:width 90%
p
:border-style solid
:border-width 1px
:border-color #00f
a
:text-decoration none
:font-weight bold
a:hover
:text-decoration underline
Pretty nice, no? Well, it gets better.
One of the main complaints against CSS is that it doesn't allow constants.
What if have a color or a width you re-use all the time?
In CSS, you just have to re-type it each time,
which is a nightmare when you decide to change it later.
Not so for Sass!
You can use the "!" character to set constants.
Then, if you put "=" after your attribute name,
you can set it to a constant.
For example:
!note_bg= #55aaff
#main
:width 70%
.note
:background-color= !note_bg
p
:width 5em
:background-color= !note_bg
becomes:
#main {
width: 70%; }
#main .note {
background-color: #55aaff; }
#main p {
width: 5em;
background-color: #55aaff; }
You can even do simple arithmetic operations with constants,
adding numbers and even colors together:
!main_bg= #46ar12
!main_width= 40em
#main
:background-color= !main_bg
:width= !main_width
.sidebar
:background-color= !main_bg + #333333
:width= !main_width - 25em
becomes:
#main {
background-color: #46a312;
width: 40em; }
#main .sidebar {
background-color: #79d645;
width: 15em; }
Taking the idea of constants a bit further are mixins.
These let you group whole swathes of CSS attributes into a single
directive and then include those anywhere you want:
=blue-border
:border
:color blue
:width 2px
:style dotted
.comment
+blue-border
:padding 2px
:margin 10px 0
.reply
+blue-border
becomes:
.comment {
border-color: blue;
border-width: 2px;
border-style: dotted;
padding: 2px;
margin: 10px 0;
}
.reply {
border-color: blue;
border-width: 2px;
border-style: dotted;
}
A comprehensive list of features is in
the documentation for the Sass module.
== Executables
The Haml gem includes several executables that are useful
for dealing with Haml and Sass from the command line.
=== +haml+
The +haml+ executable transforms a source Haml file into HTML.
See
haml --help for further information and options.
=== +sass+
The +sass+ executable transforms a source Sass file into CSS.
See
sass --help for further information and options.
===
html2haml
The
html2haml executable attempts to transform HTML,
optionally with ERB markup, into Haml code.
Since HTML is so variable, this transformation is not always perfect;
it's a good idea to have a human check the output of this tool.
See
html2haml --help for further information and options.
===
css2sass
The
css2sass executable attempts to transform CSS into Sass code.
This transformation attempts to use Sass nesting where possible.
See
css2sass --help for further information and options.
== Authors
Haml and Sass are designed by Hampton Catlin (hcatlin) and he is the author
of the original implementation. However, Hampton doesn't even know his way
around the code anymore and mostly just concentrates on the language issues.
Hampton lives in Toronto, Ontario (though he's an American by birth) and
is a partner at Unspace Interactive.
Nathan Weizenbaum is the primary maintainer and architect of the "modern" Ruby
implementation of Haml. His hard work has kept the project alive by endlessly
answering forum posts, fixing bugs, refactoring, finding speed improvements,
writing documentation, implementing new features, and getting Hampton
coffee (a fitting task for a boy-genius). Nathan lives in Seattle, Washington and
while not being a student at University of Washington he consults for
Unspace Interactive and Microsoft.
If you use this software, you must pay Hampton a compliment. And
buy Nathan some jelly beans. Maybe pet a kitten. Yeah. Pet that kitty.
Some of the work on Haml was supported by Unspace Interactive.
Beyond that, the implementation is licensed under the MIT License.
Ok, fine, I guess that means compliments aren't *required*.