# Haml (XHTML Abstraction Markup Language) * Table of contents {:toc} Haml is a markup language that's used to cleanly and simply describe the XHTML of any web document, without the use of inline code. Haml functions as a replacement for inline page templating systems such as PHP, ERB, and ASP. However, Haml avoids the need for explicitly coding XHTML into the template, because it is actually an abstract description of the XHTML, with some code to generate dynamic content. ## Features * Whitespace active * Well-formatted markup * DRY * Follows CSS conventions * Integrates Ruby code * Implements Rails templates with the .haml extension ## Using Haml Haml can be used in three ways: as a command-line tool, as a plugin for Ruby on Rails, and as a standalone Ruby module. The first step for all of these is to install the Haml gem: gem install haml To run Haml from the command line, just use haml input.haml output.html Use `haml --help` for full documentation. ### Rails/Merb Plugin {#plugin} To enable Haml as a Rails plugin, run haml --rails path/to/rails/app Once it's installed, all view files with the `".html.haml"` extension will be compiled using Haml. Haml is enabled by default in Merb. You can access instance variables in Haml templates the same way you do in ERB templates. Helper methods are also available in Haml templates. For example (this example uses Rails, but the principle for Merb is the same): # file: app/controllers/movies_controller.rb class MoviesController < ApplicationController def index @title = "Teen Wolf" end end -# file: app/views/movies/index.haml #content .title %h1= @title = link_to 'Home', home_url may be compiled to:

Teen Wolf

Home
#### Rails XSS Protection Haml supports Rails' XSS protection scheme, which was introduced in Rails 2.3.5+ and is enabled by default in 3.0.0+. If it's enabled, Haml's [`:escape_html`](#escape_html-option) option is set to `true` by default - like in ERB, all strings printed to a Haml template are escaped by default. Also like ERB, strings marked as HTML safe are not escaped. Haml also has [its own syntax for printing a raw string to the template](#unescaping_html). If the `:escape_html` option is set to false when XSS protection is enabled, Haml doesn't escape Ruby strings by default. However, if a string marked HTML-safe is passed to [Haml's escaping syntax](#escaping_html), it won't be escaped. Finally, all the {file:Haml/Helpers.html Haml helpers} that return strings that are known to be HTML safe are marked as such. In addition, string input is escaped unless it's HTML safe. ### Ruby Module Haml can also be used completely separately from Rails and ActionView. To do this, install the gem with RubyGems: gem install haml You can then use it by including the "haml" gem in Ruby code, and using {Haml::Engine} like so: engine = Haml::Engine.new("%p Haml code!") engine.render #=> "

Haml code!

