Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions routers/repo/milestone.go
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,8 @@ func MilestoneIssuesAndPulls(ctx *context.Context) {
return
}

milestone.RenderedContent = string(markdown.Render([]byte(milestone.Content), ctx.Repo.RepoLink, ctx.Repo.Repository.ComposeMetas()))

ctx.Data["Title"] = milestone.Name
ctx.Data["Milestone"] = milestone

Expand Down
4 changes: 3 additions & 1 deletion templates/repo/issue/milestone_issues.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@
<div class="ui three column stackable grid">
<div class="column">
<h3>{{.Milestone.Name}}</h3>
<div class="content">
{{.Milestone.RenderedContent|Str2html}}
</div>
</div>
<div class="column center aligned">

</div>
{{if not .Repository.IsArchived}}
<div class="column right aligned">
Expand Down