Extract out tree/blob/* partials
This commit is contained in:
parent
1f4d8eac24
commit
d060856044
4 changed files with 28 additions and 27 deletions
15
app/views/tree/blob/_text.html.haml
Normal file
15
app/views/tree/blob/_text.html.haml
Normal file
|
@ -0,0 +1,15 @@
|
|||
- if gitlab_markdown?(blob.name)
|
||||
.file_content.wiki
|
||||
= preserve do
|
||||
= markdown(blob.data)
|
||||
- elsif markup?(blob.name)
|
||||
.file_content.wiki
|
||||
= raw GitHub::Markup.render(blob.name, blob.data)
|
||||
- else
|
||||
.file_content.code
|
||||
- unless blob.empty?
|
||||
%div{class: current_user.dark_scheme ? "black" : "white"}
|
||||
= preserve do
|
||||
= raw blob.colorize(options: { linenos: 'True'})
|
||||
- else
|
||||
%h4.nothing_here_message Empty file
|
Loading…
Add table
Add a link
Reference in a new issue