Sha256: b6924ebf2910516098cb72818c667cdecdd5a9fe22df110e06f8537432876260
Contents?: true
Size: 798 Bytes
Versions: 1
Compression:
Stored size: 798 Bytes
Contents
# [less\_spec.rb:3](https://github.com/k0kubun/hamlit/blob/master/spec/hamlit/filters/less_spec.rb#L3) ## Input ```haml :less .users_controller { .show_action { margin: 10px; padding: 20px; } } ``` ## Output ### Haml, Hamlit ```html <style> .users_controller .show_action { margin: 10px; padding: 20px; } </style> ``` ### Faml ```html Faml::FilterCompilers::NotFound: Unable to find compiler for less ``` # [less\_spec.rb:22](https://github.com/k0kubun/hamlit/blob/master/spec/hamlit/filters/less_spec.rb#L22) ## Input ```haml :less .foo { content: "#{'<&>'}"; } ``` ## Output ### Haml, Hamlit ```html <style> .foo { content: "<&>"; } </style> ``` ### Faml ```html Faml::FilterCompilers::NotFound: Unable to find compiler for less ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hamlit-1.5.5 | doc/filters/less.md |