From e951142f77402cd4e0bdca69ea4aea5bb466c310 Mon Sep 17 00:00:00 2001 From: Val Neekman Date: Wed, 24 Apr 2013 10:27:06 -0400 Subject: added non-dash separator option --- slugify/__init__.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'slugify/__init__.py') diff --git a/slugify/__init__.py b/slugify/__init__.py index 8d0295a..f8de605 100644 --- a/slugify/__init__.py +++ b/slugify/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -__version__ = '0.0.3' +__version__ = '0.0.4' __all__ = ['slugify'] @@ -38,7 +38,7 @@ def smart_truncate(text, max_length=0, word_boundaries=False): return truncated.strip('-') -def slugify(text, entities=True, decimal=True, hexadecimal=True, max_length=0, word_boundary=False): +def slugify(text, entities=True, decimal=True, hexadecimal=True, max_length=0, word_boundary=False, separator='-'): """ Make a slug from the given text """ # text to unicode @@ -83,6 +83,9 @@ def slugify(text, entities=True, decimal=True, hexadecimal=True, max_length=0, w if max_length > 0: text = smart_truncate(text, max_length, word_boundary) + if separator != '-': + text = text.replace('-', separator) + return text -- cgit v1.2.1