提交 06d6f443 编写于 作者: M Marin Jankovski

Check for wiki.

上级 817399e3
......@@ -59,10 +59,16 @@ module GitlabMarkdownHelper
end
end
def create_relative_links(text, project_path_with_namespace, ref)
def create_relative_links(text, project_path_with_namespace, ref, wiki = false)
links = text.split("\n").map { |a| a.scan(/\]\(([^(]+)\)/) }.reject{|b| b.empty? }.flatten.reject{|c| c.include?("http" || "www")}
links.each do |string|
text.gsub!(string, "/#{project_path_with_namespace}/blob/#{ref}/#{string}")
new_link = [
project_path_with_namespace,
wiki ? "wiki":"blob",
ref,
string
].compact.join("/")
text.gsub!(string, "/#{new_link}")
end
text
end
......
......@@ -34,10 +34,14 @@ class Redcarpet::Render::GitlabHTML < Redcarpet::Render::HTML
end
def preprocess(full_document)
h.create_relative_links(full_document, @project.path_with_namespace, @ref)
h.create_relative_links(full_document, @project.path_with_namespace, @ref, is_wiki?)
end
def postprocess(full_document)
h.gfm(full_document)
end
def is_wiki?
@template.instance_variable_get("@wiki")
end
end
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册