Skip to content

Instantly share code, notes, and snippets.

@justinfay
Last active August 29, 2015 14:14
Show Gist options
  • Save justinfay/c212b972066a25ef5e2b to your computer and use it in GitHub Desktop.
Save justinfay/c212b972066a25ef5e2b to your computer and use it in GitHub Desktop.
import re
@app.template_filter('linkify')
def linkify_filter(text):
return re.sub(r'(https?://[^\s\\]+)', r'<a href="\1">\1</a>', text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment