Created
May 23, 2015 07:42
-
-
Save stowball/e60ec25e9d7734b7bb49 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // libsass (v3.2.4) | |
| // ---- | |
| $_map: ( | |
| 0: 0 | |
| ); | |
| @for $i from 1 through 5 { | |
| $_map: map-merge($_map, ($i: $i)); | |
| } | |
| a { | |
| content: "#{inspect($_map)}"; | |
| } | |
| // This breaks in Ruby Sass | |
| b { | |
| content: "#{$_map}"; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| a { | |
| content: "(0: 0, 1: 1, 2: 2, 3: 3, 4: 4, 5: 5)"; | |
| } | |
| b { | |
| content: "(0: 0, 1: 1, 2: 2, 3: 3, 4: 4, 5: 5)"; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment