SpeakingURL
====================================================================================================================================================================================================================================================================================================================================================
Generate a slug with a lot of options; create a so-called Semantic URL or 'Clean URL' or 'Pretty URL' or 'nice-looking URL' or 'Speaking URL' or 'user-friendly URL' or 'SEO-friendly URL' from a string. This module aims to transliterate the input string.
For use in browser and server - no dependencies!
NPM Badge
Installation
npm install speakingurl --save
bower install --save speakingurl
component install pid/speakingurl
jam install speakingurl
gem 'speakingurl-rails'
copy the file speakingurl.min.js to your script directory
available versions:
available versions:
Usage
getSlug(input, [options]);
input
: {string} to convert
options
{object|string} config object or separator string (see below)
notes: default only Base64 chars are allowed (/A-Za-z0-9_-/), setting uric
, uricNoSlash
or/and mark
to true
will add the specified chars to the list of allowed characters. The separator-character is always allowed.
Node.js
var getSlug = require('speakingurl');
Browser
<script src="bower_components/speakingurl/speakingurl.min.js"></script>
Ruby on Rails
//= require speakingurl
Examples
var slug;
slug = getSlug("Schöner Titel läßt grüßen!? Bel été !");
console.log(slug);
slug = getSlug("Schöner Titel läßt grüßen!? Bel été !", '*');
console.log(slug);
slug = getSlug("Schöner Titel läßt grüßen!? Bel été !", {
separator: '_'
});
console.log(slug);
slug = getSlug("Schöner Titel läßt grüßen!? Bel été !", {
uric: true
});
console.log(slug);
slug = getSlug("Schöner Titel läßt grüßen!? Bel été !", {
uricNoSlash: true
});
console.log(slug);
slug = getSlug("Schöner Titel läßt grüßen!? Bel été !", {
mark: true
});
console.log(slug);
slug = getSlug("Schöner Titel läßt grüßen!? Bel été !", {
truncate: 20
});
console.log(slug);
slug = getSlug("Schöner Titel läßt grüßen!? Bel été !", {
maintainCase: true
});
console.log(slug);
slug = getSlug("Äpfel & Birnen!", {
lang: 'de'
});
console.log(slug);
slug = getSlug("မြန်မာ သာဓက", {
lang: 'my'
});
console.log(slug);
slug = getSlug('މިއަދަކީ ހދ ރީތި ދވހކވ', {
lang: 'dv'
});
console.log(slug);
slug = getSlug("Apple & Pear!", {
lang: 'en'
});
console.log(slug);
slug = getSlug('Foo & Bar * Baz', {
custom: {
'&': ' doo '
},
uric:true
});
console.log(slug);
slug = getSlug('Foo ♥ Bar');
console.log(slug);
slug = getSlug('Foo & Bar | (Baz) * Doo', {
custom: {
'*': 'Boo'
},
mark:true
});
console.log(slug);
slug = getSlug('Foo and Bar or Baz', {
custom: {
'and': 'und',
'or': ''
}
});
console.log(slug);
slug = getSlug('[Knöpfe]', {
custom: [
'[',
']'
]
});
console.log(slug);
slug = getSlug('NEXUS4 only $299');
console.log(slug);
slug = getSlug('NEXUS4 only €299', {
maintainCase: true
});
console.log(slug);
slug = getSlug('Don\'t drink and drive', {
titleCase: true
});
console.log(slug);
slug = getSlug('Don\'t drink and drive', {
titleCase: ['and']
});
console.log(slug);
slug = getSlug('Foo & Bar ♥ Foo < Bar', {
lang: false
});
console.log(slug);
slug = getSlug('Foo & Bar ♥ Foo < Bar', {
symbols: false
});
console.log(slug);
slug = getSlug('ä♥ä', {
lang: 'tr',
symbols: false
});
console.log(slug);
createSlug([options])
options
: {object|string} config object or separator string (see above)
Create your own specially configured function.
var options = {
maintainCase: true,
separator: '_'
};
var mySlug = require('speakingurl').createSlug(options);
var slug = mySlug("Schöner Titel läßt grüßen!? Bel été !");
console.log(slug);
Create your own specially configured function with title-case feature.
var options = {
titleCase: [
"a","an","and","as","at","but",
"by","en","for","if","in","nor",
"of","on","or","per","the","to","vs"
]
};
var mySlug = require('speakingurl').createSlug(options);
var slug = mySlug('welcome to the jungle');
console.log(slug);
Changelog
see CHANGELOG.md
Tests
npm test
Contribution
# fork pid/speakingurl on Github
$ git clone git@github.com:<YOUR_USER>/speakingurl.git
$ cd speakingurl
$ npm install
# add your stuff
# add tests
# add example for new feature
# add release info to CHANGELOG.md
# add description/example to README.md
$ gulp
$ commit files (speakingurl.min.js,...)
# if everything works fine, commit, push to your repository
# create pull request
Release
$ gulp bumpup --patch
$ gulp
$ gulp release
Release to RubyGems.org
$ gulp
$ gem build speakingurl-rails.gemspec
$ gem push speakingurl-rails-x.x.x.gem
References
Use in other environments
Ports
Credits
The BSD 3-Clause License (BSD3)
Copyright (c) 2013-2016 Sascha Droste pid@posteo.net All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
- Neither the name of the author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.