Index: docs/templates.txt
===================================================================
--- docs/templates.txt	(revision 6898)
+++ docs/templates.txt	(working copy)
@@ -1335,36 +1335,36 @@
 When used without an argument, rounds a floating-point number to one decimal
 place -- but only if there's a decimal part to be displayed. For example:
 
-========  =======================  ======
-value     Template                 Output
-========  =======================  ======
-34.23234  {{ value|floatformat }}  34.2
-34.00000  {{ value|floatformat }}  34
-34.26000  {{ value|floatformat }}  34.3
-========  =======================  ======
+============  ===========================  ========
+Value         Template                     Output
+============  ===========================  ========
+``34.23234``  ``{{ value|floatformat }}``  ``34.2``
+``34.00000``  ``{{ value|floatformat }}``  ``34``
+``34.26000``  ``{{ value|floatformat }}``  ``34.3``
+============  ===========================  ========
 
 If used with a numeric integer argument, ``floatformat`` rounds a number to
 that many decimal places. For example:
 
-========  =========================  ======
-value     Template                   Output
-========  =========================  ======
-34.23234  {{ value|floatformat:3 }}  34.232
-34.00000  {{ value|floatformat:3 }}  34.000
-34.26000  {{ value|floatformat:3 }}  34.260
-========  =========================  ======
+============  =============================  ==========
+Value         Template                       Output
+============  =============================  ==========
+``34.23234``  ``{{ value|floatformat:3 }}``  ``34.232``
+``34.00000``  ``{{ value|floatformat:3 }}``  ``34.000``
+``34.26000``  ``{{ value|floatformat:3 }}``  ``34.260``
+============  =============================  ==========
 
 If the argument passed to ``floatformat`` is negative, it will round a number
 to that many decimal places -- but only if there's a decimal part to be
 displayed. For example:
 
-========  ============================  ======
-value     Template                      Output
-========  ============================  ======
-34.23234  {{ value|floatformat:"-3" }}  34.232
-34.00000  {{ value|floatformat:"-3" }}  34
-34.26000  {{ value|floatformat:"-3" }}  34.260
-========  ============================  ======
+============  ================================  ==========
+Value         Template                          Output
+============  ================================  ==========
+``34.23234``  ``{{ value|floatformat:"-3" }}``  ``34.232``
+``34.00000``  ``{{ value|floatformat:"-3" }}``  ``34``
+``34.26000``  ``{{ value|floatformat:"-3" }}``  ``34.260``
+============  ================================  ==========
 
 Using ``floatformat`` with no argument is equivalent to using ``floatformat``
 with an argument of ``-1``.
