Sha256: 055cf9b1e2db2d205e7c9eb4a31ca76d0c929f6fdb47eef5bc12fc735d3e6fbd

Contents?: true

Size: 782 Bytes

Versions: 16

Compression:

Stored size: 782 Bytes

Contents

# [./spec/render/unescape_spec.rb:17](../../../spec/render/unescape_spec.rb#L17)
## Input
```haml
!<p>hello</p>
```

## Faml
```html
<p>hello</p>

```

## Haml, Hamlit
```html
!<p>hello</p>

```

# [./spec/render/unescape_spec.rb:33](../../../spec/render/unescape_spec.rb#L33)
## Input
```haml
!~ "<p>hello\n<pre>pre\nworld</pre></p>"
```

## Faml, Haml
```html
<p>hello
<pre>pre&#x000A;world</pre></p>

```

## Hamlit
```html
!~ "<p>hello\n<pre>pre\nworld</pre></p>"

```

# [./spec/render/unescape_spec.rb:33](../../../spec/render/unescape_spec.rb#L33)
## Input
```haml
%span!~ "<p>hello\n<pre>pre\nworld</pre></p>"
```

## Faml, Haml
```html
<span><p>hello
<pre>pre&#x000A;world</pre></p></span>

```

## Hamlit
```html
<span>~ "<p>hello\n<pre>pre\nworld</pre></p>"</span>

```

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
faml-0.6.0 incompatibilities/spec/render/unescape_spec.md
faml-0.5.1 incompatibilities/spec/render/unescape_spec.md
faml-0.5.0 incompatibilities/spec/render/unescape_spec.md
faml-0.4.2 incompatibilities/spec/render/unescape_spec.md
faml-0.4.1 incompatibilities/spec/render/unescape_spec.md
faml-0.4.0 incompatibilities/spec/render/unescape_spec.md
faml-0.3.6 incompatibilities/spec/render/unescape_spec.md
faml-0.3.5 incompatibilities/spec/render/unescape_spec.md
faml-0.3.4 incompatibilities/spec/render/unescape_spec.md
faml-0.3.3 incompatibilities/spec/render/unescape_spec.md
faml-0.3.2 incompatibilities/spec/render/unescape_spec.md
faml-0.3.1 incompatibilities/spec/render/unescape_spec.md
faml-0.3.0 incompatibilities/spec/render/unescape_spec.md
faml-0.2.16 incompatibilities/spec/render/unescape_spec.md
faml-0.2.15 incompatibilities/spec/render/unescape_spec.md
faml-0.2.14 incompatibilities/spec/render/unescape_spec.md