CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 08 Aug 2025 01:36:31 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090625194326
location: https://web.archive.org/web/20090625194326/https://github.com/nex3/haml/tree/1.7.1
server-timing: captures_list;dur=0.484006, exclusion.robots;dur=0.021652, exclusion.robots.policy;dur=0.012883, esindex;dur=0.011243, cdx.remote;dur=121.095737, LoadShardBlock;dur=277.658539, PetaboxLoader3.datanode;dur=97.667408, PetaboxLoader3.resolve;dur=46.547716
x-app-server: wwwb-app201
x-ts: 302
x-tr: 422
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app201; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Fri, 08 Aug 2025 01:36:32 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.6.26
x-archive-orig-date: Thu, 25 Jun 2009 19:43:25 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-x-runtime: 278ms
x-archive-orig-etag: "4031741e58a62535225765d63d4d9da6"
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-content-length: 32192
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Thu, 25 Jun 2009 19:43:26 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Mon, 22 Sep 2008 14:51:42 GMT", ; rel="prev memento"; datetime="Sun, 04 Jan 2009 15:42:04 GMT", ; rel="memento"; datetime="Thu, 25 Jun 2009 19:43:26 GMT", ; rel="next memento"; datetime="Thu, 27 Aug 2009 22:06:31 GMT", ; rel="last memento"; datetime="Fri, 16 Jul 2010 02:52:51 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_10_20090625183739_crawl102-c/52_10_20090625194325_crawl101.arc.gz
server-timing: captures_list;dur=0.538258, exclusion.robots;dur=0.025153, exclusion.robots.policy;dur=0.014876, esindex;dur=0.011827, cdx.remote;dur=18.955705, LoadShardBlock;dur=119.081270, PetaboxLoader3.datanode;dur=109.545142, PetaboxLoader3.resolve;dur=135.098289, load_resource;dur=301.179384
x-app-server: wwwb-app201
x-ts: 200
x-tr: 501
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
nex3's haml at 1.7.1 - GitHub
This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (

This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (

Description: | HTML Abstraction Markup Language - A Markup Haiku edit |
Homepage: | https://haml.hamptoncatlin.com edit |
Public Clone URL: |
git://github.com/nex3/haml.git
Give this clone URL to anyone.
git clone git://github.com/nex3/haml.git
|
Your Clone URL: |
Use this clone URL yourself.
git clone git@github.com:nex3/haml.git
|

nex3 (author)
Wed Aug 22 20:12:00 -0700 2007
haml /
name | age | message | |
---|---|---|---|
![]() |
MIT-LICENSE | Loading commit data... ![]() |
|
![]() |
README | ||
![]() |
Rakefile | ||
![]() |
TODO | ||
![]() |
VERSION | ||
![]() |
bin/ | ||
![]() |
extra/ | ||
![]() |
init.rb | ||
![]() |
lib/ | ||
![]() |
test/ |
= Haml and Sass Haml and Sass are templating engines for the two most common types of documents on the web: HTML and CSS, respectively. They are designed to make it both easier and more pleasant to code HTML and CSS documents, by eliminating redundancy, reflecting the underlying structure that the document represents, and providing elegant, easily understandable, and powerful syntax. == Using There are two ways to use Haml and Sass. The easiest is as a Rails plugin: Simply type <tt>./script/plugin install https://hamptoncatlin.com/haml/stable</tt> and both Haml and Sass will be installed. Views with the <tt>.haml</tt> extension will automatically use Haml. Sass is a little more complicated; <tt>.sass</tt> files should be placed in public/stylesheets/sass, where they'll be automatically compiled to corresponding CSS files in public/stylesheets when needed (the Sass template directory is customizable... see the Sass module docs for details). == Formatting === Haml The most basic element of Haml is a shorthand for creating HTML tags: %tagname{ :attr1 => 'value1', :attr2 => 'value2' } Contents No end-tag is needed; Haml handles that automatically. Adding <tt>class</tt> and <tt>id</tt> attributes is even easier. Haml uses the same syntax as the CSS that styles the document: %tagname#id.class In fact, when you're using the <tt><div></tt> tag, it becomes <em>even easier</em>. Because <tt><div></tt> is such a common element, a tag without a name defaults to a div. So #foo Hello! becomes <div id='foo'>Hello!</div> 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: <ul> <li>Salt</li> <li>Pepper</li> </ul> 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, <tt>=</tt>, will output the result of the code. A hyphen, <tt>-</tt>, will run the code but not output the result. You can even use control statements like <tt>if</tt> and <tt>while</tt>: %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; } A comprehensive list of features is in the documentation for the Sass module. == Authors Haml and Sass are designed by Hampton Catlin (hcatlin). Help with the Ruby On Rails implementation and much of the documentation by Jeff Hardy (packagethief). Nathan Weizenbaum (Nex3) contributed the buffered-engine code to Haml, along with many other enhancements (including the silent-line syntax: "-"). He continues to actively work on both Haml and Sass. If you use this software, you must pay Hampton a compliment. Say something nice about it. Beyond that, the implementation is licensed under the MIT License. Ok, fine, I guess that means compliments aren't *required*.
This feature is coming soon. Sit tight!