class ContainerWriter extends AnyRef
Creates the EPUB container based on a document tree and the HTML result of a preceding render operation.
- Alphabetic
- By Inheritance
- ContainerWriter
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new ContainerWriter()
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
collectInputs[F[_]](result: RenderedTreeRoot[F], config: BookConfig)(implicit arg0: Sync[F]): Seq[BinaryInput[F]]
Collects all documents that need to be written to the EPUB container.
Collects all documents that need to be written to the EPUB container.
This includes:
- All rendered HTML in the provided result tree. - All static content in the provided document tree, copied to the same relative path within the EPUB container. - Metadata and navigation files as required by the EPUB specification, auto-generated from the document tree and the configuration of this instance.
- result
the result of the render operation as a tree
- returns
a list of all documents that need to be written to the EPUB container.
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
write[F[_]](result: RenderedTreeRoot[F], output: BinaryOutput[F])(implicit arg0: Sync[F]): F[Unit]
Produces an EPUB container from the specified document tree.
Produces an EPUB container from the specified document tree.
This includes:
- All rendered HTML in the provided result tree. - All static content in the provided document tree, copied to the same relative path within the EPUB container. - Metadata and navigation files as required by the EPUB specification, auto-generated from the document tree and the configuration of this instance.
- result
the result of the render operation as a tree
- output
the output to write the final result to