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?
|
2012-11-27 22:49:22 +01:00
|
|
|
%div{class: user_color_scheme_class}
|
|
|
|
= raw blob.colorize(formatter: :gitlab)
|
2012-10-15 20:56:58 +02:00
|
|
|
- else
|
2012-11-26 05:14:05 +01:00
|
|
|
%p.nothing_here_message Empty file
|