1# frozen_string_literal: true
2
3module BlobViewer
4  class Notebook < Base
5    include Rich
6    include ClientSide
7
8    self.partial_name = 'notebook'
9    self.extensions = %w(ipynb)
10    self.binary = false
11    self.switcher_icon = 'doc-text'
12    self.switcher_title = 'notebook'
13  end
14end
15