mirror of
https://github.com/go-gitea/gitea
synced 2025-07-10 04:27:22 +00:00
fix link
This commit is contained in:
@ -36,7 +36,7 @@ func isLink(link []byte) bool {
|
||||
func IsMarkdownFile(name string) bool {
|
||||
name = strings.ToLower(name)
|
||||
switch filepath.Ext(name) {
|
||||
case "md", "markdown":
|
||||
case "md", "markdown", "mdown":
|
||||
return true
|
||||
}
|
||||
return false
|
||||
@ -61,7 +61,7 @@ type CustomRender struct {
|
||||
func (options *CustomRender) Link(out *bytes.Buffer, link []byte, title []byte, content []byte) {
|
||||
if len(link) > 0 && !isLink(link) {
|
||||
if link[0] == '#' {
|
||||
link = append([]byte(options.urlPrefix), link...)
|
||||
// link = append([]byte(options.urlPrefix), link...)
|
||||
} else {
|
||||
link = []byte(path.Join(options.urlPrefix, string(link)))
|
||||
}
|
||||
|
Reference in New Issue
Block a user