HTML Abstraction Markup Language - A Markup Haiku
http://haml.info
Haml is a templating engine for HTML. It's designed to make it both easier and more pleasant to write HTML documents, by eliminating redundancy, reflecting the underlying structure that the document represents, and providing an elegant syntax that's both powerful and easy to understand.
After you write some Haml, you can run
to compile it to HTML. For more information on these commands, check out
To use Haml programatically, check out the YARD documentation.
Haml 5 will require Rails version 4.0 or later. If you are using Rails 3.x, you should use Haml version 4.0.x:
If you'd like to replace Rails's Erb-based generators with Haml, add
haml-rails to your Gemfile as well.
No end-tag is needed; Haml handles that automatically. If you prefer HTML-style
attributes, you can also use:
Adding
In fact, when you're using the
becomes
Haml uses indentation to bring the individual elements to represent the HTML
structure. A tag's children are indented beneath than the parent tag. Again, a
closing tag is automatically added. For example:
becomes:
You can also put plain text as a child of an element:
It's also possible to embed Ruby code into Haml documents. An equals sign,
Haml provides far more tools than those presented here. Check out the reference
documentation
for full details.
from https://github.com/haml/haml
Haml is a templating engine for HTML. It's designed to make it both easier and more pleasant to write HTML documents, by eliminating redundancy, reflecting the underlying structure that the document represents, and providing an elegant syntax that's both powerful and easy to understand.
Basic Usage
Haml can be used from the command line or as part of a Ruby web framework. The first step is to install the gem:gem install haml
haml document.haml
haml --help
Using Haml with Rails
To use Haml with Rails, simply add Haml to your Gemfile and runbundle
.gem 'haml'
gem 'haml', '~> 4.0.5'
Formatting
The most basic element of Haml is a shorthand for creating HTML:%tagname{:attr1 => 'value1', :attr2 => 'value2'} Contents
%tagname(attr1='value1' attr2='value2') Contents
class
and id
attributes is even easier. Haml uses the same syntax as
the CSS that styles the document:%tagname#id.class
<div>
tag, it becomes even easier. Because
<div>
is such a common element, a tag without a name defaults to a div. So#foo Hello!
<div id='foo'>Hello!</div>
%ul
%li Salt
%li Pepper
<ul>
<li>Salt</li>
<li>Pepper</li>
</ul>
%p
Hello,
World!
=
,
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!"
Indentation
Haml's indentation can be made up of one or more tabs or spaces. However, indentation must be consistent within a given document. Hard tabs and spaces can't be mixed, and the same number of tabs or spaces must be used throughout.from https://github.com/haml/haml
No comments:
Post a Comment