summaryrefslogtreecommitdiffstats
path: root/routers/init.go
diff options
context:
space:
mode:
authorYarden Shoham <hrsi88@gmail.com>2022-10-22 20:15:52 +0300
committerGitHub <noreply@github.com>2022-10-23 01:15:52 +0800
commit63ebb53fd526021666bd9fab1f9d092380f7a2f4 (patch)
tree138c35a4bbe7dae7110399cd1a145598db248f43 /routers/init.go
parent82ecd3b19eb1382521b7999bd0e2dd977c3b994d (diff)
downloadgitea-63ebb53fd526021666bd9fab1f9d092380f7a2f4.tar.gz
gitea-63ebb53fd526021666bd9fab1f9d092380f7a2f4.zip
Add link to user profile in markdown mention only if user exists (#21533)
Previously mentioning a user would link to its profile, regardless of whether the user existed. This change tests if the user exists and only if it does - a link to its profile is added. * Fixes #3444 Signed-off-by: Yarden Shoham <hrsi88@gmail.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Diffstat (limited to 'routers/init.go')
-rw-r--r--routers/init.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/routers/init.go b/routers/init.go
index 0f2e993413..9045437f87 100644
--- a/routers/init.go
+++ b/routers/init.go
@@ -41,6 +41,7 @@ import (
"code.gitea.io/gitea/services/automerge"
"code.gitea.io/gitea/services/cron"
"code.gitea.io/gitea/services/mailer"
+ markup_service "code.gitea.io/gitea/services/markup"
repo_migrations "code.gitea.io/gitea/services/migrations"
mirror_service "code.gitea.io/gitea/services/mirror"
pull_service "code.gitea.io/gitea/services/pull"
@@ -123,7 +124,7 @@ func GlobalInitInstalled(ctx context.Context) {
highlight.NewContext()
external.RegisterRenderers()
- markup.Init()
+ markup.Init(markup_service.ProcessorHelper())
if setting.EnableSQLite3 {
log.Info("SQLite3 support is enabled")