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