Sha256: d9a243ff95959593a17212693495210bc9551f86e7d99ac68572c611d93fe22a

Contents?: true

Size: 539 Bytes

Versions: 9

Compression:

Stored size: 539 Bytes

Contents

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

```

## Output
### Haml, Hamlit
```html
<p>
<a></a>
</p>

```

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


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

```

## Output
### Haml, Hamlit
```html
<p>
<span>
foo
</span>
</p>

```

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

Version data entries

9 entries across 9 versions & 1 rubygems

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