1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00
haml--haml/benchmark/class_attribute.haml
2015-11-14 00:04:58 +09:00

11 lines
256 B
Text

%div{ class: 'content active' }
- c = %w[content active]
%div{ class: c }
- hash = { class: %w[content active] }
%div{ hash }
.book{ class: 'content active' }
- c = %w[content active]
.book{ class: c }
- hash = { class: %w[content active] }
.book{ hash }