Sha256: 483c51a1f246f8c56df386814f70c4882808f9298e1c33d457ed9305e00cac59
Contents?: true
Size: 527 Bytes
Versions: 9
Compression:
Stored size: 527 Bytes
Contents
# [indent\_spec.rb:3](/spec/hamlit/engine/indent_spec.rb#L3) ## Input ```haml %p %a ``` ## Output ### Faml ```html Faml::IndentTracker::HardTabNotAllowed: Indentation with hard tabs are not allowed :-p ``` ### Hamlit ```html <p> <a></a> </p> ``` # [indent\_spec.rb:28](/spec/hamlit/engine/indent_spec.rb#L28) ## Input ```haml %p %span foo ``` ## Output ### Faml ```html Faml::IndentTracker::HardTabNotAllowed: Indentation with hard tabs are not allowed :-p ``` ### Hamlit ```html <p> <span> foo </span> </p> ```
Version data entries
9 entries across 9 versions & 1 rubygems