We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcef133 commit cd14d95Copy full SHA for cd14d95
1 file changed
ietf/doc/templatetags/ietf_filters.py
@@ -585,3 +585,8 @@ def urlize_html(html, autoescape=False):
585
textNode.replaceWith(BeautifulSoup(urlizedText))
586
587
return str(soup)
588
+
589
+@register.filter
590
+def emailwrap(email):
591
+ email = str(email)
592
+ return mark_safe(email.replace('@', '<wbr>@'))
0 commit comments