From 5c76b6c976b57e9f87a755d1aa55570132fd6523 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Sat, 9 May 2020 19:19:16 -0700 Subject: [PATCH] modules/web_hook: Use non-html newline for issue comment. --- modules/web_hook.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/web_hook.cc b/modules/web_hook.cc index d17c8df35..f61aec9c1 100644 --- a/modules/web_hook.cc +++ b/modules/web_hook.cc @@ -1061,7 +1061,7 @@ github_handle__issue_comment(std::ostream &out, auto lines(split(body, delim)); do { out << lines.first - << "
" + << "\\n" ; lines = split(lines.second, delim);