summaryrefslogtreecommitdiffstats
path: root/modules/markup/html_test.go
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2020-08-24 03:44:53 +0200
committerGitHub <noreply@github.com>2020-08-23 21:44:53 -0400
commitee047312a1a3238a8504200f7ded8536ebc838e3 (patch)
treea4e79586f0468725bcf66a083e44c84f9a39ee5b /modules/markup/html_test.go
parent26bf4c51fb900b8a31cfb6d17095515c118a68a1 (diff)
downloadgitea-ee047312a1a3238a8504200f7ded8536ebc838e3.tar.gz
gitea-ee047312a1a3238a8504200f7ded8536ebc838e3.zip
Fix emoji replacements, make emoji images consistent (#12567)
- Fix emoji not being replaced in issue title change text - Make the image attributes consistent, add alt, remove align Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'modules/markup/html_test.go')
-rw-r--r--modules/markup/html_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/markup/html_test.go b/modules/markup/html_test.go
index 69c4e675f5..7f820d3990 100644
--- a/modules/markup/html_test.go
+++ b/modules/markup/html_test.go
@@ -255,7 +255,7 @@ func TestRender_emoji(t *testing.T) {
//Text that should be turned into or recognized as emoji
test(
":gitea:",
- `<p><span class="emoji" aria-label="gitea"><img src="`+setting.StaticURLPrefix+`/img/emoji/gitea.png"/></span></p>`)
+ `<p><span class="emoji" aria-label="gitea"><img alt=":gitea:" src="`+setting.StaticURLPrefix+`/img/emoji/gitea.png"/></span></p>`)
test(
"Some text with 😄 in the middle",