Sha256: 9adb7cb832703346d4cc1d951359a0c56b5a30fd99d12582d33ebf97a33a0f2d

Contents?: true

Size: 685 Bytes

Versions: 1

Compression:

Stored size: 685 Bytes

Contents

# [./spec/render/filters/scss_spec.rb:4](../../../../spec/render/filters/scss_spec.rb#L4)
## Input
```haml
:scss
  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/scss_spec.rb:19](../../../../spec/render/filters/scss_spec.rb#L19)
## Input
```haml
:scss
  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/scss_spec.md