mirror of
https://codeberg.org/davrot/forgejo.git
synced 2025-05-16 11:00:02 +02:00
fix link
This commit is contained in:
parent
c3532718a7
commit
21379e30a1
3 changed files with 17 additions and 5 deletions
|
@ -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)))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue