Sha256: 9f5f51796589988277c9c4be27fec9a18d4dec9110068d223417617f339371ef
Contents?: true
Size: 507 Bytes
Versions: 16
Compression:
Stored size: 507 Bytes
Contents
# [./spec/render/multiline_spec.rb:22](../../../spec/render/multiline_spec.rb#L22) ## 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:47](../../../spec/render/multiline_spec.rb#L47) ## Input ```haml :javascript hello | world | = __LINE__ ``` ## Faml, Haml ```html <script> hello | world | </script> 4 ``` ## Hamlit ```html <script> hello world </script> 2 ```
Version data entries
16 entries across 16 versions & 1 rubygems