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