From e7bff7e0e275afb95fe04f77fc7866df9eb37982 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 28 Mar 2025 14:54:35 +0100 Subject: Add some newlines in HTML output to make it a little easier to read. --- src/verify_report.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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 type = {}) override { if (type) { - _file.puts(dcp::String::compose("
  • %2
  • ", *type, text).c_str()); + _file.puts(dcp::String::compose("
  • %2
  • \n", *type, text).c_str()); } else { - _file.puts(dcp::String::compose("
  • %1
  • ", text).c_str()); + _file.puts(dcp::String::compose("
  • %1
  • \n", text).c_str()); } } -- cgit v1.2.3