muse-dl/src/book.cr

14 lines
238 B
Crystal
Raw Normal View History

2020-03-28 20:02:55 +00:00
require "./infoparser.cr"
2020-03-28 20:14:43 +00:00
require "myhtml"
2020-03-28 20:02:55 +00:00
module Muse::Dl
class Book
@info = Hash(String, String).new
getter :info
def initialize(html : String)
2020-03-28 20:14:43 +00:00
@info = InfoParser.infobox(Myhtml::Parser.new html)
2020-03-28 20:02:55 +00:00
end
end
end