Object

scalatags.Text

tags2

Related Doc: package Text

Permalink

object tags2 extends Cap with text.Tags2

Less common tags

Definition Classes
TextBundle
Linear Supertypes
text.Tags2, generic.Tags2[Builder, String, String], Cap, TagFactory, generic.Util[Builder, String, String], LowPriUtil[Builder, String, String], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. tags2
  2. Tags2
  3. Tags2
  4. Cap
  5. TagFactory
  6. Util
  7. LowPriUtil
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type BaseTagType = TypedTag[String]

    Permalink
    Definition Classes
    Cap
  2. type ConcreteHtmlTag[T <: String] = TypedTag[T]

    Permalink
    Definition Classes
    CapUtil
  3. implicit class SeqFrag[A] extends Text.Frag

    Permalink
    Definition Classes
    Cap
  4. implicit class SeqNode[A] extends Modifier[Builder]

    Permalink

    Allows you to modify a ConcreteHtmlTag by adding a Seq containing other nest-able objects to its list of children.

    Allows you to modify a ConcreteHtmlTag by adding a Seq containing other nest-able objects to its list of children.

    Definition Classes
    Util

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. implicit def ArrayFrag[A](xs: Array[A])(implicit ev: (A) ⇒ generic.Frag[Builder, String]): generic.Frag[Builder, String]

    Permalink

    Renders an Seq of FragT into a single FragT

    Renders an Seq of FragT into a single FragT

    Definition Classes
    LowPriUtil
  5. implicit def ArrayNode[A](xs: Array[A])(implicit ev: (A) ⇒ generic.Modifier[Builder]): SeqNode[A]

    Permalink

    Allows you to modify a ConcreteHtmlTag by adding an Array containing other nest-able objects to its list of children.

    Allows you to modify a ConcreteHtmlTag by adding an Array containing other nest-able objects to its list of children.

    Definition Classes
    Util
  6. implicit def OptionFrag[A](xs: Option[A])(implicit ev: (A) ⇒ generic.Frag[Builder, String]): generic.Frag[Builder, String]

    Permalink

    Renders an Option of FragT into a single FragT

    Renders an Option of FragT into a single FragT

    Definition Classes
    LowPriUtil
  7. implicit def OptionNode[A](xs: Option[A])(implicit ev: (A) ⇒ generic.Modifier[Builder]): SeqNode[A]

    Permalink

    Allows you to modify a ConcreteHtmlTag by adding an Option containing other nest-able objects to its list of children.

    Allows you to modify a ConcreteHtmlTag by adding an Option containing other nest-able objects to its list of children.

    Definition Classes
    Util
  8. implicit def UnitFrag(u: Unit): StringFrag

    Permalink

    Lets you put Unit into a scalatags tree, as a no-op.

    Lets you put Unit into a scalatags tree, as a no-op.

    Definition Classes
    CapLowPriUtil
  9. lazy val abbr: ConcreteHtmlTag[String]

    Permalink

    An abbreviation or acronym; the expansion of the abbreviation can be represented in the title attribute.

    An abbreviation or acronym; the expansion of the abbreviation can be represented in the title attribute.

    MDN

    Definition Classes
    Tags2Tags2
  10. lazy val address: ConcreteHtmlTag[String]

    Permalink

    Defines a section containing contact information.

    Defines a section containing contact information.

    MDN

    Definition Classes
    Tags2Tags2
  11. lazy val article: ConcreteHtmlTag[String]

    Permalink

    Defines self-contained content that could exist independently of the rest of the content.

    Defines self-contained content that could exist independently of the rest of the content.

    MDN

    Definition Classes
    Tags2Tags2
  12. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  13. lazy val aside: ConcreteHtmlTag[String]

    Permalink

    Defines some content loosely related to the page content.

    Defines some content loosely related to the page content. If it is removed, the remaining content still makes sense.

    MDN

    Definition Classes
    Tags2Tags2
  14. def attr(s: String, ns: Namespace = null, raw: Boolean = false): generic.Attr

    Permalink

    Constructs an Attr attribute object from a string; can be used inline:

    Constructs an Attr attribute object from a string; can be used inline:

    div(
      attr("hello-world-special-attr") := "foo
    )

    Or assigned to a name and used later

    val hello = attr("hello-world-special-attr")
    div(
      hello := "foo
    )
    Definition Classes
    Util
  15. lazy val bdi: ConcreteHtmlTag[String]

    Permalink

    Represents text that must be isolated from its surrounding for bidirectional text formatting.

    Represents text that must be isolated from its surrounding for bidirectional text formatting. It allows embedding a span of text with a different, or unknown, directionality.

    MDN

    Definition Classes
    Tags2Tags2
  16. lazy val bdo: ConcreteHtmlTag[String]

    Permalink

    Represents the directionality of its children, in order to explicitly override the Unicode bidirectional algorithm.

    Represents the directionality of its children, in order to explicitly override the Unicode bidirectional algorithm.

    MDN

    Definition Classes
    Tags2Tags2
  17. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. lazy val command: ConcreteHtmlTag[String]

    Permalink

    A command that the user can invoke.

    A command that the user can invoke.

    MDN

    Definition Classes
    Tags2Tags2
  19. def css(s: String): generic.Style

    Permalink

    Constructs a CSS Style from a string, can be used inline

    Constructs a CSS Style from a string, can be used inline

    div(
      css("-moz-special-style") := "foo"
    )

    Or assigned to a name and used later

    val mozSpecial := css("-moz-special-style")
    div(
      mozSpecial := "foo"
    )
    Definition Classes
    Util
  20. lazy val data: ConcreteHtmlTag[String]

    Permalink

    Associates to its content a machine-readable equivalent.

    Associates to its content a machine-readable equivalent.

    MDN

    Definition Classes
    Tags2Tags2
  21. lazy val details: ConcreteHtmlTag[String]

    Permalink

    A widget from which the user can obtain additional information or controls.

    A widget from which the user can obtain additional information or controls.

    MDN

    Definition Classes
    Tags2Tags2
  22. lazy val dfn: ConcreteHtmlTag[String]

    Permalink

    Represents a term whose definition is contained in its nearest ancestor content.

    Represents a term whose definition is contained in its nearest ancestor content.

    MDN

    Definition Classes
    Tags2Tags2
  23. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  26. def frag(frags: generic.Frag[Builder, String]*): generic.Frag[Builder, String]

    Permalink
    Definition Classes
    Util
  27. final def getClass(): Class[_]

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

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

    Permalink
    Definition Classes
    Any
  30. lazy val kbd: ConcreteHtmlTag[String]

    Permalink

    Represents user input, often from a keyboard, but not necessarily.

    Represents user input, often from a keyboard, but not necessarily.

    MDN

    Definition Classes
    Tags2Tags2
  31. lazy val keygen: ConcreteHtmlTag[String]

    Permalink

    A key-pair generator control.

    A key-pair generator control.

    MDN

    Definition Classes
    Tags2Tags2
  32. lazy val main: ConcreteHtmlTag[String]

    Permalink

    Defines the main or important content in the document.

    Defines the main or important content in the document. There is only one main element in the document.

    MDN

    Definition Classes
    Tags2Tags2
  33. def makeAbstractTypedTag[T](tag: String, void: Boolean, namespaceConfig: Namespace): TypedTag[Nothing]

    Permalink
    Definition Classes
    CapUtil
  34. lazy val mark: ConcreteHtmlTag[String]

    Permalink

    Represents text highlighted for reference purposes, that is for its relevance in another context.

    Represents text highlighted for reference purposes, that is for its relevance in another context.

    MDN

    Definition Classes
    Tags2Tags2
  35. lazy val math: ConcreteHtmlTag[String]

    Permalink

    Defines a mathematical formula.

    Defines a mathematical formula.

    MDN

    Definition Classes
    Tags2Tags2
  36. lazy val menu: ConcreteHtmlTag[String]

    Permalink

    A list of commands

    A list of commands

    MDN

    Definition Classes
    Tags2Tags2
  37. lazy val meter: ConcreteHtmlTag[String]

    Permalink

    A scalar measurement within a known range.

    A scalar measurement within a known range.

    MDN

    Definition Classes
    Tags2Tags2
  38. def modifier(mods: generic.Modifier[Builder]*): generic.Modifier[Builder]

    Permalink
    Definition Classes
    Util
  39. lazy val nav: ConcreteHtmlTag[String]

    Permalink

    Represents a section of a page that links to other pages or to parts within the page: a section with navigation links.

    Represents a section of a page that links to other pages or to parts within the page: a section with navigation links.

    MDN

    Definition Classes
    Tags2Tags2
  40. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  41. lazy val noscript: ConcreteHtmlTag[String]

    Permalink

    Defines alternative content to display when the browser doesn't support scripting.

    Defines alternative content to display when the browser doesn't support scripting.

    MDN

    Definition Classes
    Tags2Tags2
  42. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  44. lazy val output: ConcreteHtmlTag[String]

    Permalink

    The result of a calculation

    The result of a calculation

    MDN

    Definition Classes
    Tags2Tags2
  45. lazy val progress: ConcreteHtmlTag[String]

    Permalink

    A progress completion bar

    A progress completion bar

    MDN

    Definition Classes
    Tags2Tags2
  46. lazy val q: ConcreteHtmlTag[String]

    Permalink

    An inline quotation.

    An inline quotation.

    MDN

    Definition Classes
    Tags2Tags2
  47. lazy val rp: ConcreteHtmlTag[String]

    Permalink

    Represents parenthesis around a ruby annotation, used to display the annotation in an alternate way by browsers not supporting the standard display for annotations.

    Represents parenthesis around a ruby annotation, used to display the annotation in an alternate way by browsers not supporting the standard display for annotations.

    MDN

    Definition Classes
    Tags2Tags2
  48. lazy val rt: ConcreteHtmlTag[String]

    Permalink

    Represents the text of a ruby annotation.

    Represents the text of a ruby annotation.

    MDN

    Definition Classes
    Tags2Tags2
  49. lazy val ruby: ConcreteHtmlTag[String]

    Permalink

    Represents content to be marked with ruby annotations, short runs of text presented alongside the text.

    Represents content to be marked with ruby annotations, short runs of text presented alongside the text. This is often used in conjunction with East Asian language where the annotations act as a guide for pronunciation, like the Japanese furigana .

    MDN

    Definition Classes
    Tags2Tags2
  50. lazy val samp: ConcreteHtmlTag[String]

    Permalink

    Represents the output of a program or a computer.

    Represents the output of a program or a computer.

    MDN

    Definition Classes
    Tags2Tags2
  51. lazy val section: ConcreteHtmlTag[String]

    Permalink

    Represents a generic section of a document, i.e., a thematic grouping of content, typically with a heading.

    Represents a generic section of a document, i.e., a thematic grouping of content, typically with a heading.

    MDN

    Definition Classes
    Tags2Tags2
  52. implicit def stringAttrX: GenericAttr[String]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    CapUtil
  53. implicit def stringPixelStyleX: GenericPixelStyle[String]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    CapUtil
  54. implicit def stringStyleX: GenericStyle[String]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    CapUtil
  55. lazy val style: ConcreteHtmlTag[String]

    Permalink

    Used to write inline CSS.

    Used to write inline CSS.

    MDN

    Definition Classes
    Tags2Tags2
  56. lazy val summary: ConcreteHtmlTag[String]

    Permalink

    A summary, caption, or legend for a given details.

    A summary, caption, or legend for a given details.

    MDN

    Definition Classes
    Tags2Tags2
  57. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  58. def tag(s: String, void: Boolean = false): ConcreteHtmlTag[String]

    Permalink
    Definition Classes
    TagFactoryUtil
  59. lazy val time: ConcreteHtmlTag[String]

    Permalink

    Represents a date and time value; the machine-readable equivalent can be represented in the datetime attribetu

    Represents a date and time value; the machine-readable equivalent can be represented in the datetime attribetu

    MDN

    Definition Classes
    Tags2Tags2
  60. lazy val title: ConcreteHtmlTag[String]

    Permalink

    Defines the title of the document, shown in a browser's title bar or on the page's tab.

    Defines the title of the document, shown in a browser's title bar or on the page's tab. It can only contain text and any contained tags are not interpreted.

    MDN

    Definition Classes
    Tags2Tags2
  61. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  62. lazy val var: ConcreteHtmlTag[String]

    Permalink

    Represents a variable.

    Represents a variable.

    MDN

    Definition Classes
    Tags2Tags2
  63. final def wait(): Unit

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

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

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

Inherited from text.Tags2

Inherited from generic.Tags2[Builder, String, String]

Inherited from Cap

Inherited from TagFactory

Inherited from generic.Util[Builder, String, String]

Inherited from LowPriUtil[Builder, String, String]

Inherited from AnyRef

Inherited from Any

Ungrouped