Sha256: 5e9931447046c327c00fdad8684e25a338004b04926ff702a459938056e57de2
Contents?: true
Size: 1.42 KB
Versions: 1
Compression:
Stored size: 1.42 KB
Contents
# -*- coding: utf-8 -*- module ReVIEW class Configure def self.values { # These parameters can be overridden by YAML file. "bookname"=> "example", # it defines epub file name also "booktitle" => "Re:VIEW EPUBサンプル", "title" => nil, "aut" => nil, # author "prt" => nil, # printer(publisher) "asn" => nil, # associated name "ant" => nil, # bibliographic antecedent "clb" => nil, # Collaborator "edt" => nil, # Editor "dsr" => nil, # Designer "ill" => nil, # Illustrator "pht" => nil, # Photographer "trl" => nil, # Translator "date" => nil, # publishing date "rights" => nil, # Copyright messages "description" => nil, # Description "urnid" => nil, # Identifier (nil makes random uuid) "stylesheet" => "stylesheet.css", # stylesheet file "coverfile" => nil, # content file of body of cover page "mytoc" => nil, # whether make own table of contents or not "params" => "", # specify review2html parameters "toclevel" => 3, # level of toc "secnolevel" => 2, # level of section # "posthook" => nil, # command path of post hook "epubversion" => 2, "titlepage" => true, # Use title page "toc" => true, # Use table of contents "colophon" => nil, # Use colophon "debug" => nil, # debug flag } end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
review-1.2.0 | lib/review/configure.rb |