1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00
haml--haml/test/haml/templates/helpful.haml
nex3 d7030e9c7d [Haml] Preparse simple attribute hashes, for great speed. Thanks go to Tom Bagby for the initial patch.
git-svn-id: svn://hamptoncatlin.com/haml/trunk@525 7063305b-7217-0410-af8c-cdc13e5119b9
2007-06-02 10:45:24 +00:00

11 lines
309 B
Text

%div[@article]
%h1= @article.title
%div= @article.body
#id[@article] id
.class[@article] class
#id.class[@article] id class
%div{:class => "article full"}[@article]= "boo"
%div{'class' => "article full"}[@article]= "moo"
%div.articleFull[@article]= "foo"
%span[@not_a_real_variable_and_will_be_nil]
Boo