Packages

  • package root
    Definition Classes
    root
  • package laika
    Definition Classes
    root
  • package directive
    Definition Classes
    laika
  • trait BuilderContext[E <: Element] extends AnyRef

    Provides the basic building blocks for Laika's Directive API.

    Provides the basic building blocks for Laika's Directive API. This trait is not used directly, but instead its three sub-traits Blocks, Spans and Templates, which represent the concrete implementations for the three directive types.

    Definition Classes
    directive
  • trait Combinators extends AnyRef

    Provides combinators to describe the expected structure of a specific directive.

    Provides combinators to describe the expected structure of a specific directive.

    Definition Classes
    BuilderContext
  • AttributePart
  • PositionalAttributes
  • SeparatedBodyPart

class PositionalAttributes[T] extends DirectivePart[Seq[T]]

Linear Supertypes
DirectivePart[Seq[T]], (DirectiveContext) => Result[Seq[T]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PositionalAttributes
  2. DirectivePart
  3. Function1
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new PositionalAttributes(decoder: ConfigDecoder[T])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def andThen[A](g: (Result[Seq[T]]) => A): (DirectiveContext) => A
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  5. def apply(context: DirectiveContext): Result[Seq[T]]
    Definition Classes
    PositionalAttributes → Function1
  6. def as[U](implicit decoder: ConfigDecoder[U]): PositionalAttributes[U]
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  9. def compose[A](g: (A) => DirectiveContext): (A) => Result[Seq[T]]
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. def evalMap[B](f: (Seq[T]) => Either[String, B]): DirectivePart[B]
    Definition Classes
    DirectivePart
  13. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. def hasBody: Boolean

    Indicates whether the directive supports a body section after the directive name and attribute section.

    Indicates whether the directive supports a body section after the directive name and attribute section.

    Definition Classes
    PositionalAttributesDirectivePart
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def map[B](f: (Seq[T]) => B): DirectivePart[B]
    Definition Classes
    DirectivePart
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. def separators: Set[String]

    The names of the separator directives accepted by this directive part.

    The names of the separator directives accepted by this directive part.

    Definition Classes
    PositionalAttributesDirectivePart
  23. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    Function1 → AnyRef → Any
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  28. def widen: DirectivePart[Seq[T]]

Inherited from DirectivePart[Seq[T]]

Inherited from (DirectiveContext) => Result[Seq[T]]

Inherited from AnyRef

Inherited from Any

Ungrouped