Sha256: 274d91074df42dd4ff5fb01d6fd61111959d0358fe63ea91269af516295c5fa0
Contents?: true
Size: 1.37 KB
Versions: 11
Compression:
Stored size: 1.37 KB
Contents
# [silent\_script\_spec.rb:79](/spec/hamlit/engine/silent_script_spec.rb#L79) ## Input ```haml %span - if false - elsif false ``` ## Output ### Faml ```html SyntaxError: (eval):4: syntax error, unexpected end-of-input, expecting keyword_end ; _buf << ("</span>\n".freeze); _buf = _buf.join ^ ``` ### Hamlit ```html <span> </span> ``` # [silent\_script\_spec.rb:90](/spec/hamlit/engine/silent_script_spec.rb#L90) ## Input ```haml %span - if false ng - else ``` ## Output ### Faml ```html SyntaxError: (eval):5: syntax error, unexpected end-of-input, expecting keyword_end ; _buf << ("</span>\n".freeze); _buf = _buf.join ^ ``` ### Hamlit ```html <span> </span> ``` # [silent\_script\_spec.rb:102](/spec/hamlit/engine/silent_script_spec.rb#L102) ## Input ```haml %span - case - when false ``` ## Output ### Faml ```html SyntaxError: (eval):4: syntax error, unexpected end-of-input, expecting keyword_end ; _buf << ("</span>\n".freeze); _buf = _buf.join ^ ``` ### Hamlit ```html <span> </span> ``` # [silent\_script\_spec.rb:190](/spec/hamlit/engine/silent_script_spec.rb#L190) ## Input ```haml - foo = [', '] = foo ``` ## Output ### Faml ```html [",\n "] ``` ### Hamlit ```html [", "] ```
Version data entries
11 entries across 11 versions & 1 rubygems