summaryrefslogtreecommitdiff
path: root/docs/templates.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-09-01 22:58:58 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-09-01 22:58:58 +0000
commit29c50bc0d41cb5d2b6e36f0f7347b7c0f5c56645 (patch)
treebe22acfff94e994f9590a91382a3ddc46fd772f1 /docs/templates.txt
parentcd435ff796258ce58dfdcb09caa2ae6cd02903e9 (diff)
Fixed #287 -- Clarified description for 'slugify' template filter. Thanks, emccoy@interland.com
git-svn-id: http://code.djangoproject.com/svn/django/trunk@597 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/templates.txt')
-rw-r--r--docs/templates.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/templates.txt b/docs/templates.txt
index 4a5161eae5..89d9eacda8 100644
--- a/docs/templates.txt
+++ b/docs/templates.txt
@@ -677,7 +677,9 @@ Built-in filter reference
for an introduction.
``slugify``
- Converts to lowercase, removes non-alpha chars and converts spaces to hyphens
+ Converts to lowercase, removes non-word characters (alphanumerics and
+ underscores) and converts spaces to hyphens. Also strips leading and
+ trailing whitespace.
``stringformat``
Formats the variable according to the argument, a string formatting specifier.