Sha256: 4320693d5cd332f0b7b1dbf7baf8ab6a954ed4b43e68c1063329a6a8246c5cd5
Contents?: true
Size: 785 Bytes
Versions: 6
Compression:
Stored size: 785 Bytes
Contents
# [scss\_spec.rb:3](/spec/hamlit/filters/scss_spec.rb#L3) ## Input ```haml :scss .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> ``` # [scss\_spec.rb:21](/spec/hamlit/filters/scss_spec.rb#L21) ## Input ```haml :scss .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