Skip to content

Instantly share code, notes, and snippets.

@cimmanon
Created July 24, 2015 19:43
Show Gist options
  • Save cimmanon/f4f56b15f56ba9d6ff45 to your computer and use it in GitHub Desktop.
Save cimmanon/f4f56b15f56ba9d6ff45 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="007">Bond</div>
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
@function escape_leading_numbers($s) {
$first-char: str_slice(#{$s}, 0, 1);
$found: index('1' '2' '3' '4' '5' '6' '7' '8' '9' '0', $first-char);
@return if($found, unquote(str-insert(str-slice(#{$s}, 2), "\\3#{$first-char} ", 1)), $s);
}
$name: '007';
.#{escape_leading_numbers($name)} {
color: red;
}
.\007 {
border: 1px solid;
}
.\30 07 {
color: red;
}
.\007 {
border: 1px solid;
}
<div class="007">Bond</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment