Method: Bookmaker::Parser::Epub#navigation

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


110
111
112
113
114
115
116
117
# File 'lib/bookmaker/parser/epub.rb', line 110

def navigation
  sections.map do |section|
    {
      :label => section.html.css("h2:first-of-type").text,
      :content => section.filename
    }
  end
end