# [./spec/render/newline_spec.rb:19](../../../spec/render/newline_spec.rb#L19)
## Input
```haml
%div
- 2.times do |i|
%span>= i
```
## Faml, Haml
```html
01
```
## Hamlit
```html
01
```
# [./spec/render/newline_spec.rb:27](../../../spec/render/newline_spec.rb#L27)
## Input
```haml
%div
/
- 2.times do |i|
%span>= i
```
## Faml, Haml
```html
```
## Hamlit
```html
```
# [./spec/render/newline_spec.rb:36](../../../spec/render/newline_spec.rb#L36)
## Input
```haml
%div
/ [if IE]
- 2.times do |i|
%span>= i
```
## Faml, Haml
```html
```
## Hamlit
```html
```
# [./spec/render/newline_spec.rb:71](../../../spec/render/newline_spec.rb#L71)
## Input
```haml
%div{foo: :bar} hello
```
## Faml, Haml
```html
hello
```
## Hamlit (Error)
```html
Generator supports only core expressions - found ["b>{foo: :bar}"]
```
# [./spec/render/newline_spec.rb:71](../../../spec/render/newline_spec.rb#L71)
## Input
```haml
%div(foo="bar") hello
```
## Faml, Haml
```html
hello
```
## Hamlit (Error)
```html
Generator supports only core expressions - found ["b>"]
```