|
@@ -443,9 +443,9 @@ To avoid this problem, you have two options:
|
|
|
* Two, you can take advantage of Django's automatic HTML escaping. The
|
|
|
remainder of this section describes how auto-escaping works.
|
|
|
|
|
|
-By default in the Django development version, every template automatically
|
|
|
-escapes the output of every variable tag. Specifically, these five characters
|
|
|
-are escaped:
|
|
|
+By default in the Django, every template automatically escapes the
|
|
|
+output of every variable tag. Specifically, these five characters are
|
|
|
+escaped:
|
|
|
|
|
|
* ``<`` is converted to ``<``
|
|
|
* ``>`` is converted to ``>``
|
|
@@ -645,4 +645,4 @@ template (e.g., one that has ``{% extends "foo.html" %}``) will *not* have
|
|
|
access to the comments template tags and filters. The child template is
|
|
|
responsible for its own ``{% load comments %}``.
|
|
|
|
|
|
-This is a feature for the sake of maintainability and sanity.
|
|
|
+This is a feature for the sake of maintainability and sanity.
|