scalatags.text

Tags

trait Tags extends generic.Tags[Builder, String, String]

Linear Supertypes
generic.Tags[Builder, String, String], Util[Builder, String, String], LowPriUtil[Builder, String, String], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Tags
  2. Tags
  3. Util
  4. LowPriUtil
  5. AnyRef
  6. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. abstract type ConcreteHtmlTag[T <: String] <: TypedTag[Builder, T, String]

    Definition Classes
    Util
  2. implicit class ExtendedString extends AnyRef

    Provides extension methods on strings to fit them into Scalatag fragments.

    Provides extension methods on strings to fit them into Scalatag fragments.

    Definition Classes
    Util
  3. implicit class SeqNode[A] extends Modifier[Builder]

    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

Abstract Value Members

  1. implicit abstract def SeqFrag[A](xs: Seq[A])(implicit arg0: (A) ⇒ generic.Frag[Builder, String]): generic.Frag[Builder, String]

    Renders an Seq of FragT into a single FragT

    Renders an Seq of FragT into a single FragT

    Definition Classes
    LowPriUtil
  2. abstract def makeAbstractTypedTag[T <: String](tag: String, void: Boolean, namespaceConfig: Namespace): ConcreteHtmlTag[T]

    Definition Classes
    Util
  3. implicit abstract def stringAttrX: AttrValue[Builder, String]

    Attributes
    protected[this]
    Definition Classes
    Util
  4. implicit abstract def stringPixelStyleX: PixelStyleValue[Builder, String]

    Attributes
    protected[this]
    Definition Classes
    Util
  5. implicit abstract def stringStyleX: StyleValue[Builder, String]

    Attributes
    protected[this]
    Definition Classes
    Util

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

    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 arg0: (A) ⇒ Modifier[Builder]): SeqNode[A]

    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 arg0: (A) ⇒ generic.Frag[Builder, String]): generic.Frag[Builder, String]

    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 arg0: (A) ⇒ Modifier[Builder]): SeqNode[A]

    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 UnitNode(u: Unit): Modifier[Builder]

    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
    Util
  9. val a: ConcreteHtmlTag[String]

    Represents a hyperlink, linking to another resource.

    Represents a hyperlink, linking to another resource.

    MDN

    Definition Classes
    TagsTags
  10. val area: ConcreteHtmlTag[String]

    In conjunction with map, defines an image map

    In conjunction with map, defines an image map

    MDN

    Definition Classes
    TagsTags
  11. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  12. val audio: ConcreteHtmlTag[String]

    Represents a sound or an audio stream.

    Represents a sound or an audio stream.

    MDN

    Definition Classes
    TagsTags
  13. val b: ConcreteHtmlTag[String]

    Bold text.

    Bold text.

    MDN

    Definition Classes
    TagsTags
  14. val base: ConcreteHtmlTag[String]

    Defines the base URL for relative URLs in the page.

    Defines the base URL for relative URLs in the page.

    MDN

    Definition Classes
    TagsTags
  15. val blockquote: ConcreteHtmlTag[String]

    Represents a content that is quoted from another source.

    Represents a content that is quoted from another source.

    MDN

    Definition Classes
    TagsTags
  16. val body: ConcreteHtmlTag[String]

    Represents the content of an HTML document.

    Represents the content of an HTML document. There is only one body element in a document.

    MDN

    Definition Classes
    TagsTags
  17. val br: ConcreteHtmlTag[String]

    Represents a line break.

    Represents a line break.

    MDN

    Definition Classes
    TagsTags
  18. val button: ConcreteHtmlTag[String]

    A button

    A button

    MDN

    Definition Classes
    TagsTags
  19. val canvas: ConcreteHtmlTag[String]

    Represents a bitmap area that scripts can use to render graphics like graphs, games or any visual images on the fly.

    Represents a bitmap area that scripts can use to render graphics like graphs, games or any visual images on the fly.

    MDN

    Definition Classes
    TagsTags
  20. val caption: ConcreteHtmlTag[String]

    The title of a table.

    The title of a table.

    MDN

    Definition Classes
    TagsTags
  21. val cite: ConcreteHtmlTag[String]

    Represents the title of a work being cited.

    Represents the title of a work being cited.

    MDN

    Definition Classes
    TagsTags
  22. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. val code: ConcreteHtmlTag[String]

    Represents computer code.

    Represents computer code.

    MDN

    Definition Classes
    TagsTags
  24. val col: ConcreteHtmlTag[String]

    A single column.

    A single column.

    MDN

    Definition Classes
    TagsTags
  25. val colgroup: ConcreteHtmlTag[String]

    A set of columns.

    A set of columns.

    MDN

    Definition Classes
    TagsTags
  26. val datalist: ConcreteHtmlTag[String]

    A set of predefined options for other controls.

    A set of predefined options for other controls.

    MDN

    Definition Classes
    TagsTags
  27. val dd: ConcreteHtmlTag[String]

    Represents the definition of the terms immediately listed before it.

    Represents the definition of the terms immediately listed before it.

    MDN

    Definition Classes
    TagsTags
  28. val del: ConcreteHtmlTag[String]

    Defines a removal from the document.

    Defines a removal from the document.

    MDN

    Definition Classes
    TagsTags
  29. val div: ConcreteHtmlTag[String]

    Represents a generic container with no special meaning.

    Represents a generic container with no special meaning.

    MDN

    Definition Classes
    TagsTags
  30. val dl: ConcreteHtmlTag[String]

    Defines a definition list; a list of terms and their associated definitions.

    Defines a definition list; a list of terms and their associated definitions.

    MDN

    Definition Classes
    TagsTags
  31. val dt: ConcreteHtmlTag[String]

    Represents a term defined by the next dd

    Represents a term defined by the next dd

    MDN

    Definition Classes
    TagsTags
  32. val em: ConcreteHtmlTag[String]

    Represents emphasized text.

    Represents emphasized text.

    MDN

    Definition Classes
    TagsTags
  33. val embed: ConcreteHtmlTag[String]

    Represents a integration point for an external, often non-HTML, application or interactive content.

    Represents a integration point for an external, often non-HTML, application or interactive content.

    MDN

    Definition Classes
    TagsTags
  34. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  36. val fieldset: ConcreteHtmlTag[String]

    A set of fields.

    A set of fields.

    MDN

    Definition Classes
    TagsTags
  37. val figcaption: ConcreteHtmlTag[String]

    Represents the legend of a figure.

    Represents the legend of a figure.

    MDN

    Definition Classes
    TagsTags
  38. val figure: ConcreteHtmlTag[String]

    Represents a figure illustrated as part of the document.

    Represents a figure illustrated as part of the document.

    MDN

    Definition Classes
    TagsTags
  39. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  40. val footer: ConcreteHtmlTag[String]

    Defines the footer for a page or section.

    Defines the footer for a page or section. It often contains a copyright notice, some links to legal information, or addresses to give feedback.

    MDN

    Definition Classes
    TagsTags
  41. val form: ConcreteHtmlTag[String]

    Represents a form, consisting of controls, that can be submitted to a server for processing.

    Represents a form, consisting of controls, that can be submitted to a server for processing.

    MDN

    Definition Classes
    TagsTags
  42. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  43. val h1: ConcreteHtmlTag[String]

    Heading level 1

    Heading level 1

    MDN

    Definition Classes
    TagsTags
  44. val h2: ConcreteHtmlTag[String]

    Heading level 2

    Heading level 2

    MDN

    Definition Classes
    TagsTags
  45. val h3: ConcreteHtmlTag[String]

    Heading level 3

    Heading level 3

    MDN

    Definition Classes
    TagsTags
  46. val h4: ConcreteHtmlTag[String]

    Heading level 4

    Heading level 4

    MDN

    Definition Classes
    TagsTags
  47. val h5: ConcreteHtmlTag[String]

    Heading level 5

    Heading level 5

    MDN

    Definition Classes
    TagsTags
  48. val h6: ConcreteHtmlTag[String]

    Heading level 6

    Heading level 6

    MDN

    Definition Classes
    TagsTags
  49. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  50. val head: ConcreteHtmlTag[String]

    Represents a collection of metadata about the document, including links to, or definitions of, scripts and style sheets.

    Represents a collection of metadata about the document, including links to, or definitions of, scripts and style sheets.

    MDN

    Definition Classes
    TagsTags
  51. val header: ConcreteHtmlTag[String]

    Defines the header of a page or section.

    Defines the header of a page or section. It often contains a logo, the title of the Web site, and a navigational table of content.

    MDN

    Definition Classes
    TagsTags
  52. val hr: ConcreteHtmlTag[String]

    Represents a thematic break between paragraphs of a section or article or any longer content.

    Represents a thematic break between paragraphs of a section or article or any longer content.

    MDN

    Definition Classes
    TagsTags
  53. val html: ConcreteHtmlTag[String]

    Represents the root of an HTML or XHTML document.

    Represents the root of an HTML or XHTML document. All other elements must be descendants of this element.

    MDN

    Definition Classes
    TagsTags
  54. val i: ConcreteHtmlTag[String]

    Italicized text.

    Italicized text.

    MDN

    Definition Classes
    TagsTags
  55. val iframe: ConcreteHtmlTag[String]

    Represents a nested browsing context, that is an embedded HTML document.

    Represents a nested browsing context, that is an embedded HTML document.

    MDN

    Definition Classes
    TagsTags
  56. val img: ConcreteHtmlTag[String]

    Represents an image.

    Represents an image.

    MDN

    Definition Classes
    TagsTags
  57. val input: ConcreteHtmlTag[String]

    A typed data field allowing the user to input data.

    A typed data field allowing the user to input data.

    MDN

    Definition Classes
    TagsTags
  58. val ins: ConcreteHtmlTag[String]

    Defines an addition to the document.

    Defines an addition to the document.

    MDN

    Definition Classes
    TagsTags
  59. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  60. val label: ConcreteHtmlTag[String]

    The caption of a single field

    The caption of a single field

    MDN

    Definition Classes
    TagsTags
  61. val legend: ConcreteHtmlTag[String]

    The caption for a fieldset.

    The caption for a fieldset.

    MDN

    Definition Classes
    TagsTags
  62. val li: ConcreteHtmlTag[String]

    Defines an item of an list.

    Defines an item of an list.

    MDN

    Definition Classes
    TagsTags
  63. val link: ConcreteHtmlTag[String]

    Used to link JavaScript and external CSS with the current HTML document.

    Used to link JavaScript and external CSS with the current HTML document.

    MDN

    Definition Classes
    TagsTags
  64. val map: ConcreteHtmlTag[String]

    In conjunction with area, defines an image map.

    In conjunction with area, defines an image map.

    MDN

    Definition Classes
    TagsTags
  65. val meta: ConcreteHtmlTag[String]

    Defines metadata that can't be defined using another HTML element.

    Defines metadata that can't be defined using another HTML element.

    MDN

    Definition Classes
    TagsTags
  66. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  69. val object: ConcreteHtmlTag[String]

    Represents an external resource, which is treated as an image, an HTML sub-document, or an external resource to be processed by a plug-in.

    Represents an external resource, which is treated as an image, an HTML sub-document, or an external resource to be processed by a plug-in.

    MDN

    Definition Classes
    TagsTags
  70. val ol: ConcreteHtmlTag[String]

    Defines an ordered list of items.

    Defines an ordered list of items.

    MDN

    Definition Classes
    TagsTags
  71. val optgroup: ConcreteHtmlTag[String]

    A set of options, logically grouped.

    A set of options, logically grouped.

    MDN

    Definition Classes
    TagsTags
  72. val option: ConcreteHtmlTag[String]

    An option in a select element.

    An option in a select element.

    MDN

    Definition Classes
    TagsTags
  73. val p: ConcreteHtmlTag[String]

    Defines a portion that should be displayed as a paragraph.

    Defines a portion that should be displayed as a paragraph.

    MDN

    Definition Classes
    TagsTags
  74. val param: ConcreteHtmlTag[String]

    Defines parameters for use by plug-ins invoked by object elements.

    Defines parameters for use by plug-ins invoked by object elements.

    MDN

    Definition Classes
    TagsTags
  75. val pre: ConcreteHtmlTag[String]

    Indicates that its content is preformatted and that this format must be preserved.

    Indicates that its content is preformatted and that this format must be preserved.

    MDN

    Definition Classes
    TagsTags
  76. val s: ConcreteHtmlTag[String]

    Strikethrough element, used for that is no longer accurate or relevant.

    Strikethrough element, used for that is no longer accurate or relevant.

    MDN

    Definition Classes
    TagsTags
  77. val script: ConcreteHtmlTag[String]

    Defines either an internal script or a link to an external script.

    Defines either an internal script or a link to an external script. The script language is JavaScript.

    MDN

    Definition Classes
    TagsTags
  78. val select: ConcreteHtmlTag[String]

    A control that allows the user to select one of a set of options.

    A control that allows the user to select one of a set of options.

    MDN

    Definition Classes
    TagsTags
  79. val small: ConcreteHtmlTag[String]

    Represents a side comment; text like a disclaimer or copyright, which is not essential to the comprehension of the document.

    Represents a side comment; text like a disclaimer or copyright, which is not essential to the comprehension of the document.

    MDN

    Definition Classes
    TagsTags
  80. val source: ConcreteHtmlTag[String]

    Allows the authors to specify alternate media resources for media elements like video or audio

    Allows the authors to specify alternate media resources for media elements like video or audio

    MDN

    Definition Classes
    TagsTags
  81. val span: ConcreteHtmlTag[String]

    Represents text with no specific meaning.

    Represents text with no specific meaning. This has to be used when no other text-semantic element conveys an adequate meaning, which, in this case, is often brought by global attributes like class, lang, or dir.

    MDN

    Definition Classes
    TagsTags
  82. val strong: ConcreteHtmlTag[String]

    Represents especially important text.

    Represents especially important text.

    MDN

    Definition Classes
    TagsTags
  83. val sub: ConcreteHtmlTag[String]

    Subscript tag

    Subscript tag

    MDN

    Definition Classes
    TagsTags
  84. val sup: ConcreteHtmlTag[String]

    Superscript tag.

    Superscript tag.

    MDN

    Definition Classes
    TagsTags
  85. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  86. val table: ConcreteHtmlTag[String]

    Represents data with more than one dimension.

    Represents data with more than one dimension.

    MDN

    Definition Classes
    TagsTags
  87. val tbody: ConcreteHtmlTag[String]

    The table body.

    The table body.

    MDN

    Definition Classes
    TagsTags
  88. val td: ConcreteHtmlTag[String]

    A single cell in a table.

    A single cell in a table.

    MDN

    Definition Classes
    TagsTags
  89. val textarea: ConcreteHtmlTag[String]

    A multiline text edit control.

    A multiline text edit control.

    MDN

    Definition Classes
    TagsTags
  90. val tfoot: ConcreteHtmlTag[String]

    The table footer.

    The table footer.

    MDN

    Definition Classes
    TagsTags
  91. val th: ConcreteHtmlTag[String]

    A header cell in a table.

    A header cell in a table.

    MDN

    Definition Classes
    TagsTags
  92. val thead: ConcreteHtmlTag[String]

    The table headers.

    The table headers.

    MDN

    Definition Classes
    TagsTags
  93. def toString(): String

    Definition Classes
    AnyRef → Any
  94. val tr: ConcreteHtmlTag[String]

    A single row in a table.

    A single row in a table.

    MDN

    Definition Classes
    TagsTags
  95. val track: ConcreteHtmlTag[String]

    Allows authors to specify timed text track for media elements like video or audio

    Allows authors to specify timed text track for media elements like video or audio

    MDN

    Definition Classes
    TagsTags
  96. val u: ConcreteHtmlTag[String]

    Underlined text.

    Underlined text.

    MDN

    Definition Classes
    TagsTags
  97. val ul: ConcreteHtmlTag[String]

    Defines an unordered list of items.

    Defines an unordered list of items.

    MDN

    Definition Classes
    TagsTags
  98. val video: ConcreteHtmlTag[String]

    Represents a video, and its associated audio files and captions, with the necessary interface to play it.

    Represents a video, and its associated audio files and captions, with the necessary interface to play it.

    MDN

    Definition Classes
    TagsTags
  99. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  102. val wbr: ConcreteHtmlTag[String]

    Represents a line break opportunity, that is a suggested point for wrapping text in order to improve readability of text split on several lines.

    Represents a line break opportunity, that is a suggested point for wrapping text in order to improve readability of text split on several lines.

    MDN

    Definition Classes
    TagsTags

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

Inherited from Util[Builder, String, String]

Inherited from LowPriUtil[Builder, String, String]

Inherited from AnyRef

Inherited from Any

Ungrouped