Browse Source

Improve profile readme rendering (#25988) (#26453)

manual backport of #25988 to v1.20

- Tell the renderer to use the `document` mode, so it's consistent with
other renderers.
- Use the same padding as `.file-view.markup`, so it's consistent with
other containers that contain markup rendering.
- Resolves https://codeberg.org/forgejo/forgejo/issues/833

Co-authored-by: Earl Warren <109468362+earl-warren@users.noreply.github.com>
tags/v1.20.3
crystal 10 months ago
parent
commit
f155cf60d3
No account linked to committer's email address
2 changed files with 2 additions and 1 deletions
  1. 1
    0
      routers/web/user/profile.go
  2. 1
    1
      web_src/css/user.css

+ 1
- 0
routers/web/user/profile.go View File

@@ -115,6 +115,7 @@ func Profile(ctx *context.Context) {
profileContent, err := markdown.RenderString(&markup.RenderContext{
Ctx: ctx,
GitRepo: gitRepo,
Metas: map[string]string{"mode": "document"},
}, bytes)
if err != nil {
ctx.ServerError("RenderString", err)

+ 1
- 1
web_src/css/user.css View File

@@ -122,7 +122,7 @@
}

#readme_profile {
padding: 10px;
padding: 1em 2em;
border-radius: 0.28571429rem;
background: var(--color-card);
border: 1px solid var(--color-secondary);

Loading…
Cancel
Save