Sha256: 8547acb80659b04d11c42bddf9853e62cc83c9f2a96d58aa6c4983bb9a68d64e
Contents?: true
Size: 669 Bytes
Versions: 10
Compression:
Stored size: 669 Bytes
Contents
# [./spec/render/filters/plain_spec.rb:5](../../../../spec/render/filters/plain_spec.rb#L5) ## Input ```haml %span :plain he#{'llo'} %span world ``` ## Faml ```html <span> hello <span>world</span> </span> ``` ## Haml, Hamlit ```html <span> hello <span>world</span> </span> ``` # [./spec/render/filters/plain_spec.rb:14](../../../../spec/render/filters/plain_spec.rb#L14) ## Input ```haml %span :plain he#{'llo'} abc %span world ``` ## Faml ```html <span> hello abc <span>world</span> </span> ``` ## Haml ```html <span> hello abc <span>world</span> </span> ``` ## Hamlit ```html <span> hello abc <span>world</span> </span> ```
Version data entries
10 entries across 10 versions & 1 rubygems