twentytab-highlighter ===================== A django app permits to highlight the searched words (self.query) in a long text and truncates it, counts number of chars == max_length ## Installation Use the following command: pip install twentytab-highlighter ## Configuration ```py INSTALLED_APPS = { ..., 'highlighter', ... } ``` ## Usage In your html template ```html {% load highlight_tags %}