From bc8bc8a0123b9a4c14beb62f71616a925538ca5c Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 9 Dec 2015 09:51:03 -0500 Subject: [PATCH] [1.9.x] Removed redundant highlight/code-block directives in docs/ref/templates/builtins.txt. Backport of 890938e756247d7ea34f96cc0cc0f8fab0d62e9b from master --- docs/ref/templates/builtins.txt | 28 ++++++---------------------- 1 file changed, 6 insertions(+), 22 deletions(-) diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt index a234240cbf..652b7b2390 100644 --- a/docs/ref/templates/builtins.txt +++ b/docs/ref/templates/builtins.txt @@ -12,7 +12,7 @@ documentation for any custom tags or filters installed. Built-in tag reference ---------------------- -.. highlightlang:: html+django +.. highlight:: html+django .. templatetag:: autoescape @@ -560,9 +560,7 @@ operators, from lowest to highest, is as follows: * ``==``, ``!=``, ``<``, ``>``, ``<=``, ``>=`` (This follows Python exactly). So, for example, the following complex -:ttag:`if` tag: - -.. code-block:: django +:ttag:`if` tag:: {% if a == b or c == d and e %} @@ -1999,9 +1997,7 @@ autoescaping is off, this filter has no effect. If you are chaining filters, a filter applied after ``safe`` can make the contents unsafe again. For example, the following code - prints the variable as is, unescaped: - - .. code-block:: html+django + prints the variable as is, unescaped:: {{ var|safe|escape }} @@ -2519,29 +2515,21 @@ static static """""" -.. highlight:: html+django - To link to static files that are saved in :setting:`STATIC_ROOT` Django ships with a :ttag:`static` template tag. You can use this regardless if you're -using :class:`~django.template.RequestContext` or not. - -.. code-block:: html+django +using :class:`~django.template.RequestContext` or not. For example:: {% load static %} Hi! It is also able to consume standard context variables, e.g. assuming a -``user_stylesheet`` variable is passed to the template: - -.. code-block:: html+django +``user_stylesheet`` variable is passed to the template:: {% load static %} If you'd like to retrieve a static URL without displaying it, you can use a -slightly different call: - -.. code-block:: html+django +slightly different call:: {% load static %} {% static "images/hi.jpg" as myphoto %} @@ -2565,8 +2553,6 @@ slightly different call: get_static_prefix """"""""""""""""" -.. highlight:: html+django - You should prefer the :ttag:`static` template tag, but if you need more control over exactly where and how :setting:`STATIC_URL` is injected into the template, you can use the :ttag:`get_static_prefix` template tag:: @@ -2588,8 +2574,6 @@ the value multiple times:: get_media_prefix """""""""""""""" -.. highlight:: html+django - Similar to the :ttag:`get_static_prefix`, ``get_media_prefix`` populates a template variable with the media prefix :setting:`MEDIA_URL`, e.g.::