summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-03-28 14:54:35 +0100
committerCarl Hetherington <cth@carlh.net>2025-03-28 14:54:35 +0100
commite7bff7e0e275afb95fe04f77fc7866df9eb37982 (patch)
treebf04296701d20b9d7bcf24e49cbd774f5d9d6589 /src
parent2ef30cbe66ca819588bf43d892223ed9864c0e9a (diff)
Add some newlines in HTML output to make it a little easier to read.
Diffstat (limited to 'src')
-rw-r--r--src/verify_report.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/verify_report.h b/src/verify_report.h
index a9ec1155..b6b99391 100644
--- a/src/verify_report.h
+++ b/src/verify_report.h
@@ -201,9 +201,9 @@ public:
void list_item(std::string const& text, boost::optional<std::string> type = {}) override {
if (type) {
- _file.puts(dcp::String::compose("<li class=\"%1\">%2</li>", *type, text).c_str());
+ _file.puts(dcp::String::compose("<li class=\"%1\">%2</li>\n", *type, text).c_str());
} else {
- _file.puts(dcp::String::compose("<li>%1</li>", text).c_str());
+ _file.puts(dcp::String::compose("<li>%1</li>\n", text).c_str());
}
}