Sha256: 50a1866452ffa041be9293250f35c67546874cf2e395ef50c1ec21c8304c107f

Contents?: true

Size: 752 Bytes

Versions: 6

Compression:

Stored size: 752 Bytes

Contents

# [sass\_spec.rb:3](/spec/hamlit/filters/sass_spec.rb#L3)
## Input
```haml
:sass
  .users_controller
    .show_action
      margin: 10px
      padding: 20px

```

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

```

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

```


# [sass\_spec.rb:19](/spec/hamlit/filters/sass_spec.rb#L19)
## Input
```haml
:sass
  .users_controller
    .show_action
      content: "#{'<&>'}"

```

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

```

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

```

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
hamlit-1.6.5 doc/faml/filters/sass.md
hamlit-1.6.4 doc/faml/filters/sass.md
hamlit-1.6.3 doc/faml/filters/sass.md
hamlit-1.6.2 doc/faml/filters/sass.md
hamlit-1.6.1 doc/faml/filters/sass.md
hamlit-1.6.0 doc/faml/filters/sass.md