Sha256: d638a9bece447977ea4767813663e10a757873d9be9a3e79a5fdf9bdd7c2f455
Contents?: true
Size: 384 Bytes
Versions: 1
Compression:
Stored size: 384 Bytes
Contents
# [indent\_spec.rb:3](/spec/hamlit/engine/indent_spec.rb#L3) ## Input ```haml %p %a ``` ## Output ### Faml ```html <p></p> %a ``` ### 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 <p></p> %span foo ``` ### Hamlit ```html <p> <span> foo </span> </p> ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hamlit-1.6.1 | doc/faml/engine/indent.md |