incompatibilities/spec/render/attribute_spec.md in faml-0.2.14 vs incompatibilities/spec/render/attribute_spec.md in faml-0.2.15
- old
+ new
@@ -90,28 +90,10 @@
```
# [./spec/render/attribute_spec.rb:65](../../../spec/render/attribute_spec.rb#L65)
## Input
```haml
-%span.foo{class: :foo}
-```
-
-## Faml, Haml
-```html
-<span class='foo'></span>
-
-```
-
-## Hamlit
-```html
-<span class='foo foo'></span>
-
-```
-
-# [./spec/render/attribute_spec.rb:65](../../../spec/render/attribute_spec.rb#L65)
-## Input
-```haml
%span.foo{class: "foo bar"}
```
## Faml, Haml
```html
@@ -121,49 +103,9 @@
## Hamlit
```html
<span class='foo bar foo'></span>
-```
-
-# [./spec/render/attribute_spec.rb:65](../../../spec/render/attribute_spec.rb#L65)
-## Input
-```haml
-%span.foo{class: %w[foo bar]}
-```
-
-## Faml, Haml
-```html
-<span class='bar foo'></span>
-
-```
-
-## Hamlit
-```html
-<span class='bar foo foo'></span>
-
-```
-
-# [./spec/render/attribute_spec.rb:71](../../../spec/render/attribute_spec.rb#L71)
-## Input
-```haml
-%span.#foo{id: :bar} hello
-```
-
-## Faml
-```html
-<span id='foo_bar'>hello</span>
-
-```
-
-## Haml (Error)
-```html
-Illegal element: classes and ids must have values.
-```
-
-## Hamlit (Error)
-```html
-Expected to scan (?-mix:[a-zA-Z0-9_-]+) but got nil
```
# [./spec/render/attribute_spec.rb:75](../../../spec/render/attribute_spec.rb#L75)
## Input
```haml