Skip to content

Instantly share code, notes, and snippets.

@manhnguyenv
Forked from codeguy/slugify.js
Created July 26, 2018 04:00
Show Gist options
  • Save manhnguyenv/563b6a0117894190a3321dfc758a43bb to your computer and use it in GitHub Desktop.
Save manhnguyenv/563b6a0117894190a3321dfc758a43bb to your computer and use it in GitHub Desktop.

Revisions

  1. Josh Lockhart created this gist Sep 24, 2013.
    17 changes: 17 additions & 0 deletions slugify.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,17 @@
    function string_to_slug (str) {
    str = str.replace(/^\s+|\s+$/g, ''); // trim
    str = str.toLowerCase();

    // remove accents, swap ñ for n, etc
    var from = "àáäâèéëêìíïîòóöôùúüûñç·/_,:;";
    var to = "aaaaeeeeiiiioooouuuunc------";
    for (var i=0, l=from.length ; i<l ; i++) {
    str = str.replace(new RegExp(from.charAt(i), 'g'), to.charAt(i));
    }

    str = str.replace(/[^a-z0-9 -]/g, '') // remove invalid chars
    .replace(/\s+/g, '-') // collapse whitespace and replace by -
    .replace(/-+/g, '-'); // collapse dashes

    return str;
    }