Sha256: 19f11485f1c751d0fd0918bb3703a1663933bb7dafcc2909e0604ef652dbee44

Contents?: true

Size: 571 Bytes

Versions: 1

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
```html
&nbsp;
&nbsp;
!hello
!hello

```

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

```

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hamlit-1.6.0 doc/engine/text.md