Hi how should I escape to make the link render?

The way I write it now is with filter:
{{article.text|striptags|urlize|nl2br|safe}}
Can you recommend how to do it?
Related question: https://stackoverflow.com/questions/8179801/autolinebreaks-filter-in-jinja2
Thank you
Usually I’d like to use
HTMLParserfor processing (overkill maybe?), sample code below for Python 2.7 (3.0 library is renamedhtml.parser)Outputs:
Found Start Tag [('href', 'http://www.olharcaricato.com.br')]Note: Implement the code above as a filter, tweak the output to your needs. Example of filter is found at Custom jinja2 filter for iterator