gitlab-org--gitlab-foss/app/views/projects/blob/_text.html.haml

14 lines
337 B
Plaintext
Raw Normal View History

2012-10-15 18:56:58 +00:00
- if gitlab_markdown?(blob.name)
.file-content.wiki
2012-10-15 18:56:58 +00:00
= preserve do
= markdown(blob.data)
- elsif markup?(blob.name)
.file-content.wiki
= render_markup(blob.name, blob.data)
2012-10-15 18:56:58 +00:00
- else
.file-content.code
2012-10-15 18:56:58 +00:00
- unless blob.empty?
= render 'shared/file_hljs', blob: blob
2012-10-15 18:56:58 +00:00
- else
.nothing-here-block Empty file