gitlabhq/app/views/tree/blob/_text.html.haml

16 lines
493 B
Plaintext
Raw Normal View History

2012-10-15 20:56:58 +02:00
- 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
2012-11-07 12:31:26 +01:00
= raw blob.colorize(options: { linenos: true, lineanchors: :line, anchorlinenos: true })
2012-10-15 20:56:58 +02:00
- else
%h4.nothing_here_message Empty file