2023-03-24 07:12:23 +01:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package misc
|
|
|
|
|
|
|
|
import (
|
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
|
|
|
"code.gitea.io/gitea/modules/web"
|
|
|
|
"code.gitea.io/gitea/routers/common"
|
2024-02-27 08:12:22 +01:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2023-03-24 07:12:23 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// Markup render markup document to HTML
|
|
|
|
func Markup(ctx *context.Context) {
|
|
|
|
form := web.GetForm(ctx).(*api.MarkupOption)
|
2024-11-23 16:00:18 +01:00
|
|
|
|
|
|
|
re := common.Renderer{
|
|
|
|
Mode: form.Mode,
|
|
|
|
Text: form.Text,
|
|
|
|
URLPrefix: form.Context,
|
|
|
|
FilePath: form.FilePath,
|
|
|
|
BranchPath: form.BranchPath,
|
|
|
|
IsWiki: form.Wiki,
|
|
|
|
}
|
|
|
|
|
|
|
|
re.RenderMarkup(ctx.Base, ctx.Repo)
|
2023-03-24 07:12:23 +01:00
|
|
|
}
|