Sha256: 483c51a1f246f8c56df386814f70c4882808f9298e1c33d457ed9305e00cac59

Contents?: true

Size: 527 Bytes

Versions: 9

Compression:

Stored size: 527 Bytes

Contents

# [indent\_spec.rb:3](/spec/hamlit/engine/indent_spec.rb#L3)
## Input
```haml
%p
	%a

```

## Output
### Faml
```html
Faml::IndentTracker::HardTabNotAllowed: Indentation with hard tabs are not allowed :-p
```

### Hamlit
```html
<p>
<a></a>
</p>

```


# [indent\_spec.rb:28](/spec/hamlit/engine/indent_spec.rb#L28)
## Input
```haml
%p
	%span
		foo

```

## Output
### Faml
```html
Faml::IndentTracker::HardTabNotAllowed: Indentation with hard tabs are not allowed :-p
```

### Hamlit
```html
<p>
<span>
foo
</span>
</p>

```

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
hamlit-1.7.2 doc/faml/engine/indent.md
hamlit-1.7.1 doc/faml/engine/indent.md
hamlit-1.7.0 doc/faml/engine/indent.md
hamlit-1.6.7 doc/faml/engine/indent.md
hamlit-1.6.6 doc/faml/engine/indent.md
hamlit-1.6.5 doc/faml/engine/indent.md
hamlit-1.6.4 doc/faml/engine/indent.md
hamlit-1.6.3 doc/faml/engine/indent.md
hamlit-1.6.2 doc/faml/engine/indent.md