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

notebook_presenter.rb « blobs « presenters « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 16ae1e711918755c763fd99d656f5b4db58c9475 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Blobs
  class NotebookPresenter < ::BlobPresenter
    def gitattr_language
      'md'
    end
  end
end