有一些utf-8字符的特殊情况
例:
>>> from django.template.defaultfilters import slugify>>> slugify(u"test ąęśćółń")u'test-aescon' # there is no "l"
这可以用Unidepre解决
>>> from unidepre import unidepre>>> from django.template.defaultfilters import slugify>>> slugify(unidepre(u"test ąęśćółń"))u'test-aescoln'



