trait RstExtensionRegistry extends ExtensionBundle
Registry for custom reStructuredText extensions. Application code can define any number of instances mixing in this trait and then pass them to Parse, Render or Transform operations:
object MyExtensions extends RstExtensionRegistry { val spanDirectives = Seq(...) val blockDirectives = Seq(...) val textRoles = Seq(...) } object OtherExtensions extends RstExtensionRegistry { [...] } val transformer = Transformer .from(ReStructuredText) .to(HTML) .using(MyDirectives, OtherDirectives) .build
In contrast to the original Python implementation, this API has been redesigned to be a more idiomatic, concise and type-safe Scala DSL. See the documentation for the methods of this trait for concrete examples on how to implement an extension.
The following extension types are available:
- Block Directives - an extension hook for adding new block level elements to
reStructuredText markup. Use the
blockDirectives
method of this class to add directive implementations to the parser. Specification entry: http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html#directives - Substitution Definitions - an extension hook for adding new span level elements to
reStructuredText markup that can be used by substitution references (like
|subst|
). Use thespanDirectives
method of this class to add directive implementations to the parser that can be used as substitution definitions. Specification entry: http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html#substitution-definitions - Interpreted Text Roles - an extension hook for adding new dynamic span level elements to
reStructuredText markup. In contrast to substitution definitions the implementation of a text
role uses the text from the occurrences in the markup referring to the role as input.
Use the
textRoles
method of this class to add custom text role implementations to the parser that can be referred to by interpreted text. Specification entry: http://docutils.sourceforge.net/docs/ref/rst/directives.html#custom-interpreted-text-roles
- Alphabetic
- By Inheritance
- RstExtensionRegistry
- ExtensionBundle
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
-
abstract
def
blockDirectives: Seq[Directive[Block]]
Registers the specified block directives.
Registers the specified block directives.
Example:
case class Note (title: String, content: Seq[Block]) extends Block with BlockContainer[Note] object MyDirectives extends RstExtensionRegistry { val blockDirectives = Seq( BlockDirective("note") { (argument() ~ blockContent).map { case title ~ content => Note(title, content) } } ) val spanDirectives = Seq() val textRoles = Seq() } val transformer = Transformer .from(ReStructuredText) .to(HTML) .using(MyDirectives) .build
For more details on implementing directives see laika.rst.ext.Directives.
-
abstract
def
spanDirectives: Seq[Directive[Span]]
Registers the specified span directives.
Registers the specified span directives. These span directives can then be referred to by substitution references.
Example:
object MyDirectives extends RstExtensionRegistry { val spanDirectives = Seq( SpanDirective("replace") { spanContent map SpanSequence } ) val blockDirectives = Seq() val textRoles = Seq() } val transformer = Transformer .from(ReStructuredText) .to(HTML) .using(MyDirectives) .build
For more details on implementing directives see laika.rst.ext.Directives.
-
abstract
def
textRoles: Seq[TextRole]
Registers the specified text roles.
Registers the specified text roles. These text roles may then be used in interpreted text spans.
Example:
val textRole = TextRole("link", "http://www.company.com/main/")(field("base-url")) { (base, text) => Link(List(Text(text)), base + text) } object MyDirectives extends RstExtensionRegistry { val textRoles = Seq(textRole) val spanDirectives = Seq() val blockDirectives = Seq() } val transformer = Transformer .from(ReStructuredText) .to(HTML) .using(MyDirectives) .build
For more details on implementing directives see laika.rst.ext.TextRoles.
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
acceptRawContent: Boolean
Indicates that this bundle deals with raw content embedded in text markup, like HTML.
Indicates that this bundle deals with raw content embedded in text markup, like HTML.
These kind of bundles are disabled by default as Laika is designed to render to multiple output formats from a single input document. With raw content embedded the markup document is tied to a specific output format.
Bundles which have this flag set to true need to be enabled explicitly by the user by calling
withRawContent
on theParse
orTransform
API:val transformer = Transformer.from(Markdown).to(HTML).withRawContent.build
- Definition Classes
- ExtensionBundle
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
baseConfig: Config
Base configuration that serves as a fallback for configuration files in the source directories and/or config headers in markup and template documents.
Base configuration that serves as a fallback for configuration files in the source directories and/or config headers in markup and template documents.
- Definition Classes
- ExtensionBundle
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
defaultTextRole: Option[String]
Overrides the name of the default text role to apply when interpreted text is used in markup without an explicit role name.
-
val
description: String
Short string describing the extension for tooling and logging.
Short string describing the extension for tooling and logging.
- Definition Classes
- RstExtensionRegistry → ExtensionBundle
-
def
docTypeMatcher: PartialFunction[Path, DocumentType]
Specifies the function to use for determining the document type of the input based on its path.
Specifies the function to use for determining the document type of the input based on its path.
Any path for which this function is not defined will be processed by the remaining defined bundles. The documents for paths for which none of the extensions provides a
DocumentType
will be treated as static files to be copied over to the target directory in transformations by default.- Definition Classes
- ExtensionBundle
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
origin: BundleOrigin
Indicates whether the bundle is a built-in default provided by the library, a collection of extensions installed by a markup format or user-defined.
Indicates whether the bundle is a built-in default provided by the library, a collection of extensions installed by a markup format or user-defined.
This is relevant for determining the precedence of installed bundles when merging them, as user-supplied functionality always overrides library defaults.
- Definition Classes
- ExtensionBundle
-
def
parsers: ParserBundle
Specifies extensions and/or replacements for parsers that deal with text markup, templates, CSS or configuration headers.
Specifies extensions and/or replacements for parsers that deal with text markup, templates, CSS or configuration headers.
- Definition Classes
- ExtensionBundle
-
def
processExtension: PartialFunction[ExtensionBundle, ExtensionBundle]
Internal API usually only called by other extension bundles.
Internal API usually only called by other extension bundles.
In some cases a bundle might be an extension of another bundle and needs the opportunity to process and modify that bundle without requiring a direct reference to it. An example is a registry for directives which needs to pass all its registered directives to the bundle which deals with finally creating all the directive parsers.
The partial function should match only on the types of bundles it intends to process and is then allowed to return a new, modified instance of that bundle.
- Definition Classes
- RstExtensionRegistry → ExtensionBundle
-
def
renderOverrides: Seq[RenderOverrides]
The overrides for renderers defined by this bundle.
The overrides for renderers defined by this bundle.
An override is always specific to a particular output format like HTML or PDF. A bundle can contain multiple overrides for the same output format which will be merged before use.
- Definition Classes
- ExtensionBundle
-
def
rewriteRules: Seq[RewriteRulesBuilder]
Specifies rewrite rules to be applied to the document tree model between the parse and render operations.
Specifies rewrite rules to be applied to the document tree model between the parse and render operations.
The specified functions will be invoked for each document, allowing to capture information from the entire document tree before returning the actual rule, which is a partial function from
Element
toOption[Element]
that allows to remove or replace elements from the tree.- Definition Classes
- ExtensionBundle
-
def
slugBuilder: Option[(String) ⇒ String]
Function that receives the text of a headline, the name of a document or directory or a manually assigned identifier, and builds a slug from it that becomes part of the final URL or identifier (depending on output format).
Function that receives the text of a headline, the name of a document or directory or a manually assigned identifier, and builds a slug from it that becomes part of the final URL or identifier (depending on output format).
The result of the function must be:
- a valid identifier in HTML and XML - a valid path segment in a URL - a valid file name
- Definition Classes
- ExtensionBundle
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
val
useInStrictMode: Boolean
Indicates that this bundle should still be used if the user runs a transformation in strict mode.
Indicates that this bundle should still be used if the user runs a transformation in strict mode.
This setting is appropriate if a bundle contains features which are native elements of a text markup language as defined in its specification, but implemented as an extension for technical reasons.
- Definition Classes
- RstExtensionRegistry → ExtensionBundle
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
withBase(base: ExtensionBundle): ExtensionBundle
Returns a new extension bundle by merging the content of this bundle with the content of the base bundle.
Returns a new extension bundle by merging the content of this bundle with the content of the base bundle.
The other bundle is treated as the base of this bundle, which means that:
- in case of optional features a feature defined in this bundle will overwrite a feature defined in the base
- in case of features applied in sequence, the features in this bundle will be applied before the features in the base bundle
- in case of feature collections, the features of this bundle will be merged with those of the base bundle
- Definition Classes
- ExtensionBundle