1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | class EscapeJSNode(template.Node):
def __init__(self, nodelist):
self.nodelist = nodelist
def render(self, context):
from django.template.defaultfilters import escapejs
return escapejs(self.nodelist.render(context).strip())
@register.tag
def escapejs(parser, token):
"""
Escapes characters for use in JavaScript strings.
Sample usage::
{% escapejs %}
<p>
Text to<br />
<a href="#">escape</a> here.
</p>
{% endescapejs %}
"""
nodelist = parser.parse(('endescapejs',))
parser.delete_first_token()
return EscapeJSNode(nodelist)
|
More like this
- Render specific blocks from templates (useful for AJAX) by sciyoshi 3 years, 8 months ago
- User group template tag with "else" block support by GomoX 4 years, 5 months ago
- User groups template tag by hijinks 2 years, 7 months ago
- Build tags files for emacs and vim by ramen 2 years, 2 months ago
- Repeat blocks with new context / simple Jinja-like macro system by miracle2k 4 years, 6 months ago
Comments
This really isn't needed; just do
{% filter escapejs %}... content ...{% endfilter %}. Filter tag docs.#
Learn something new everyday :)
#
Thanks a lot, @jacobian!
+1 baumer1122 – every day something new... :)
#