Object

laika.parse.rst

Elements

Related Doc: package rst

Permalink

object Elements

Provides the elements of the document tree that are too specific to reStructuredText to be added to the generic tree model.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Elements
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class Classifier(content: Seq[Span], options: Options = NoOpt) extends Element with Span with SpanContainer[Classifier] with Product with Serializable

    Permalink

    A classifier for a term in a definition list.

  2. case class Contents(title: String, depth: Int = Int.MaxValue, local: Boolean = false, options: Options = NoOpt) extends Element with Block with BlockResolver with Product with Serializable

    Permalink

    Generates a table of contents element inside a topic.

  3. case class CustomizedTextRole(name: String, apply: (String) ⇒ Span, options: Options = NoOpt) extends Element with Definition with Product with Serializable

    Permalink

    Temporary element to represent a customized text role that can be applied to spans of interpreted text.

    Temporary element to represent a customized text role that can be applied to spans of interpreted text. The apply function can then be applied to spans of interpreted text referring to the name of this role and passing the text as the argument to the function.

  4. case class DoctestBlock(content: String, options: Options = NoOpt) extends Element with Block with TextContainer with Product with Serializable

    Permalink

    Represents an interactive Python session.

    Represents an interactive Python session. Somewhat unlikely to be used in the context of this library, but included for the sake of completeness.

  5. case class Field(name: Seq[Span], content: Seq[Block], options: Options = NoOpt) extends Element with ListItem with BlockContainer[Field] with Product with Serializable

    Permalink

    A single entry in a field list consisting of name and body.

  6. case class FieldList(content: Seq[Field], options: Options = NoOpt) extends Element with Block with ListContainer[FieldList] with Product with Serializable

    Permalink

    A two-column table-like structure used for bibliographic fields or directive options.

  7. case class Include(path: String, options: Options = NoOpt) extends Element with Block with BlockResolver with Product with Serializable

    Permalink

    Temporary element representing a file inclusion.

    Temporary element representing a file inclusion. The path is interpreted as relative to the path of the processed document if it is not an absolute path.

  8. case class InterpretedText(role: String, content: String, source: String, options: Options = NoOpt) extends Element with Reference with TextContainer with Product with Serializable

    Permalink

    Temporary element to represent interpreted text with its associated role name.

    Temporary element to represent interpreted text with its associated role name. In a post-processing step this text will be replaced by the result of calling the corresponding role function.

  9. case class OptionArgument(value: String, delimiter: String) extends Element with Product with Serializable

    Permalink

    A single option argument.

  10. case class OptionList(content: Seq[OptionListItem], options: Options = NoOpt) extends Element with Block with ListContainer[OptionList] with Product with Serializable

    Permalink

    A list of command line options and descriptions.

  11. case class OptionListItem(programOptions: Seq[ProgramOption], content: Seq[Block], options: Options = NoOpt) extends Element with ListItem with BlockContainer[OptionListItem] with Product with Serializable

    Permalink

    A single item in an option list.

    A single item in an option list. The content property serves as the description of the option.

  12. case class OverlineAndUnderline(char: Char) extends HeaderDecoration with Product with Serializable

    Permalink

    Header decoration consisting of both an overline and an underline.

  13. case class ProgramOption(name: String, argument: Option[OptionArgument]) extends Element with Product with Serializable

    Permalink

    A single option, including its name and all arguments, but not the description.

  14. case class SubstitutionDefinition(name: String, content: Span, options: Options = NoOpt) extends Element with Definition with Product with Serializable

    Permalink

    A substitution definition with its span content that will be inserted wherever this substitution is referenced in flow content.

  15. case class SubstitutionReference(name: String, options: Options = NoOpt) extends Element with Reference with Product with Serializable

    Permalink

    Refers to a substitution definition with the same name.

    Refers to a substitution definition with the same name. This type of element will only temporarily be part of the document tree and replaced by the content of the substitution definition in a rewrite step.

  16. case class Underline(char: Char) extends HeaderDecoration with Product with Serializable

    Permalink

    Header decoration consisting of an underline only.

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  13. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  14. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  15. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  16. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped