mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
11 lines
256 B
Text
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 }
|