Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/tree/blob/_text.html.haml')
-rw-r--r--app/views/tree/blob/_text.html.haml15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/views/tree/blob/_text.html.haml b/app/views/tree/blob/_text.html.haml
new file mode 100644
index 00000000000..c506a39f338
--- /dev/null
+++ b/app/views/tree/blob/_text.html.haml
@@ -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