diff --git a/routers/user/profile.go b/routers/user/profile.go index 82fab4ad8..653d3cea2 100644 --- a/routers/user/profile.go +++ b/routers/user/profile.go @@ -12,6 +12,7 @@ import ( "code.gitea.io/gitea/models" "code.gitea.io/gitea/modules/context" + "code.gitea.io/gitea/modules/markup/markdown" "code.gitea.io/gitea/modules/setting" "code.gitea.io/gitea/modules/util" "code.gitea.io/gitea/routers/org" @@ -97,6 +98,10 @@ func Profile(ctx *context.Context) { // so everyone would get the same empty heatmap ctx.Data["EnableHeatmap"] = setting.Service.EnableUserHeatmap && !ctxUser.KeepActivityPrivate ctx.Data["HeatmapUser"] = ctxUser.Name + if len(ctxUser.Description) != 0 { + ctx.Data["RenderedDescription"] = string(markdown.Render([]byte(ctxUser.Description), ctx.Repo.RepoLink, map[string]string{"mode": "document"})) + } + showPrivate := ctx.IsSigned && (ctx.User.IsAdmin || ctx.User.ID == ctxUser.ID) orgs, err := models.GetOrgsByUserID(ctxUser.ID, showPrivate) diff --git a/templates/user/profile.tmpl b/templates/user/profile.tmpl index 563bc7830..bc2960b3b 100644 --- a/templates/user/profile.tmpl +++ b/templates/user/profile.tmpl @@ -34,10 +34,9 @@ {{.Owner.Website}} {{end}} - {{if .Owner.Description}} + {{if $.RenderedDescription}}
  • - {{svg "octicon-info" 16}} - {{.Owner.Description}} +
    {{$.RenderedDescription|Str2html}}
  • {{end}} {{range .OpenIDs}}