# [./spec/render/multiline_spec.rb:23](../../../spec/render/multiline_spec.rb#L23) ## Input ```haml %p foo | bar | baz | ``` ## Faml, Haml ```html

foo bar baz

``` ## Hamlit ```html

foo bar baz

``` # [./spec/render/multiline_spec.rb:48](../../../spec/render/multiline_spec.rb#L48) ## Input ```haml :javascript hello | world | = __LINE__ ``` ## Faml, Haml ```html 4 ``` ## Hamlit ```html 2 ```