Sha256: 4ffeaa20368b36e5477ac160949000f2aeaebf42da9fd5f925d6167bd729bfa2

Contents?: true

Size: 696 Bytes

Versions: 11

Compression:

Stored size: 696 Bytes

Contents

# [less\_spec.rb:3](/spec/hamlit/filters/less_spec.rb#L3)
## Input
```haml
:less
  .users_controller {
    .show_action {
      margin: 10px;
      padding: 20px;
    }
  }

```

## Output
### Faml
```html
Faml::FilterCompilers::NotFound: Unable to find compiler for less
```

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

```


# [less\_spec.rb:22](/spec/hamlit/filters/less_spec.rb#L22)
## Input
```haml
:less
  .foo {
    content: "#{'<&>'}";
  }

```

## Output
### Faml
```html
Faml::FilterCompilers::NotFound: Unable to find compiler for less
```

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

```

Version data entries

11 entries across 11 versions & 1 rubygems

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