Author: David Schneider <[email protected]>
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 %}
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to