Sha256: 274d91074df42dd4ff5fb01d6fd61111959d0358fe63ea91269af516295c5fa0

Contents?: true

Size: 1.37 KB

Versions: 11

Compression:

Stored size: 1.37 KB

Contents

# [silent\_script\_spec.rb:79](/spec/hamlit/engine/silent_script_spec.rb#L79)
## Input
```haml
%span
  - if false
  - elsif false

```

## Output
### Faml
```html
SyntaxError: (eval):4: syntax error, unexpected end-of-input, expecting keyword_end
; _buf << ("</span>\n".freeze); _buf = _buf.join
                                                ^
```

### Hamlit
```html
<span>
</span>

```


# [silent\_script\_spec.rb:90](/spec/hamlit/engine/silent_script_spec.rb#L90)
## Input
```haml
%span
  - if false
    ng
  - else

```

## Output
### Faml
```html
SyntaxError: (eval):5: syntax error, unexpected end-of-input, expecting keyword_end
; _buf << ("</span>\n".freeze); _buf = _buf.join
                                                ^
```

### Hamlit
```html
<span>
</span>

```


# [silent\_script\_spec.rb:102](/spec/hamlit/engine/silent_script_spec.rb#L102)
## Input
```haml
%span
  - case
  - when false

```

## Output
### Faml
```html
SyntaxError: (eval):4: syntax error, unexpected end-of-input, expecting keyword_end
; _buf << ("</span>\n".freeze); _buf = _buf.join
                                                ^
```

### Hamlit
```html
<span>
</span>

```


# [silent\_script\_spec.rb:190](/spec/hamlit/engine/silent_script_spec.rb#L190)
## Input
```haml
- foo = [',  
     ']
= foo
```

## Output
### Faml
```html
[&quot;,\n     &quot;]

```

### Hamlit
```html
[&quot;, &quot;]

```

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
hamlit-1.7.2 doc/faml/engine/silent_script.md
hamlit-1.7.1 doc/faml/engine/silent_script.md
hamlit-1.7.0 doc/faml/engine/silent_script.md
hamlit-1.6.7 doc/faml/engine/silent_script.md
hamlit-1.6.6 doc/faml/engine/silent_script.md
hamlit-1.6.5 doc/faml/engine/silent_script.md
hamlit-1.6.4 doc/faml/engine/silent_script.md
hamlit-1.6.3 doc/faml/engine/silent_script.md
hamlit-1.6.2 doc/faml/engine/silent_script.md
hamlit-1.6.1 doc/faml/engine/silent_script.md
hamlit-1.6.0 doc/faml/engine/silent_script.md