Merge pull request #821 from oreofish/showmarkdown

show rendered file if it is .markdown file
This commit is contained in:
Dmitriy Zaporozhets 2012-05-15 00:18:49 -07:00
commit 17bd6b13bc

View file

@ -9,6 +9,12 @@
= link_to "raw", blob_project_ref_path(@project, @ref, :path => params[:path]), :class => "right", :target => "_blank"
= link_to "history", project_commits_path(@project, :path => params[:path], :ref => @ref), :class => "right", :style => "margin-right:10px;"
- if file.text?
- if name =~ /\.(md|markdown)$/i
#tree-readme-holder
.readme
= preserve do
= markdown(file.data)
- else
.view_file_content
- unless file.empty?
%div{:class => current_user.dark_scheme ? "black" : "white"}