[pypy-commit] extradoc extradoc: disable django template html escaping for column titles ( ">" I'm looking at you)

bivab noreply at buildbot.pypy.org
Thu Aug 16 14:35:31 CEST 2012


Author: David Schneider <david.schneider at picle.org>
Branch: extradoc
Changeset: r4610:f9ac017bcfd4
Date: 2012-08-16 14:34 +0200
http://bitbucket.org/pypy/extradoc/changeset/f9ac017bcfd4/

Log:	disable django template html escaping for column titles ( ">" I'm
	looking at you)

diff --git a/talk/vmil2012/tool/table_template.tex b/talk/vmil2012/tool/table_template.tex
--- a/talk/vmil2012/tool/table_template.tex
+++ b/talk/vmil2012/tool/table_template.tex
@@ -3,7 +3,7 @@
     \begin{tabular}{ |l{% for c in head %} {% if not loop.first %} |r {% endif %} {% endfor %} }
     \hline
     {% for col in head %}
-        \textbf{ {{col}} }
+        \textbf{ {{col|safe}} }
         {% if not forloop.last %}
            &
         {% endif %}


More information about the pypy-commit mailing list