Ver a proveniência

Use json.dumps for the string handling instead.

pull/24/head
Ben Kurtovic há 9 anos
ascendente
cometimento
b2db78f021
1 ficheiros alterados com 4 adições e 3 eliminações
  1. +4
    -3
      templates/api.mako

+ 4
- 3
templates/api.mako Ver ficheiro

@@ -1,3 +1,6 @@
<%!
from json import dumps
%>\
<%def name="do_indent(size)">
<br />
% for i in xrange(size):
@@ -21,10 +24,8 @@
% endfor
${do_indent(indent)}
]
% elif isinstance(obj, type("").__bases__[0]):
"${obj | h}"
% else:
${obj | h}
${dumps(obj) | h}
% endif
</%def>\
<!DOCTYPE html>


Carregando…
Cancelar
Guardar