This filter links twitter user names prefixed with '@', hash tags, and URLs.
Usage example:
{{var|twitterize}}
Note: Do not use this in conjunction with the urlize filter. Twitterize does this for you.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | from django import template
from django.template.defaultfilters import stringfilter
from django.utils.safestring import mark_safe
register = template.Library()
@register.filter
@stringfilter
def twitterize(value, autoescape=None):
from django.utils.html import urlize
import re
# Link URLs
value = urlize(value, nofollow=False, autoescape=autoescape)
# Link twitter usernames prefixed with @
value = re.sub(r'(\s+|\A)@([a-zA-Z0-9\-_]*)\b',r'\1<a href="http://twitter.com/\2">@\2</a>',value)
# Link hash tags
value = re.sub(r'(\s+|\A)#([a-zA-Z0-9\-_]*)\b',r'\1<a href="http://search.twitter.com/search?q=%23\2">#\2</a>',value)
return mark_safe(value)
twitterize.is_safe=True
twitterize.needs_autoescape = True
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 1 week ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 2 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
This will let through arbitrary HTML, hence is open to attacks.
#
Oops, not sure about that..
#
Please login first before commenting.