laika.directive.Directives.BuilderContext

Combinators

object Combinators

Provides various combinators to describe the expected format of a specific directive.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Combinators
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def attribute[T](id: Id, converter: (Parser, String) ⇒ Result[T] = Converters.string): DirectivePart[T]

    Specifies a required attribute.

    Specifies a required attribute.

    id

    the identifier that must be used in markup or templates

    converter

    the function to use for converting and validating the parsed value

    returns

    a directive part that can be combined with further parts with the ~ operator

  8. def body[T](id: Id, converter: (Parser, String) ⇒ Result[T] = Converters.parsed): DirectivePart[T]

    Specifies a required body part.

    Specifies a required body part.

    id

    the identifier that must be used in markup or templates

    converter

    the function to use for converting and validating the parsed value

    returns

    a directive part that can be combined with further parts with the ~ operator

  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def cursor: DirectivePart[DocumentCursor]

    Indicates that access to the document cursor is required.

    Indicates that access to the document cursor is required. This may be required if the directive relies on information from the document structure, its title or the parent tree it is contained in.

    Use of this function causes the directive to be processed in a later rewrite step as the document cursor is not yet fully populated in the initial rewrite step. But this is an implementation detail you normally do not need to deal with.

  11. def empty[T](result: T): DirectivePart[T]

    Specifies an empty directive that does not accept any attributes or body elements.

    Specifies an empty directive that does not accept any attributes or body elements.

    result

    the fixed result each empty directive will produce

    returns

    a directive part that usually won't be combined with other parts

  12. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  16. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  17. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  19. final def notify(): Unit

    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  21. def parser: DirectivePart[Parser]

    Indicates that access to the parser responsible for this directive is needed, in case the directive implementation has to manually parse parts or all of its result.

    Indicates that access to the parser responsible for this directive is needed, in case the directive implementation has to manually parse parts or all of its result.

    The advantage of using the parser provided by the runtime versus creating your own is only this provided parser can now all other registered extensions in case your directive content may contain other directives.

  22. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  23. def toString(): String

    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped