Renderer

laika.api.Renderer$
See theRenderer companion class
object Renderer

Entry point for building a Renderer instance.

Attributes

Companion
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Renderer.type

Members list

Value members

Concrete methods

def of[FMT](format: RenderFormat[FMT]): RendererBuilder[FMT]

Returns a new builder instance for the specified render format.

Returns a new builder instance for the specified render format.

The format is usually an object provided by the library or a plugin that is capable of producing a specific output format like HTML.

Attributes

def of[FMT, PP](format: TwoPhaseRenderFormat[FMT, PP]): TwoPhaseRendererBuilder[FMT, PP]

Returns a new builder instance for the specified two-phase render format.

Returns a new builder instance for the specified two-phase render format.

The format is usually an object provided by the library or a plugin that is capable of producing a specific output format like EPUB or PDF.

While the builder API for two-phase renderers is defined as part of the laika-core module, the concrete implementations of this renderer type that this library provides (EPUB and PDF) reside in sub-modules as they require the functionality of the laika-io module.

Attributes