Login

Text Highlighting Filter

Author:
girasquid
Posted:
December 10, 2008
Language:
Python
Version:
1.0
Score:
0 (after 0 ratings)

This filter can be used to wrap <span class='highlight'> around anything you want to highlight in a block of text. For example, if you had 'foo bar foo baz' inside the context variable MYTEXT, you could do {{ MYTEXT|highlight:'foo' }}, and "<span class='highlight'>foo</span> bar <span class='highlight'>foo</span> baz" would be returned.

How you style the highlight class is up to you.

1
2
3
@register.filter
def highlight(text, word):
    return mark_safe(text.replace(word, "<span class='highlight'>%s</span>" % word))

More like this

  1. get_object_or_none by azwdevops 1 month, 1 week ago
  2. Mask sensitive data from logger by agusmakmun 3 months ago
  3. Template tag - list punctuation for a list of items by shapiromatron 1 year, 5 months ago
  4. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 1 year, 5 months ago
  5. Serializer factory with Django Rest Framework by julio 2 years ago

Comments

Ana_Pana (on February 27, 2014):

Great solution! Thank you!

#

Please login first before commenting.