Fix snippet render issue cause of haml preserve
This commit is contained in:
parent
29636d4dab
commit
899afd0067
3 changed files with 16 additions and 22 deletions
13
app/views/snippets/_blob.html.haml
Normal file
13
app/views/snippets/_blob.html.haml
Normal file
|
@ -0,0 +1,13 @@
|
|||
.file_holder
|
||||
.file_title
|
||||
%i.icon-file
|
||||
%strong= @snippet.file_name
|
||||
%span.options
|
||||
= link_to "raw", raw_project_snippet_path(@project, @snippet), class: "btn very_small", target: "_blank"
|
||||
.file_content.code
|
||||
- unless @snippet.content.empty?
|
||||
%div{class: current_user.dark_scheme ? "black" : "white"}
|
||||
:preserve
|
||||
#{raw @snippet.colorize(formatter: :gitlab)}
|
||||
- else
|
||||
%p.nothing_here_message Empty file
|
Loading…
Add table
Add a link
Reference in a new issue