show rendered file if it is .markdown file
This commit is contained in:
parent
dd79dba804
commit
465a195117
1 changed files with 13 additions and 7 deletions
|
@ -9,14 +9,20 @@
|
||||||
= link_to "raw", blob_project_ref_path(@project, @ref, :path => params[:path]), :class => "right", :target => "_blank"
|
= 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;"
|
= link_to "history", project_commits_path(@project, :path => params[:path], :ref => @ref), :class => "right", :style => "margin-right:10px;"
|
||||||
- if file.text?
|
- if file.text?
|
||||||
.view_file_content
|
- if name =~ /\.(md|markdown)$/i
|
||||||
- unless file.empty?
|
#tree-readme-holder
|
||||||
%div{:class => current_user.dark_scheme ? "black" : "white"}
|
.readme
|
||||||
= preserve do
|
= preserve do
|
||||||
= raw file.colorize(options: { linenos: 'True'})
|
= markdown(file.data)
|
||||||
- else
|
- else
|
||||||
%h3
|
.view_file_content
|
||||||
%center Empty file
|
- unless file.empty?
|
||||||
|
%div{:class => current_user.dark_scheme ? "black" : "white"}
|
||||||
|
= preserve do
|
||||||
|
= raw file.colorize(options: { linenos: 'True'})
|
||||||
|
- else
|
||||||
|
%h3
|
||||||
|
%center Empty file
|
||||||
- elsif file.image?
|
- elsif file.image?
|
||||||
.view_file_content_image
|
.view_file_content_image
|
||||||
%img{ :src => "data:#{file.mime_type};base64,#{Base64.encode64(file.data)}"}
|
%img{ :src => "data:#{file.mime_type};base64,#{Base64.encode64(file.data)}"}
|
||||||
|
|
Loading…
Reference in a new issue