From ac24213d535b5712aeef506c67700dbf067c30c4 Mon Sep 17 00:00:00 2001 From: Joshua Peek Date: Mon, 28 Nov 2011 13:41:43 -0600 Subject: [PATCH] Link to tex image at wiki base path --- lib/gollum/markup.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gollum/markup.rb b/lib/gollum/markup.rb index 049730af..ba1d1969 100644 --- a/lib/gollum/markup.rb +++ b/lib/gollum/markup.rb @@ -98,7 +98,7 @@ module Gollum def process_tex(data) @texmap.each do |id, spec| type, tex = *spec - out = %{#{CGI.escapeHTML(tex)}} + out = %{#{CGI.escapeHTML(tex)}} data.gsub!(id, out) end data