Method: Bookmaker::Parser::Epub#write_toc!

Defined in:
lib/bookmaker/parser/epub.rb

#write_toc!Object



44
45
46
47
48
49
# File 'lib/bookmaker/parser/epub.rb', line 44

def write_toc!
  toc = TOC::Epub.new(navigation)
  File.open(toc_path, "w") do |file|
    file << toc.to_html
  end
end