Skip to content

Instantly share code, notes, and snippets.

@volanStudio
Created January 29, 2016 22:20
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 volanStudio/a9e8925469f3575dc664 to your computer and use it in GitHub Desktop.
Save volanStudio/a9e8925469f3575dc664 to your computer and use it in GitHub Desktop.
RegEx

Find @includes and their variables:

(@include transition)(\((.*?)\))
input == @include transition(height 200ms ease-in-out);
$1 == @inlcude transition
$2 == ()
$3 == height 200ms ease-in-out
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment