HAML (and SASS) is a markup language that’s used to cleanly and simply describe the HTML of any web document without the use of inline code
It is compiled into XHTML, similarly to ERB, and attempts to fix many flaws in templating engines like explicitly coding HTML into the template.
This module is practically a Python implementation for HAML and SASS, allowing Python websites to use HAML/SASS files.
The main difference between this library and the actual HAML Ruby implementation is that this implementation strives to "compile" into a different template language and let the underlying template engine (like Jinja2 and Django's default) do what they do best.
Requirements:
· regex 0.1.20110524 or higher
Limitations:
· SASS is currently not implemented, but will be in the future.