\n" ### Options Options can be set by setting the {Haml::Template#options Haml::Template.options} hash in `environment.rb` in Rails... Haml::Template.options[:format] = :html5 ...or by setting the `Merb::Plugin.config[:haml]` hash in `init.rb` in Merb... Merb::Plugin.config[:haml][:format] = :html5 ...or by passing an options hash to {Haml::Engine#initialize}. Available options are: {#format-option} `:format` : Determines the output format. The default is `:xhtml`. Other options are `:html4` and `:html5`, which are identical to `:xhtml` except there are no self-closing tags, the XML prolog is ignored and correct DOCTYPEs are generated. {#escape_html-option} `:escape_html` : Sets whether or not to escape HTML-sensitive characters in script. If this is true, `=` behaves like [`&=`](#escaping_html); otherwise, it behaves like [`!=`](#unescaping_html). Note that if this is set, `!=` should be used for yielding to subtemplates and rendering partials. See also [Escaping HTML](#escaping_html) and [Unescaping HTML](#unescaping_html) Defaults to false. {#ugly-option} `:ugly` : If set to `true`, Haml makes no attempt to properly indent or format the HTML output. This causes the rendering to be done much quicker than it would otherwise, but makes viewing the source unpleasant. Defaults to `false`, but is set to `true` in production for Rails. {#suppress_eval-option} `:suppress_eval` : Whether or not attribute hashes and Ruby scripts designated by `=` or `~` should be evaluated. If this is `true`, said scripts are rendered as empty strings. Defaults to `false`. {#attr_wrapper-option} `:attr_wrapper` : The character that should wrap element attributes. This defaults to `'` (an apostrophe). Characters of this type within the attributes will be escaped (e.g. by replacing them with `'`) if the character is an apostrophe or a quotation mark. {#filename-option} `:filename` : The name of the Haml file being parsed. This is only used as information when exceptions are raised. This is automatically assigned when working through ActionView, so it's really only useful for the user to assign when dealing with Haml programatically. {#line-option} `:line` : The line offset of the Haml template being parsed. This is useful for inline templates, similar to the last argument to `Kernel#eval`. {#autoclose-option} `:autoclose` : A list of tag names that should be automatically self-closed if they have no content. Defaults to `['meta', 'img', 'link', 'br', 'hr', 'input', 'area', 'param', 'col', 'base']`. {#preserve-option} `:preserve` : A list of tag names that should automatically have their newlines preserved using the {Haml::Helpers#preserve} helper. This means that any content given on the same line as the tag will be preserved. For example, `%textarea= "Foo\nBar"` compiles to ``. Defaults to `['textarea', 'pre']`. See also [Whitespace Preservation](#whitespace_preservation). {#encoding-option} `:encoding` : The encoding to use for the HTML output. Only available in Ruby 1.9 or higher. This can be a string or an `Encoding` Object. Note that Haml **does not** automatically re-encode Ruby values; any strings coming from outside the application should be converted before being passed into the Haml template. Defaults to `Encoding.default_internal` or, if that's not set, `"utf-8"`. ## Plain Text A substantial portion of any HTML document is its content, which is plain old text. Any Haml line that's not interpreted as something else is taken to be plain text, and passed through unmodified. For example: %gee %whiz Wow this is cool! is compiled to: Wow this is cool! Note that HTML tags are passed through unmodified as well. If you have some HTML you don't want to convert to Haml, or you're converting a file line-by-line, you can just include it as-is. For example: %p
Blah!
is compiled to:

Blah!

