Skip to content

Instantly share code, notes, and snippets.

@iansoper
Created February 7, 2013 14:52
Show Gist options
  • Save iansoper/4731396 to your computer and use it in GitHub Desktop.
Save iansoper/4731396 to your computer and use it in GitHub Desktop.
RegEx for HTML Email
// Convert 3 char HEX to 6 char (for better email support)
pattern:
#(\w)(\w)(\w);
replace:
#$1$1$2$2$3$3;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment