From 4284d8ea7ddd985772ab1d4f4c719ce38d126d52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=96=9F=20=E2=96=96=E2=96=9F=20=E2=96=96?= Date: Sat, 18 Apr 2015 11:25:24 +0200 Subject: [PATCH] update lower case examples in readme --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c9c240f..12e686b 100644 --- a/README.md +++ b/README.md @@ -35,9 +35,12 @@ print(slug('i ♥ unicode', '_')) // If you prefer something else then `-` as se // > i_love_unicode slug.charmap['♥'] = 'freaking love' // change default charmap or use option {charmap:{…}} as 2. argument -print(slug('I ♥ UNICODE', {lowercase: false})) // If you prefer not lower case +print(slug('I ♥ UNICODE')) // > I-freaking-love-UNICODE +print(slug('☏-Number', {lower: true})) // If you prefer lower case +// > telephone-number + print(slug('i <3 unicode')) // > i-love-unicode ```