### Escaping: `\` The backslash character escapes the first character of a line, allowing use of otherwise interpreted characters as plain text. For example: %title = @title \= @title is compiled to: MyPage = @title ## HTML Elements ### Element Name: `%` The percent character is placed at the beginning of a line. It's followed immediately by the name of an element, then optionally by modifiers (see below), a space, and text to be rendered inside the element. It creates an element in the form of ``. For example: %one %two %three Hey there is compiled to: Hey there Any string is a valid element name; Haml will automatically generate opening and closing tags for any element. ### Attributes: `{}` or `()` {#attributes} Brackets represent a Ruby hash that is used for specifying the attributes of an element. It is literally evaluated as a Ruby hash, so logic will work in it and local variables may be used. Quote characters within the attribute will be replaced by appropriate escape sequences. The hash is placed after the tag is defined. For example: %html{:xmlns => "http://www.w3.org/1999/xhtml", "xml:lang" => "en", :lang => "en"} is compiled to: Attribute hashes can also be stretched out over multiple lines to accomidate many attributes. However, newlines may only be placed immediately after commas. For example: %script{:type => "text/javascript", :src => "javascripts/script_#{2 + 7}"} is compiled to: #### HTML-style Attributes: `()` Haml also supports a terser, less Ruby-specific attribute syntax based on HTML's attributes. These are used with parentheses instead of brackets, like so: %html(xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en") Ruby variables can be used by omitting the quotes. Local variables or instance variables can be used. For example: %a(title=@title href=href) Stuff This is the same as: %a{:title => @title, :href => href} Stuff Because there are no commas separating attributes, though, more complicated expressions aren't allowed. For those you'll have to use the `{}` syntax. You can, however, use both syntaxes together: %a(title=@title){:href => @link.href} Stuff You can also use `#{}` interpolation to insert complicated expressions in a HTML-style attribute: %span(class="widget_#{@widget.number}") HTML-style attributes can be stretched across multiple lines just like hash-style attributes: %script(type="text/javascript" src="javascripts/script_#{2 + 7}") #### Attribute Methods A Ruby method call that returns a hash can be substituted for the hash contents. For example, {Haml::Helpers} defines the following method: def html_attrs(lang = 'en-US') {:xmlns => "http://www.w3.org/1999/xhtml", 'xml:lang' => lang, :lang => lang} end This can then be used in Haml, like so: %html{html_attrs('fr-fr')} This is compiled to: You can use as many such attribute methods as you want by separating them with commas, like a Ruby argument list. All the hashes will me merged together, from left to right. For example, if you defined def hash1 {:bread => 'white', :filling => 'peanut butter and jelly'} end def hash2 {:bread => 'whole wheat'} end then %sandwich{hash1, hash2, :delicious => true}/ would compile to: Note that the Haml attributes list has the same syntax as a Ruby method call. This means that any attribute methods must come before the hash literal. Attribute methods aren't supported for HTML-style attributes. #### Boolean Attributes Some attributes, such as "checked" for `input` tags or "selected" for `option` tags, are "boolean" in the sense that their values don't matter - it only matters whether or not they're present. In HTML (but not XHTML), these attributes can be written as To do this in Haml using hash-style attributes, just assign a Ruby `true` value to the attribute: %input{:selected => true} In XHTML, the only valid value for these attributes is the name of the attribute. Thus this will render in XHTML as To set these attributes to false, simply assign them to a Ruby false value. In both XHTML and HTML %input{:selected => false} will just render as HTML-style boolean attributes can be written just like HTML: %input(selected) or using `true` and `false`: %input(selected=true) ### Class and ID: `.` and `#` The period and pound sign are borrowed from CSS. They are used as shortcuts to specify the `class` and `id` attributes of an element, respectively. Multiple class names can be specified in a similar way to CSS, by chaining the class names together with periods. They are placed immediately after the tag and before an attributes hash. For example: %div#things %span#rice Chicken Fried %p.beans{ :food => 'true' } The magical fruit %h1.class.otherclass#id La La La is compiled to:
Chicken Fried

The magical fruit

La La La

