Sha256: 0eee1580a1584530128713cc514f5cdbe36efcf4cc811932c084186da98e9ed2
Contents?: true
Size: 797 Bytes
Versions: 10
Compression:
Stored size: 797 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 ### 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> ``` # [scss\_spec.rb:21](/spec/hamlit/filters/scss_spec.rb#L21) ## Input ```haml :scss .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