Sha256: 9ed30e03e738ed0f079e1582e7882182c3c2f45851fc8e29f2337fb78cf37a63
Contents?: true
Size: 507 Bytes
Versions: 11
Compression:
Stored size: 507 Bytes
Contents
# [./spec/render/multiline_spec.rb:23](../../../spec/render/multiline_spec.rb#L23) ## Input ```haml %p foo | bar | baz | ``` ## Faml, Haml ```html <p> foo bar baz </p> ``` ## Hamlit ```html <p> foo bar baz </p> ``` # [./spec/render/multiline_spec.rb:48](../../../spec/render/multiline_spec.rb#L48) ## Input ```haml :javascript hello | world | = __LINE__ ``` ## Faml, Haml ```html <script> hello | world | </script> 4 ``` ## Hamlit ```html <script> hello world </script> 2 ```
Version data entries
11 entries across 11 versions & 1 rubygems