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 e34a5ca commit 2b55d20Copy full SHA for 2b55d20
1 file changed
ietf/doc/templatetags/ietf_filters.py
@@ -616,3 +616,7 @@ def format_timedelta(timedelta):
616
hours, remainder = divmod(s, 3600)
617
minutes, seconds = divmod(remainder, 60)
618
return '{hours:02d}:{minutes:02d}'.format(hours=hours,minutes=minutes)
619
+
620
+@register.filter()
621
+def nbsp(value):
622
+ return mark_safe(" ".join(value.split(' ')))
0 commit comments