Fix wiki inter-links with spaces (#3560) (#3632)

pull/3640/head
Lauris BH 6 years ago committed by Bo-Yi Wu
parent 93f34fd8a2
commit efc5a7171b
  1. 6
      modules/markup/html.go

@ -391,7 +391,11 @@ func RenderShortLinks(rawBytes []byte, urlPrefix string, noLink bool, isWikiMark
}
absoluteLink := isLink([]byte(link))
if !absoluteLink {
link = strings.Replace(link, " ", "+", -1)
if image {
link = strings.Replace(link, " ", "+", -1)
} else {
link = strings.Replace(link, " ", "-", -1)
}
}
if image {
if !absoluteLink {

Loading…
Cancel
Save