Slim is a template language whose goal is reduce the syntax to the essential parts without becoming cryptic.
Slim is a Rails 3, Ruby 1.9.2 templating option. I do not intend on making a Rails 2.x compatible version. I don't think it would be difficult, so if you want it, I will happily accept contributions with tests.
Simply put, I wanted to see if I could pull of a template language that required minimum use of special characters and at least matched Erb's speed. Yes, Slim is speedy.
I actually like the indentation and tag closing nature of Haml. I don't like the overall result of the markup though, it's a little cryptic. I'm sure, with practice, people read it like the Matrix, but it's never suited me. So why not try to improve it for me? There may be one or two other people with the same thoughts.
So here's what I came up with:
! doctype html
html
head
title Slim Examples
meta name="keywords" content="template language"
body
h1 Markup examples
div id="content" class="example1"
p Nest by indentation
= yield
- unless items.empty?
table
- for item in items do
tr
td
= item.name
td
= item.price
- else
p No items found
div id="footer"
` Copyright © 2010 Andrew Stone
= render partial: 'tracking_code'
script
` $(content).do_something();
# Either start on the same line as the tag
body
h1 id="headline" Welcome to my site.
# Or nest it. __Note:__ Must use backtick (with following space) to escape processing
body
h1 id="headline"
` Welcome to my site.
# Can make the call on the same line
body
h1 id="headline" = page_headline
# Or nest it.
body
h1 id="headline"
= page_headline
# Just use standard Ruby interpolation.
body
table
- for user in users do
tr id="user_#{user.id}"
# Use a backtick to start the escape. Each following line that is
# indented greater than the backtick is copied over.
body
p
'
This is a test of the text block.
# The parsed result of the above:
<body><p>This is a test of the text block.</p></body>
# The left margin is set at the indent of the backtick + one space.
# Any additional spaces will be copied over.
body
p
'
This line is on the left margin.
This line will have one space in front of it.
This line will have two spaces in front of it.
And so on...
Please note that all line indicators must be followed by a space
! doctype html renders <!doctype html>