Sha256: f8f8bab6be02e1440c94dfe8644f223a5d89bc99ffeba5175a89b0e691a673a1
Contents?: true
Size: 744 Bytes
Versions: 14
Compression:
Stored size: 744 Bytes
Contents
# = epubmaker.rb -- EPUB production set. # # Copyright (c) 2010-2017 Kenshi Muto # # This program is free software. # You can distribute or modify this program under the terms of # the GNU LGPL, Lesser General Public License version 2.1. # For details of the GNU LGPL, see the file "COPYING". # # == Quick usage # require 'epubmaker' # producer = EPUBMaker::Producer.new # config = producer.load("config.yml") # producer.contents.push(EPUBMaker::Content.new({"file" => "ch01.xhtml"})) # producer.contents.push(EPUBMaker::Content.new({"file" => "ch02.xhtml"})) # ... # producer.import_imageinfo("images") # producer.produce require 'epubmaker/producer' require 'epubmaker/content' require 'epubmaker/epubv2' require 'epubmaker/epubv3'
Version data entries
14 entries across 14 versions & 1 rubygems