laika.render

package laika.render

Members list

Concise view

Type members

Classlikes

Default factory for ASTFormatters, based on a provided RenderContext.

Default factory for ASTFormatters, based on a provided RenderContext.

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
object ASTRenderer extends (TextFormatter, Element) => String

Default renderer implementation for the Formatted AST output format.

Default renderer implementation for the Formatted AST output format.

Attributes

Graph
Supertypes
trait (TextFormatter, Element) => String
class Object
trait Matchable
class Any
Self type
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.

Attributes

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

Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
Self type
Rep
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.

Attributes

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
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

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.

Attributes

Companion:
class
Graph
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type

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.

Attributes

Companion:
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Attributes

Companion:
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
object FORenderer extends (FOFormatter, Element) => String

Default renderer implementation for the XSL-FO output format.

Default renderer implementation for the XSL-FO output format.

Attributes

Graph
Supertypes
trait (FOFormatter, Element) => String
class Object
trait Matchable
class Any
Self type
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.

Attributes

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
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Default factory for HTMLFormatters, based on a provided RenderContext.

Default factory for HTMLFormatters, based on a provided RenderContext.

Attributes

Companion:
class
Graph
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
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.

Attributes

Companion:
object
Graph
Supertypes
trait (HTMLFormatter, Element) => String
class Object
trait Matchable
class Any
Known subtypes
object HTMLRenderer.type
object HTMLRenderer extends HTMLRenderer

Attributes

Companion:
class
Graph
Supertypes
trait (HTMLFormatter, Element) => String
class Object
trait Matchable
class Any
Self type
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.

Attributes

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
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Default Indentation instances.

Default Indentation instances.

Attributes

Companion:
class
Graph
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
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.

Attributes

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
Graph
Supertypes
class BaseFormatter[Rep]
class Object
trait Matchable
class Any
Known subtypes
Self type
Rep

Attributes

Companion:
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
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.

Attributes

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
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Default factory for TextFormatters, based on a provided RenderContext.

Default factory for TextFormatters, based on a provided RenderContext.

Attributes

Companion:
class
Graph
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type

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.

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type