package ops
Type Members
-
abstract
class
AsyncIOBuilderOps[T[_[_]]] extends AnyRef
Builder step that allows to choose between sequential and parallel execution and specify the effect type.
Builder step that allows to choose between sequential and parallel execution and specify the effect type.
This API has the additional requirement that even sequential execution requires
Async
, reflecting the needs of binary renderers which might integrate with impure tools that require the use of aDispatcher
. -
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
. -
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
. -
abstract
class
SyncIOBuilderOps[T[_[_]]] extends AnyRef
Builder step that allows to choose between sequential and parallel execution and specify the effect type.
-
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.