laika.io.api

package laika.io.api

Type members

Classlikes

class BinaryTreeRenderer[F[_]](renderer: BinaryRenderer[F], theme: Theme[F])(implicit evidence$1: Async[F], evidence$2: Batch[F])

Renderer that merges a tree of input documents to a single binary output document.

Renderer that merges a tree of input documents to a single binary output document.

Companion:
object

Builder API for constructing a rendering operation for a tree of binary output documents.

Builder API for constructing a rendering operation for a tree of binary output documents.

Companion:
class
class BinaryTreeTransformer[F[_]](parsers: NonEmptyList[MarkupParser], renderer: BinaryRenderer[F], theme: Theme[F], mapper: TreeMapper[F])(implicit evidence$1: Async[F], evidence$2: Batch[F]) extends InputOps[F]

Transformer that merges a tree of input documents to a single binary output document.

Transformer that merges a tree of input documents to a single binary output document.

Companion:
object

Builder API for constructing a transformation for a tree of input and binary output documents.

Builder API for constructing a transformation for a tree of input and binary output documents.

Companion:
class
class TreeParser[F[_]](parsers: NonEmptyList[MarkupParser], val theme: Theme[F])(implicit evidence$1: Async[F], evidence$2: Batch[F]) extends InputOps[F]

Parser for a tree of input documents.

Parser for a tree of input documents.

Companion:
object
object TreeParser

Builder API for constructing a parsing operation for a tree of input documents.

Builder API for constructing a parsing operation for a tree of input documents.

Companion:
class
class TreeRenderer[F[_]](renderer: Renderer, theme: Theme[F])(implicit evidence$1: Async[F], evidence$2: Batch[F])

Renderer for a tree of output documents.

Renderer for a tree of output documents.

Companion:
object

Builder API for constructing a rendering operation for a tree of output documents.

Builder API for constructing a rendering operation for a tree of output documents.

Companion:
class
class TreeTransformer[F[_]](parsers: NonEmptyList[MarkupParser], renderer: Renderer, theme: Theme[F], mapper: TreeMapper[F])(implicit evidence$1: Async[F], evidence$2: Batch[F]) extends InputOps[F]

Transformer for a tree of input and output documents.

Transformer for a tree of input and output documents.

Companion:
object

Builder API for constructing a transformation for a tree of input and output documents.

Builder API for constructing a transformation for a tree of input and output documents.

Companion:
class