Sha256: 704b3162acb34c0d0a84e832eb47dd32afbb009b518f61799527342d9676f6e0
Contents?: true
Size: 764 Bytes
Versions: 10
Compression:
Stored size: 764 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 ### 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> ``` # [sass\_spec.rb:19](/spec/hamlit/filters/sass_spec.rb#L19) ## Input ```haml :sass .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
10 entries across 10 versions & 1 rubygems