Sha256: 535726a5cbe966cd36d3e2570cb30185772c45eb64b73ba14b669686462117d9

Contents?: true

Size: 652 Bytes

Versions: 1

Compression:

Stored size: 652 Bytes

Contents

# [./spec/render/filters/sass_spec.rb:4](../../../../spec/render/filters/sass_spec.rb#L4)
## Input
```haml
:sass
  nav
    ul
      margin: 0
      content: "hello"

```

## Faml
```html
<style>
nav ul {
  margin: 0;
  content: "hello"; }
</style>

```

## Haml, Hamlit
```html
<style>
  nav ul {
    margin: 0;
    content: "hello"; }
</style>

```

# [./spec/render/filters/sass_spec.rb:17](../../../../spec/render/filters/sass_spec.rb#L17)
## Input
```haml
:sass
  nav
    ul
      margin: #{0 + 5}px

```

## Faml
```html
<style>
nav ul {
  margin: 5px; }
</style>

```

## Haml, Hamlit
```html
<style>
  nav ul {
    margin: 5px; }
</style>

```

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
faml-0.2.14 incompatibilities/spec/render/filters/sass_spec.md