0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-26 23:44:01 +01:00

modules/web_hook: Remove various code tag blocks.

This commit is contained in:
Jason Volk 2021-08-08 07:00:23 -07:00
parent 49fb5b13a2
commit 9f656b872a

View file

@ -420,7 +420,7 @@ github_handle__gollum(std::ostream &out,
out out
<< " " << " "
<< "<blockquote>" << "<blockquote>"
<< "<pre><code>" << "<pre>"
; ;
static const auto delim("\\r\\n"); static const auto delim("\\r\\n");
@ -433,7 +433,7 @@ github_handle__gollum(std::ostream &out,
out out
<< "" << ""
<< "</code></pre>" << "</pre>"
<< "</blockquote>" << "</blockquote>"
; ;
} }
@ -706,9 +706,9 @@ github_handle__pull_request(std::ostream &out,
if(!empty(body)) if(!empty(body))
out << ' ' out << ' '
<< "<pre><code>" << "<pre>"
<< body << body
<< "</code></pre>" << "</pre>"
<< ' ' << ' '
; ;
else else
@ -889,7 +889,7 @@ github_handle__issues(std::ostream &out,
{ {
out << " " out << " "
<< "<blockquote>" << "<blockquote>"
<< "<pre><code>" << "<pre>"
; ;
static const auto delim("\\r\\n"); static const auto delim("\\r\\n");
@ -901,7 +901,7 @@ github_handle__issues(std::ostream &out,
}); });
out << "" out << ""
<< "</code></pre>" << "</pre>"
<< "</blockquote>" << "</blockquote>"
; ;
} }
@ -1072,7 +1072,7 @@ github_handle__issue_comment(std::ostream &out,
{ {
out << " " out << " "
<< "<blockquote>" << "<blockquote>"
<< "<pre><code>" << "<pre>"
; ;
static const auto delim("\\r\\n"); static const auto delim("\\r\\n");
@ -1084,7 +1084,7 @@ github_handle__issue_comment(std::ostream &out,
}); });
out << "" out << ""
<< "</code></pre>" << "</pre>"
<< "</blockquote>" << "</blockquote>"
; ;
} }