object BundleOrigin
- Alphabetic
- By Inheritance
- BundleOrigin
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
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
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
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()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
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()
-
object
Library extends BundleOrigin with Product with Serializable
Indicates that the extension bundle is a built-in extension provided by Laika.
Indicates that the extension bundle is a built-in extension provided by Laika.
Internally Laika uses its own extension hooks to provide non-standard functionality like its directive syntax. Keeping it in extensions means these features can be disabled when run in strict mode.
-
object
Mixed extends BundleOrigin with Product with Serializable
Indicates that a bundle has been merged from multiple individual bundles with different origins.
Indicates that a bundle has been merged from multiple individual bundles with different origins. This would normally not occur before the final step in a parse or transform operation when the final bundle is merged internally from all the individual bundles.
-
object
Parser extends BundleOrigin with Product with Serializable
Indicates that the extension bundle is provided by a parser for markup format.
Indicates that the extension bundle is provided by a parser for markup format.
A parser may either provide a feature as a bundle to allow the user to disable it, e.g. support for raw content in the output format which might be security risk when entered by the user.
Another scenario is a parser that needs to supply custom renderers as its parsers produce AST nodes which are not known by the built-in renderers.
-
object
Theme extends BundleOrigin with Product with Serializable
Indicates that the extension bundle is provided by a theme.
Indicates that the extension bundle is provided by a theme.
A theme usually focuses on pre-populating the input tree with templates, styles and configuration, but may in addition also decide to offer lower-level extensions such as custom directives or extensions to markup syntax.
-
object
User extends BundleOrigin with Product with Serializable
Indicates that the extension bundle has been provided by the user.