gitlabhq/app/views/tree/blob/_text.html.haml
Riyad Preukschas c42ada9bee Allow linking to file lines
Supported formats: "L12" for single lines and "L12-34" for multiple lines
2012-11-10 00:03:46 +01:00

16 lines
444 B
Plaintext

- 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(formatter: :gitlab)
- else
%h4.nothing_here_message Empty file