From af8a20a123fb7442bc1cb62256de3ac1fc16d1f9 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Mon, 15 Sep 2014 01:08:31 -0500 Subject: [PATCH] Adjust indent size; fix rendering of strings. --- static/api.css | 2 +- templates/api.mako | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/static/api.css b/static/api.css index c038737..a1aa16f 100644 --- a/static/api.css +++ b/static/api.css @@ -17,7 +17,7 @@ div.json { div.indent { display: inline-block; - padding-left: 4em; + padding-left: 2em; } span.code { diff --git a/templates/api.mako b/templates/api.mako index 372d50d..612aedb 100644 --- a/templates/api.mako +++ b/templates/api.mako @@ -22,7 +22,7 @@ ${do_indent(indent)} ] % else: - ${obj | h} + ${repr(obj) | h} % endif \