And, #content .articles .article.title Doogie Howser Comes Out .article.date 2006-11-05 .article.entry Neil Patrick Harris would like to dispel any rumors that he is straight is compiled to:
Doogie Howser Comes Out
2006-11-05
Neil Patrick Harris would like to dispel any rumors that he is straight
#### Implicit Div Elements Because divs are used so often, they're the default elements. If you only define a class and/or id using `.` or `#`, a div is automatically used. For example: #collection .item .description What a cool item! is the same as: %div#collection %div.item %div.description What a cool item! and is compiled to:
What a cool item!
### Self-Closing Tags: `/` The forward slash character, when placed at the end of a tag definition, causes the tag to be self-closed. For example: %br/ %meta{'http-equiv' => 'Content-Type', :content => 'text/html'}/ is compiled to:
Some tags are automatically closed, as long as they have no content. `meta`, `img`, `link`, `script`, `br`, and `hr` tags are closed by default. This list can be customized by setting the [`:autoclose`](#autoclose-option) option. For example: %br %meta{'http-equiv' => 'Content-Type', :content => 'text/html'} is also compiled to:
### Whitespace Removal: `>` and `<` `>` and `<` give you more control over the whitespace near a tag. `>` will remove all whitespace surrounding a tag, while `<` will remove all whitespace immediately within a tag. You can think of them as alligators eating the whitespace: `>` faces out of the tag and eats the whitespace on the outside, and `<` faces into the tag and eats the whitespace on the inside. They're placed at the end of a tag definition, after class, id, and attribute declarations but before `/` or `=`. For example: %blockquote< %div Foo! is compiled to:
Foo!
And: %img %img> %img is compiled to: And: %p<= "Foo\nBar" is compiled to:

Foo Bar

And finally: %img %pre>< foo bar %img is compiled to:
foo
    bar
### Object Reference: `[]` Square brackets follow a tag definition and contain a Ruby object that is used to set the class and id of that tag. The class is set to the object's class (transformed to use underlines rather than camel case) and the id is set to the object's class, followed by its id. Because the id of an object is normally an obscure implementation detail, this is most useful for elements that represent instances of Models. Additionally, the second argument (if present) will be used as a prefix for both the id and class attributes. For example: # file: app/controllers/users_controller.rb def show @user = CrazyUser.find(15) end -# file: app/views/users/show.haml %div[@user, :greeting] %bar[290]/ Hello! is compiled to:
Hello!
If you require that the class be something other than the underscored object's class, you can implement the `haml_object_ref` method on the object. # file: app/models/crazy_user.rb class CrazyUser < ActiveRecord::Base def haml_object_ref "a_crazy_user" end end -# file: app/views/users/show.haml %div[@user] Hello! is compiled to:
Hello!
## Doctype: `!!!` When describing HTML documents with Haml, you can have a document type or XML prolog generated automatically by including the characters `!!!`. For example: !!! XML !!! %html %head %title Myspace %body %h1 I am the international space station %p Sign my guestbook is compiled to: Myspace

I am the international space station

Sign my guestbook

You can also specify the version and type of XHTML after the `!!!`. XHTML 1.0 Strict, Transitional, and Frameset and XHTML 1.1 are supported. The default version is 1.0 and the default type is Transitional. For example: !!! 1.1 is compiled to: and !!! Strict is compiled to: while !!! Basic is compiled to: and !!! Mobile is compiled to: If you're not using the UTF-8 character set for your document, you can specify which encoding should appear in the XML prolog in a similar way. For example: !!! XML iso-8859-1 is compiled to: ## Comments Haml supports two sorts of comments: those that show up in the HTML output and those that don't. ### HTML Comments: `/` The forward slash character, when placed at the beginning of a line, wraps all text after it in an HTML comment. For example: %peanutbutterjelly / This is the peanutbutterjelly element I like sandwiches! is compiled to: I like sandwiches! The forward slash can also wrap indented sections of code. For example: / %p This doesn't render... %div %h1 Because it's commented out! is compiled to: #### Conditional Comments: `/[]` You can also use [Internet Explorer conditional comments](http://www.quirksmode.org/css/condcom.html) by enclosing the condition in square brackets after the `/`. For example: /[if IE] %a{ :href => 'http://www.mozilla.com/en-US/firefox/' } %h1 Get Firefox is compiled to: ### Haml Comments: `-#` The hyphen followed immediately by the pound sign signifies a silent comment. Any text following this isn't rendered in the resulting document at all. For example: %p foo -# This is a comment %p bar is compiled to:

foo

bar

You can also nest text beneath a silent comment. None of this text will be rendered. For example: %p foo -# This won't be displayed Nor will this %p bar is compiled to:

foo

bar

## Ruby Evaluation ### Inserting Ruby: `=` The equals character is followed by Ruby code. This code is evaluated and the output is inserted into the document. For example: %p = ['hi', 'there', 'reader!'].join " " = "yo" is compiled to:

hi there reader! yo

If the [`:escape_html`](#escape_html-option) option is set, `=` will sanitize any HTML-sensitive characters generated by the script. For example: = '' would be compiled to <script>alert("I'm evil!");</script> `=` can also be used at the end of a tag to insert Ruby code within that tag. For example: %p= "hello" would be compiled to

hello

Note that it's illegal to nest code within a tag that ends with `=`. ### Running Ruby: `-` The hyphen character is also followed by Ruby code. This code is evaluated but *not* inserted into the document. **It is not recommended that you use this widely; almost all processing code and logic should be restricted to the Controller, the Helper, or partials.** For example: - foo = "hello" - foo << " there" - foo << " you!" %p= foo is compiled to:

hello there you!

#### Ruby Blocks Ruby blocks, like XHTML tags, don't need to be explicitly closed in Haml. Rather, they're automatically closed, based on indentation. A block begins whenever the indentation is increased after a Ruby evaluation command. It ends when the indentation decreases (as long as it's not an `else` clause or something similar). For example: - (42...47).each do |i| %p= i %p See, I can count! is compiled to:

42

43

44

45

46

Another example: %p - case 2 - when 1 = "1!" - when 2 = "2?" - when 3 = "3." is compiled to:

2?

### Whitespace Preservation: `~` {#tilde} `~` works just like `=`, except that it runs {Haml::Helpers#find\_and\_preserve} on its input. For example, ~ "Foo\n
Bar\nBaz
" is the same as: = find_and_preserve("Foo\n
Bar\nBaz
") and is compiled to: Foo
Bar
Baz
See also [Whitespace Preservation](#whitespace_preservation). ### Ruby Interpolation: `#{}` Ruby code can also be interpolated within plain text using `#{}`, similarly to Ruby string interpolation. For example, %p This is #{h quality} cake! is the same as %p= "This is the #{h quality} cake!" and might compile to

This is scrumptious cake!

Backslashes can be used to escape `#{` strings, but they don't act as escapes anywhere else in the string. For example: %p Look at \\#{h word} lack of backslash: \#{foo} And yon presence thereof: \{foo} might compile to

Look at \yon lack of backslash: #{foo} And yon presence thereof: \{foo}

Interpolation can also be used within [filters](#filters). For example: :javascript $(document).ready(function() { alert(#{@message.to_json}); }); might compile to ### Escaping HTML: `&=` {#escaping_html} An ampersand followed by one or two equals characters evaluates Ruby code just like the equals without the ampersand, but sanitizes any HTML-sensitive characters in the result of the code. For example: &= "I like cheese & crackers" compiles to I like cheese & crackers If the [`:escape_html`](#escape_html-option) option is set, `&=` behaves identically to `=`. `&` can also be used on its own so that `#{}` interpolation is escaped. For example, & I like #{"cheese & crackers"} compiles to I like cheese & crackers ### Unescaping HTML: `!=` {#unescaping_html} An exclamation mark followed by one or two equals characters evaluates Ruby code just like the equals would, but never sanitizes the HTML. By default, the single equals doesn't sanitize HTML either. However, if the [`:escape_html`](#escape_html-option) option is set, `=` will sanitize the HTML, but `!=` still won't. For example, if `:escape_html` is set: = "I feel !" != "I feel !" compiles to I feel <strong>! I feel ! `!` can also be used on its own so that `#{}` interpolation is unescaped. For example, ! I feel #{""}! compiles to I feel ! ## Filters {#filters} The colon character designates a filter. This allows you to pass an indented block of text as input to another filtering program and add the result to the output of Haml. The syntax is simply a colon followed by the name of the filter. For example, %p :markdown Textile ======= Hello, *World* is compiled to

Textile

Hello, World

Filters can have Ruby code interpolated with `#{}`. For example, - flavor = "raspberry" #content :textile I *really* prefer _#{h flavor}_ jam. is compiled to

I really prefer raspberry jam.

Currently, filters ignore the [`:escape_html`](#escape_html-option) option. This means that `#{}` interpolation within filters is never HTML-escaped. Haml has the following filters defined: {#plain-filter} ### `:plain` Does not parse the filtered text. This is useful for large blocks of text without HTML tags, when you don't want lines starting with `.` or `-` to be parsed. {#javascript-filter} ### `:javascript` Surrounds the filtered text with `