Sha256: a81190fb63042dd2d9ef3d3c67267bb6940f5927f317939403a9008b79fe8073
Contents?: true
Size: 516 Bytes
Versions: 3
Compression:
Stored size: 516 Bytes
Contents
# [./spec/render/comment_spec.rb:31](../../../spec/render/comment_spec.rb#L31) ## Input ```haml / [if IE] hello ``` ## Faml, Haml ```html <!--[if IE]> hello <![endif]--> ``` ## Hamlit ```html <!--[if IE] hello> <![endif]--> ``` # [./spec/render/comment_spec.rb:51](../../../spec/render/comment_spec.rb#L51) ## Input ```haml /[[if IE] ``` ## Faml (Error) ```html Unmatched brackets in conditional comment ``` ## Haml (Error) ```html Unbalanced brackets. ``` ## Hamlit ```html <!--[[if IE]> <![endif]--> ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
faml-0.2.16 | incompatibilities/spec/render/comment_spec.md |
faml-0.2.15 | incompatibilities/spec/render/comment_spec.md |
faml-0.2.14 | incompatibilities/spec/render/comment_spec.md |