Skip to content

Commit

Permalink
remove unicode chars from file
Browse files Browse the repository at this point in the history
  • Loading branch information
un33k committed Jul 28, 2019
1 parent b792642 commit b79331c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions slugify/slugify.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ def slugify(text, entities=True, decimal=True, hexadecimal=True, max_length=0, w
"""
Make a slug from the given text.
:param text (str): initial text
:param entities (bool): converts html entities to unicode (foo & bar -> foo-bar)
:param decimal (bool): converts html decimal to unicode (Ž -> Ž -> z)
:param hexadecimal (bool): converts html hexadecimal to unicode (Ž -> Ž -> z)
:param entities (bool): converts html entities to unicode
:param decimal (bool): converts html decimal to unicode
:param hexadecimal (bool): converts html hexadecimal to unicode
:param max_length (int): output string length
:param word_boundary (bool): truncates to complete word even if length ends up shorter than max_length
:param save_order (bool): if parameter is True and max_length > 0 return whole words in the initial order
Expand Down

0 comments on commit b79331c

Please sign in to comment.