Sha256: 2c01e04be4ccf52311262bf825eccb00885470a5e3b777b4a9caefa10f911872
Contents?: true
Size: 459 Bytes
Versions: 11
Compression:
Stored size: 459 Bytes
Contents
# [tag\_spec.rb:271](/spec/hamlit/engine/tag_spec.rb#L271) ## Input ```haml %div< #{'hello'} world ``` ## Output ### Haml ```html <div>helloworld</div> ``` ### Faml, Hamlit ```html <div>hello world</div> ``` # [tag\_spec.rb:282](/spec/hamlit/engine/tag_spec.rb#L282) ## Input ```haml .bar< - 1.times do = '1' = '2' ``` ## Output ### Haml ```html <div class='bar'>12</div> ``` ### Faml, Hamlit ```html <div class='bar'>1 2</div> ```
Version data entries
11 entries across 11 versions & 1 rubygems