]> git.ipfire.org Git - thirdparty/jinja.git/commitdiff
Fix missing " in docs/tricks.rst 345/head
authorChenguang Zhang <hszfy@163.com>
Tue, 24 Jun 2014 08:04:35 +0000 (16:04 +0800)
committerChenguang Zhang <hszfy@163.com>
Tue, 24 Jun 2014 08:04:35 +0000 (16:04 +0800)
docs/tricks.rst

index 122c079a7cf8c56c7ac294f0645a12ed31deb3d6..61647fff143a9b698182e6f064ff1dd46c695974 100644 (file)
@@ -93,7 +93,7 @@ desired to have access to an outer loop it's possible to alias it::
       <tr>
       {% set rowloop = loop %}
       {% for cell in row %}
-        <td id="cell-{{ rowloop.index }}-{{ loop.index }}>{{ cell }}</td>
+        <td id="cell-{{ rowloop.index }}-{{ loop.index }}">{{ cell }}</td>
       {% endfor %}
       </tr>
     {% endfor %}