summaryrefslogtreecommitdiffstats
path: root/modules/base
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2016-02-04 22:51:40 -0500
committerUnknwon <u@gogs.io>2016-02-04 22:51:40 -0500
commit8e40f86d2c66268fcd4ff80ff5a35ba66cece581 (patch)
treea1369066739d2f3ef75c45b770adfba2c6bad73c /modules/base
parentddf9fa06c7725820176ae75ae0b7e85c25f2886b (diff)
downloadgitea-8e40f86d2c66268fcd4ff80ff5a35ba66cece581.tar.gz
gitea-8e40f86d2c66268fcd4ff80ff5a35ba66cece581.zip
#2556 handle space in image URL
Diffstat (limited to 'modules/base')
-rw-r--r--modules/base/markdown.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/base/markdown.go b/modules/base/markdown.go
index 265deffa3e..8b3c8f435c 100644
--- a/modules/base/markdown.go
+++ b/modules/base/markdown.go
@@ -157,6 +157,8 @@ func (options *CustomRender) ListItem(out *bytes.Buffer, text []byte, flags int)
var (
svgSuffix = []byte(".svg")
svgSuffixWithMark = []byte(".svg?")
+ spaceBytes = []byte(" ")
+ spaceEncodedBytes = []byte("%20")
)
func (r *CustomRender) Image(out *bytes.Buffer, link []byte, title []byte, alt []byte) {
@@ -172,7 +174,8 @@ func (r *CustomRender) Image(out *bytes.Buffer, link []byte, title []byte, alt [
if link[0] != '/' {
prefix += "/"
}
- link = []byte(prefix + string(link))
+ link = bytes.Replace([]byte((prefix + string(link))), spaceBytes, spaceEncodedBytes, -1)
+ fmt.Println(333, string(link))
}
}