Class: Ataru::MarkdownLoader

Inherits:
Object
  • Object
show all
Defined in:
lib/ataru/markdown_loader.rb

Class Method Summary collapse

Class Method Details

.load_file(file_name) ⇒ Object



5
6
7
8
# File 'lib/ataru/markdown_loader.rb', line 5

def self.load_file(file_name)
  text = File.read(file_name)
  Kramdown::Document.new(text, :input => 'GFM')
end