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

Version Path
hamlit-1.7.2 doc/engine/tag.md
hamlit-1.7.1 doc/engine/tag.md
hamlit-1.7.0 doc/engine/tag.md
hamlit-1.6.7 doc/engine/tag.md
hamlit-1.6.6 doc/engine/tag.md
hamlit-1.6.5 doc/engine/tag.md
hamlit-1.6.4 doc/engine/tag.md
hamlit-1.6.3 doc/engine/tag.md
hamlit-1.6.2 doc/engine/tag.md
hamlit-1.6.1 doc/engine/tag.md
hamlit-1.6.0 doc/engine/tag.md