From 54ca0b2f0923b01ba152a3e2a9efdb6256d95571 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Fri, 6 Nov 2015 11:10:27 -0500 Subject: [PATCH] #1433 images with links in Markdown - #1904 minor fix on image link --- README.md | 2 +- gogs.go | 2 +- modules/base/markdown.go | 11 ++++++++++- templates/.VERSION | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index af73f126e..3e3005197 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra ![](public/img/gogs-large-resize.png) -##### Current version: 0.6.27 Beta +##### Current version: 0.6.28 Beta diff --git a/gogs.go b/gogs.go index 742075aff..a05efadf5 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.27.1105 Beta" +const APP_VER = "0.6.28.1106 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/modules/base/markdown.go b/modules/base/markdown.go index 540ee58f4..e59a6273a 100644 --- a/modules/base/markdown.go +++ b/modules/base/markdown.go @@ -100,11 +100,20 @@ func (options *CustomRender) Link(out *bytes.Buffer, link []byte, title []byte, } func (options *CustomRender) Image(out *bytes.Buffer, link []byte, title []byte, alt []byte) { + prefix := strings.Replace(options.urlPrefix, "/src/", "/raw/", 1) if len(link) > 0 && !isLink(link) { - link = []byte(path.Join(strings.Replace(options.urlPrefix, "/src/", "/raw/", 1), string(link))) + if link[0] != '/' { + prefix += "/" + } + link = []byte(prefix + string(link)) } + fmt.Println(2, string(link)) + out.WriteString(``) options.Renderer.Image(out, link, title, alt) + out.WriteString("") } var ( diff --git a/templates/.VERSION b/templates/.VERSION index 5e5efc302..a943b65b1 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.6.27.1105 Beta \ No newline at end of file +0.6.28.1106 Beta \ No newline at end of file