Skip to content

Instantly share code, notes, and snippets.

@anselmh
Created August 21, 2014 09:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anselmh/bef343835b46aebba2aa to your computer and use it in GitHub Desktop.
Save anselmh/bef343835b46aebba2aa to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.14)
// Compass (v1.0.0)
// ----
$map:
('a', 'b');
// Expected output: ('a', 'b')
// Actual output: "a", "b"
.class--non-working {
content: $map;
}
// Make it work:
.class--working {
content: unquote("(#{$map})");
}
.class--non-working {
content: "a", "b";
}
.class--working {
content: ("a", "b");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment