Sha256: ff81098a275a5fb2a3ad8b550dfad51b581b7ee5943438978dcf66db3dea4274

Contents?: true

Size: 571 Bytes

Versions: 5

Compression:

Stored size: 571 Bytes

Contents

# [text\_spec.rb:15](/spec/hamlit/engine/text_spec.rb#L15)
## Input
```haml
.
.*
..
#
#+
##

```

## Output
### Haml
```html
Haml::SyntaxError: Illegal element: classes and ids must have values.
```

### Faml
```html
<div></div>
<div>*</div>
<div></div>
<div></div>
<div>+</div>
<div></div>

```

### Hamlit
```html
.
.*
..
#
#+
##

```


# [text\_spec.rb:118](/spec/hamlit/engine/text_spec.rb#L118)
## Input
```haml
&nbsp;
\&nbsp;
!hello
\!hello

```

## Output
### Haml, Hamlit
```html
&nbsp;
&nbsp;
!hello
!hello

```

### Faml
```html
nbsp;
&nbsp;
hello
!hello

```

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
hamlit-1.6.5 doc/engine/text.md
hamlit-1.6.4 doc/engine/text.md
hamlit-1.6.3 doc/engine/text.md
hamlit-1.6.2 doc/engine/text.md
hamlit-1.6.1 doc/engine/text.md