diff options
Diffstat (limited to 'coverage')
-rw-r--r-- | coverage/html.py | 19 | ||||
-rw-r--r-- | coverage/htmlfiles/style.css | 2 |
2 files changed, 8 insertions, 13 deletions
diff --git a/coverage/html.py b/coverage/html.py index 8dca6323..6a2132b7 100644 --- a/coverage/html.py +++ b/coverage/html.py @@ -418,18 +418,13 @@ class HtmlStatus(object): # Helpers for templates and generating HTML def escape(t): - """HTML-escape the text in `t`.""" - return ( - t - # Convert HTML special chars into HTML entities. - .replace("&", "&").replace("<", "<").replace(">", ">") - .replace("'", "'").replace('"', """) - # Convert runs of spaces: "......" -> " . . ." - .replace(" ", " ") - # To deal with odd-length runs, convert the final pair of spaces - # so that "....." -> " . ." - .replace(" ", " ") - ) + """HTML-escape the text in `t`. + + This is only suitable for HTML text, not attributes. + + """ + # Convert HTML special chars into HTML entities. + return t.replace("&", "&").replace("<", "<") def spaceless(html): diff --git a/coverage/htmlfiles/style.css b/coverage/htmlfiles/style.css index 186b085b..4f43b591 100644 --- a/coverage/htmlfiles/style.css +++ b/coverage/htmlfiles/style.css @@ -226,7 +226,7 @@ td.text { margin: 0; padding: 0 0 0 .5em; border-left: 2px solid #ffffff; - white-space: nowrap; + white-space: pre; } .text p.mis { |