Sha256: 214b354f903ae07d3d6c63f7f6d8e499ca75c41dad6d98d69e56edc8fbcaddfc

Contents?: true

Size: 887 Bytes

Versions: 1

Compression:

Stored size: 887 Bytes

Contents

# [scss\_spec.rb:3](https://github.com/k0kubun/hamlit/blob/master/spec/hamlit/filters/scss_spec.rb#L3)
## Input
```haml
:scss
  .users_controller {
    .show_action {
      margin: 10px;
      padding: 20px;
    }
  }

```

## Output
### Haml, Hamlit
```html
<style>
  .users_controller .show_action {
    margin: 10px;
    padding: 20px; }
</style>

```

### Faml
```html
<style>
.users_controller .show_action {
  margin: 10px;
  padding: 20px; }

</style>

```


# [scss\_spec.rb:21](https://github.com/k0kubun/hamlit/blob/master/spec/hamlit/filters/scss_spec.rb#L21)
## Input
```haml
:scss
  .users_controller {
    .show_action {
      content: "#{'<&>'}";
    }
  }

```

## Output
### Haml, Hamlit
```html
<style>
  .users_controller .show_action {
    content: "<&>"; }
</style>

```

### Faml
```html
<style>
.users_controller .show_action {
  content: "<&>"; }

</style>

```

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hamlit-1.5.5 doc/filters/scss.md