muse-dl/src/book.cr

14 lines
238 B
Crystal

require "./infoparser.cr"
require "myhtml"
module Muse::Dl
class Book
@info = Hash(String, String).new
getter :info
def initialize(html : String)
@info = InfoParser.infobox(Myhtml::Parser.new html)
end
end
end