From f57adf3637a5adc6a892b32b664cd3378c93eb77 Mon Sep 17 00:00:00 2001
From: Odin Ugedal <odin@ugedal.com>
Date: Tue, 15 Mar 2016 20:06:45 +0100
Subject: [PATCH] Fix relative links in markdown files

Replace spaces with "%20" in "urlPrefix", before markdon processing.
The spaces were causing blackfriday (markdown processor) to behave
strange. This fixes #2545.
---
 modules/markdown/markdown.go | 1 +
 1 file changed, 1 insertion(+)

diff --git a/modules/markdown/markdown.go b/modules/markdown/markdown.go
index aad0553afe..27fe09b8f4 100644
--- a/modules/markdown/markdown.go
+++ b/modules/markdown/markdown.go
@@ -357,6 +357,7 @@ OUTER_LOOP:
 
 // Render renders Markdown to HTML with special links.
 func Render(rawBytes []byte, urlPrefix string, metas map[string]string) []byte {
+	urlPrefix = strings.Replace(urlPrefix, string(spaceBytes), string(spaceEncodedBytes), -1)
 	result := RenderRaw(rawBytes, urlPrefix)
 	result = PostProcess(result, urlPrefix, metas)
 	result = Sanitizer.SanitizeBytes(result)