Use Gitlab Markdown for Markdown files and Gollum to render the rest.
This commit enables the usage of the Gitlab Markdown post processing on all Markdown formatted files. For file types that do not contain Markdown, it defaults to the Gollum native renderer to process the content.
This commit is contained in:
parent
f0aa54e0fb
commit
7665b1de7e
3 changed files with 33 additions and 1 deletions
|
@ -49,4 +49,12 @@ module GitlabMarkdownHelper
|
||||||
|
|
||||||
@markdown.render(text).html_safe
|
@markdown.render(text).html_safe
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def render_wiki_content(wiki_page)
|
||||||
|
if wiki_page.format == :markdown
|
||||||
|
markdown(wiki_page.content)
|
||||||
|
else
|
||||||
|
wiki_page.formatted_content.html_safe
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
.file_holder
|
.file_holder
|
||||||
.file_content.wiki
|
.file_content.wiki
|
||||||
= preserve do
|
= preserve do
|
||||||
= @wiki.formatted_content.html_safe
|
= render_wiki_content(@wiki)
|
||||||
|
|
||||||
- commit = CommitDecorator.new(@wiki.version)
|
- commit = CommitDecorator.new(@wiki.version)
|
||||||
%p.time Last edited by #{commit.author_link(avatar: true, size: 16)} #{time_ago_in_words @wiki.created_at} ago
|
%p.time Last edited by #{commit.author_link(avatar: true, size: 16)} #{time_ago_in_words @wiki.created_at} ago
|
||||||
|
|
|
@ -363,4 +363,28 @@ describe GitlabMarkdownHelper do
|
||||||
markdown(":smile:").should include("src=\"#{url_to_image("emoji/smile")}")
|
markdown(":smile:").should include("src=\"#{url_to_image("emoji/smile")}")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
describe "#render_wiki_content" do
|
||||||
|
before do
|
||||||
|
@wiki = stub('WikiPage')
|
||||||
|
@wiki.stub(:content).and_return('wiki content')
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should use Gitlab Flavored Markdown for markdown files" do
|
||||||
|
@wiki.stub(:format).and_return(:markdown)
|
||||||
|
|
||||||
|
helper.should_receive(:markdown).with('wiki content')
|
||||||
|
|
||||||
|
helper.render_wiki_content(@wiki)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should use the Gollum renderer for all other file types" do
|
||||||
|
@wiki.stub(:format).and_return(:rdoc)
|
||||||
|
formatted_content_stub = stub('formatted_content')
|
||||||
|
formatted_content_stub.should_receive(:html_safe)
|
||||||
|
@wiki.stub(:formatted_content).and_return(formatted_content_stub)
|
||||||
|
|
||||||
|
helper.render_wiki_content(@wiki)
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue