summaryrefslogtreecommitdiff
path: root/docs/ref/unicode.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ref/unicode.txt')
-rw-r--r--docs/ref/unicode.txt12
1 files changed, 9 insertions, 3 deletions
diff --git a/docs/ref/unicode.txt b/docs/ref/unicode.txt
index 87e8b7d0b7..b73814c861 100644
--- a/docs/ref/unicode.txt
+++ b/docs/ref/unicode.txt
@@ -174,7 +174,9 @@ further encoded when passed to ``iri_to_uri()``. This means you can pass a
full URL to this function and it will not mess up the query string or anything
like that.
-An example might clarify things here::
+An example might clarify things here:
+
+.. code-block:: pycon
>>> from urllib.parse import quote
>>> from django.utils.encoding import iri_to_uri
@@ -193,7 +195,9 @@ result.
Similarly, Django provides :func:`django.utils.encoding.uri_to_iri()` which
implements the conversion from URI to IRI as per :rfc:`3987#section-3.2`.
-An example to demonstrate::
+An example to demonstrate:
+
+.. code-block:: pycon
>>> from django.utils.encoding import uri_to_iri
>>> uri_to_iri('/%E2%99%A5%E2%99%A5/?utf8=%E2%9C%93')
@@ -309,7 +313,9 @@ and application server for the appropriate syntax and location to set this
variable. See the :doc:`/howto/deployment/wsgi/modwsgi` for examples.
In your development environment, you might need to add a setting to your
-``~.bashrc`` analogous to:::
+``~.bashrc`` analogous to:
+
+.. code-block:: shell
export LANG="en_US.UTF-8"