Skip to content

Instantly share code, notes, and snippets.

@steve228uk
Created March 6, 2015 10:38
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 steve228uk/9c42bc206a26614b4c91 to your computer and use it in GitHub Desktop.
Save steve228uk/9c42bc206a26614b4c91 to your computer and use it in GitHub Desktop.
filter('clean', function(){
return function(input){
return input.replace(/&/g, 'and').replace(/[^a-zA-Z0-9 -]+/g, '').replace(/\s+/g, '-').toLowerCase();
};
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment