Sha256: 13420efa40c1300eac4ad9163f574333ce7d2d1ad95dfe1f13117cfa5bb356cd
Contents?: true
Size: 1.07 KB
Versions: 1
Compression:
Stored size: 1.07 KB
Contents
# [script\_spec.rb:41](https://github.com/k0kubun/hamlit/blob/master/spec/hamlit/engine/script_spec.rb#L41) ## Input ```haml = 3.times do |i| = i 4 ``` ## Output ### Haml, Faml ```html 0 1 2 34 ``` ### Hamlit ```html 0 1 2 3 4 ``` # [script\_spec.rb:55](https://github.com/k0kubun/hamlit/blob/master/spec/hamlit/engine/script_spec.rb#L55) ## Input ```haml %span = 1.times do |i| = i ``` ## Output ### Haml, Faml ```html <span> 0 1</span> ``` ### Hamlit ```html <span> 0 1 </span> ``` # [script\_spec.rb:87](https://github.com/k0kubun/hamlit/blob/master/spec/hamlit/engine/script_spec.rb#L87) ## Input ```haml != '<"&>' != '<"&>'.tap do |str| -# no operation ``` ## Output ### Haml, Faml ```html <"&> <"&> ``` ### Hamlit ```html <"&> <"&> ``` # [script\_spec.rb:98](https://github.com/k0kubun/hamlit/blob/master/spec/hamlit/engine/script_spec.rb#L98) ## Input ```haml &= '<"&>' &= '<"&>'.tap do |str| -# no operation ``` ## Output ### Haml, Faml ```html <"&> <"&> ``` ### Hamlit ```html <"&> <"&> ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hamlit-1.5.5 | doc/engine/script.md |