laika.render

package laika.render

Type members

Classlikes

Default factory for ASTFormatters, based on a provided RenderContext.

Default factory for ASTFormatters, based on a provided RenderContext.

object ASTRenderer extends (TextFormatter, Element) => String

Default renderer implementation for the Formatted AST output format.

Default renderer implementation for the Formatted AST output format.

abstract class BaseFormatter[Rep <: BaseFormatter[Rep]](renderChild: (Rep, Element) => String, currentElement: Element, parents: List[Element], indentation: Indentation, messageFilter: MessageFilter)

API basis for renderers that produce character output.

API basis for renderers that produce character output.

Value parameters:
currentElement

the active element currently being rendered

indentation

the indentation mechanism for this formatter

messageFilter

the filter to apply before rendering runtime messages

parents

the stack of parent elements of this formatter in recursive rendering, with the root element being the last in the list

renderChild

the function to use for rendering child elements

case class FOFormatter(renderChild: (FOFormatter, Element) => String, currentElement: Element, parents: List[Element], pathTranslator: PathTranslator, path: Path, styles: StyleDeclarationSet, indentation: Indentation, messageFilter: MessageFilter) extends TagFormatter[FOFormatter] with FOProperties

API for renderers that produce XSL-FO output.

API for renderers that produce XSL-FO output.

Value parameters:
currentElement

the active element currently being rendered

indentation

the indentation mechanism for this formatter

messageFilter

the filter to apply before rendering runtime messages

parents

the stack of parent elements of this formatter in recursive rendering, with the root element being the last in the list

path

the virtual path of the document getting rendered, used for generating unique ids

pathTranslator

translates paths of input documents to the corresponding output path

renderChild

the function to use for rendering child elements

styles

the styles to apply when writing the attributes of an element

Companion:
object

Companion providing tree elements specific to the XSL-FO renderer. These are usually not part of the document AST produced by a parser, but only inserted dynamically during the render process to drive features specific to FO output.

Companion providing tree elements specific to the XSL-FO renderer. These are usually not part of the document AST produced by a parser, but only inserted dynamically during the render process to drive features specific to FO output.

Companion:
class

Mapping of XSL-FO tag names to their supported properties. All properties not supported by Apache FOP are omitted.

Mapping of XSL-FO tag names to their supported properties. All properties not supported by Apache FOP are omitted.

object FORenderer extends (FOFormatter, Element) => String

Default renderer implementation for the XSL-FO output format.

Default renderer implementation for the XSL-FO output format.

case class HTMLFormatter(renderChild: (HTMLFormatter, Element) => String, currentElement: Element, parents: List[Element], pathTranslator: PathTranslator, path: Path, indentation: Indentation, messageFilter: MessageFilter, closeEmptyTags: Boolean) extends TagFormatter[HTMLFormatter]

API for renderers that produce HTML output.

API for renderers that produce HTML output.

Value parameters:
currentElement

the active element currently being rendered

indentation

the indentation mechanism for this formatter

messageFilter

the filter to apply before rendering runtime messages

parents

the stack of parent elements of this formatter in recursive rendering, with the root element being the last in the list

path

the virtual (translated) path of the document getting rendered

pathTranslator

translates paths of input documents to the corresponding output path

renderChild

the function to use for rendering child elements

Companion:
object

Default factory for HTMLFormatters, based on a provided RenderContext.

Default factory for HTMLFormatters, based on a provided RenderContext.

Companion:
class
class HTMLRenderer(fileSuffix: String, format: String) extends (HTMLFormatter, Element) => String

Default renderer implementation for the HTML output format.

Default renderer implementation for the HTML output format.

Companion:
object
object HTMLRenderer extends HTMLRenderer
Companion:
class
case class Indentation(currentLevel: Int, numSpaces: Int, dotted: Boolean)

Represents the current indentation level of a formatter instance.

Represents the current indentation level of a formatter instance.

Value parameters:
currentLevel

the level of indentation (number of characters)

dotted

indicates whether the indentation happens with a dot pattern or with just whitespace

numSpaces

the number of space characters to add when creating the next level of indentation from this instance

Companion:
object

Default Indentation instances.

Default Indentation instances.

Companion:
class
abstract class TagFormatter[Rep <: BaseFormatter[Rep]](renderChild: (Rep, Element) => String, currentElement: Element, parents: List[Element], pathTranslator: PathTranslator, indentation: Indentation, messageFilter: MessageFilter) extends BaseFormatter[Rep]

Base type for formatters that produce tag-based output formats like XML or HTML. Extends the BaseFormatter and adds methods for writing text with special characters as entities and for conveniently writing tags with attributes.

Base type for formatters that produce tag-based output formats like XML or HTML. Extends the BaseFormatter and adds methods for writing text with special characters as entities and for conveniently writing tags with attributes.

Value parameters:
currentElement

the active element currently being rendered

indentation

the indentation mechanism for this formatter

messageFilter

the filter to apply before rendering runtime messages

parents

the stack of parent elements of this formatter in recursive rendering, with the root element being the last in the list

pathTranslator

translates paths of input documents to the corresponding output path

renderChild

the function to use for rendering child elements

Companion:
object
Companion:
class
case class TextFormatter(renderChild: (TextFormatter, Element) => String, currentElement: Element, parents: List[Element], indentation: Indentation) extends BaseFormatter[TextFormatter]

API for renderers that produce text output.

API for renderers that produce text output.

Value parameters:
currentElement

the active element currently being rendered

indentation

the indentation mechanism for this formatter

parents

the stack of parent elements of this formatter in recursive rendering, with the root element being the last in the list

renderChild

the function to use for rendering child elements

Companion:
object

Default factory for TextFormatters, based on a provided RenderContext.

Default factory for TextFormatters, based on a provided RenderContext.

Companion:
class

Default factory for XHTMLFormatters, based on a provided RenderContext. It differs from an standard HTMLFormatter solely in that it close empty tags. Therefore it offers the same API and shares the type HTMLFormatter so that shared custom renderers can be built for HTML and XHTML.

Default factory for XHTMLFormatters, based on a provided RenderContext. It differs from an standard HTMLFormatter solely in that it close empty tags. Therefore it offers the same API and shares the type HTMLFormatter so that shared custom renderers can be built for HTML and XHTML.