package ops
Type Members
-
trait
BinaryOutputOps[F[_]] extends AnyRef
API for specifying the output for a binary format like EPUB or PDF.
API for specifying the output for a binary format like EPUB or PDF.
It allows any class merging in this trait to define all output related operations in terms of the only abstract method
toOutput
. -
abstract
class
IOBuilderOps[T[_[_]]] extends AnyRef
Builder step that allows to choose between sequential and parallel execution and specify the effect type.
-
trait
InputOps[F[_]] extends AnyRef
API for specifying the tree of character inputs for a parsing operation.
API for specifying the tree of character inputs for a parsing operation.
It allows any class merging in this trait to define all input related operations in terms of the only abstract method
fromInput
. -
trait
TextOutputOps[F[_]] extends AnyRef
API for specifying the tree of character outputs for a rendering operation.
API for specifying the tree of character outputs for a rendering operation.
It allows any class merging in this trait to define all input related operations in terms of the only abstract method
toOutput
. -
abstract
class
TreeMapperOps[F[_]] extends AnyRef
Operations for builders of transformers that allow to modify the tree or documents between parsing and rendering.
Operations for builders of transformers that allow to modify the tree or documents between parsing and rendering.
This hook differs from the rewrite rules in two ways: first it does not only operate on the AST nodes of a document, therefore it can also change its path or config. Secondly it allows for effectful transformations which are not available in the pure laika-core module.