0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-08 13:08:56 +02: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
<< " "
<< "<blockquote>"
<< "<pre><code>"
<< "<pre>"
;
static const auto delim("\\r\\n");
@ -433,7 +433,7 @@ github_handle__gollum(std::ostream &out,
out
<< ""
<< "</code></pre>"
<< "</pre>"
<< "</blockquote>"
;
}
@ -706,9 +706,9 @@ github_handle__pull_request(std::ostream &out,
if(!empty(body))
out << ' '
<< "<pre><code>"
<< "<pre>"
<< body
<< "</code></pre>"
<< "</pre>"
<< ' '
;
else
@ -889,7 +889,7 @@ github_handle__issues(std::ostream &out,
{
out << " "
<< "<blockquote>"
<< "<pre><code>"
<< "<pre>"
;
static const auto delim("\\r\\n");
@ -901,7 +901,7 @@ github_handle__issues(std::ostream &out,
});
out << ""
<< "</code></pre>"
<< "</pre>"
<< "</blockquote>"
;
}
@ -1072,7 +1072,7 @@ github_handle__issue_comment(std::ostream &out,
{
out << " "
<< "<blockquote>"
<< "<pre><code>"
<< "<pre>"
;
static const auto delim("\\r\\n");
@ -1084,7 +1084,7 @@ github_handle__issue_comment(std::ostream &out,
});
out << ""
<< "</code></pre>"
<< "</pre>"
<< "</blockquote>"
;
}