diff options
author | silverwind <me@silverwind.io> | 2021-03-20 10:36:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-20 10:36:52 +0100 |
commit | d05539eb3e49542ba99af8f4add677f410246aa7 (patch) | |
tree | 7b12c83ea12aebd22507774f8b9db9789320f840 /templates/repo/issue/milestone_issues.tmpl | |
parent | bb5eb849f2ae2316be8f6f1da96cf3a655733d22 (diff) | |
download | gitea-d05539eb3e49542ba99af8f4add677f410246aa7.tar.gz gitea-d05539eb3e49542ba99af8f4add677f410246aa7.zip |
Fix markdown rendering in milestone content (#15056)
- Add missing markdown class for rendered markdown.
- Increase font size of milestone name in list.
Fixes: https://github.com/go-gitea/gitea/issues/15046
Diffstat (limited to 'templates/repo/issue/milestone_issues.tmpl')
-rw-r--r-- | templates/repo/issue/milestone_issues.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/repo/issue/milestone_issues.tmpl b/templates/repo/issue/milestone_issues.tmpl index 4f4a91b211..f977074fea 100644 --- a/templates/repo/issue/milestone_issues.tmpl +++ b/templates/repo/issue/milestone_issues.tmpl @@ -4,8 +4,8 @@ <div class="ui container"> <div class="ui three column stackable grid"> <div class="column"> - <h3>{{.Milestone.Name}}</h3> - <div class="content"> + <h1>{{.Milestone.Name}}</h1> + <div class="markdown content"> {{.Milestone.RenderedContent|Str2html}} </div> </div> |