scalatags.generic

Tags

trait Tags[Builder, Output <: FragT, FragT] extends Util[Builder, Output, FragT]

Trait that contains the contents of the Tags object, so they can be mixed in to other objects if needed.

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

Type Members

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

    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) ⇒ Frag[Builder, FragT]): Frag[Builder, FragT]

    Renders an Seq of FragT into a single FragT

    Renders an Seq of FragT into a single FragT

    Definition Classes
    LowPriUtil
  2. implicit abstract def UnitFrag(u: Unit): Frag[Builder, FragT]

    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
    LowPriUtil
  3. abstract val a: TypedTag[Builder, Output, FragT]

    Represents a hyperlink, linking to another resource.

    Represents a hyperlink, linking to another resource.

    MDN

  4. abstract val area: TypedTag[Builder, Output, FragT]

    In conjunction with map, defines an image map

    In conjunction with map, defines an image map

    MDN

  5. abstract val audio: TypedTag[Builder, Output, FragT]

    Represents a sound or an audio stream.

    Represents a sound or an audio stream.

    MDN

  6. abstract val b: TypedTag[Builder, Output, FragT]

    Bold text.

    Bold text.

    MDN

  7. abstract val base: TypedTag[Builder, Output, FragT]

    Defines the base URL for relative URLs in the page.

    Defines the base URL for relative URLs in the page.

    MDN

  8. abstract val blockquote: TypedTag[Builder, Output, FragT]

    Represents a content that is quoted from another source.

    Represents a content that is quoted from another source.

    MDN

  9. abstract val body: TypedTag[Builder, Output, FragT]

    Represents the content of an HTML document.

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

    MDN

  10. abstract val br: TypedTag[Builder, Output, FragT]

    Represents a line break.

    Represents a line break.

    MDN

  11. abstract val button: TypedTag[Builder, Output, FragT]

    A button

    A button

    MDN

  12. abstract val canvas: TypedTag[Builder, Output, FragT]

    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

  13. abstract val caption: TypedTag[Builder, Output, FragT]

    The title of a table.

    The title of a table.

    MDN

  14. abstract val cite: TypedTag[Builder, Output, FragT]

    Represents the title of a work being cited.

    Represents the title of a work being cited.

    MDN

  15. abstract val code: TypedTag[Builder, Output, FragT]

    Represents computer code.

    Represents computer code.

    MDN

  16. abstract val col: TypedTag[Builder, Output, FragT]

    A single column.

    A single column.

    MDN

  17. abstract val colgroup: TypedTag[Builder, Output, FragT]

    A set of columns.

    A set of columns.

    MDN

  18. abstract val datalist: TypedTag[Builder, Output, FragT]

    A set of predefined options for other controls.

    A set of predefined options for other controls.

    MDN

  19. abstract val dd: TypedTag[Builder, Output, FragT]

    Represents the definition of the terms immediately listed before it.

    Represents the definition of the terms immediately listed before it.

    MDN

  20. abstract val del: TypedTag[Builder, Output, FragT]

    Defines a removal from the document.

    Defines a removal from the document.

    MDN

  21. abstract val div: TypedTag[Builder, Output, FragT]

    Represents a generic container with no special meaning.

    Represents a generic container with no special meaning.

    MDN

  22. abstract val dl: TypedTag[Builder, Output, FragT]

    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

  23. abstract val dt: TypedTag[Builder, Output, FragT]

    Represents a term defined by the next dd

    Represents a term defined by the next dd

    MDN

  24. abstract val em: TypedTag[Builder, Output, FragT]

    Represents emphasized text.

    Represents emphasized text.

    MDN

  25. abstract val embed: TypedTag[Builder, Output, FragT]

    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

  26. abstract val fieldset: TypedTag[Builder, Output, FragT]

    A set of fields.

    A set of fields.

    MDN

  27. abstract val figcaption: TypedTag[Builder, Output, FragT]

    Represents the legend of a figure.

    Represents the legend of a figure.

    MDN

  28. abstract val figure: TypedTag[Builder, Output, FragT]

    Represents a figure illustrated as part of the document.

    Represents a figure illustrated as part of the document.

    MDN

  29. abstract val footer: TypedTag[Builder, Output, FragT]

    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

  30. abstract val form: TypedTag[Builder, Output, FragT]

    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

  31. abstract val h1: TypedTag[Builder, Output, FragT]

    Heading level 1

    Heading level 1

    MDN

  32. abstract val h2: TypedTag[Builder, Output, FragT]

    Heading level 2

    Heading level 2

    MDN

  33. abstract val h3: TypedTag[Builder, Output, FragT]

    Heading level 3

    Heading level 3

    MDN

  34. abstract val h4: TypedTag[Builder, Output, FragT]

    Heading level 4

    Heading level 4

    MDN

  35. abstract val h5: TypedTag[Builder, Output, FragT]

    Heading level 5

    Heading level 5

    MDN

  36. abstract val h6: TypedTag[Builder, Output, FragT]

    Heading level 6

    Heading level 6

    MDN

  37. abstract val head: TypedTag[Builder, Output, FragT]

    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

  38. abstract val header: TypedTag[Builder, Output, FragT]

    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

  39. abstract val hr: TypedTag[Builder, Output, FragT]

    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

  40. abstract val html: TypedTag[Builder, Output, FragT]

    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

  41. abstract val i: TypedTag[Builder, Output, FragT]

    Italicized text.

    Italicized text.

    MDN

  42. abstract val iframe: TypedTag[Builder, Output, FragT]

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

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

    MDN

  43. abstract val img: TypedTag[Builder, Output, FragT]

    Represents an image.

    Represents an image.

    MDN

  44. abstract val input: TypedTag[Builder, Output, FragT]

    A typed data field allowing the user to input data.

    A typed data field allowing the user to input data.

    MDN

  45. abstract val ins: TypedTag[Builder, Output, FragT]

    Defines an addition to the document.

    Defines an addition to the document.

    MDN

  46. abstract val label: TypedTag[Builder, Output, FragT]

    The caption of a single field

    The caption of a single field

    MDN

  47. abstract val legend: TypedTag[Builder, Output, FragT]

    The caption for a fieldset.

    The caption for a fieldset.

    MDN

  48. abstract val li: TypedTag[Builder, Output, FragT]

    Defines an item of an list.

    Defines an item of an list.

    MDN

  49. abstract val link: TypedTag[Builder, Output, FragT]

    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

  50. abstract def makeAbstractTypedTag[T <: Output](tag: String, void: Boolean, namespaceConfig: Namespace): ConcreteHtmlTag[T]

    Definition Classes
    Util
  51. abstract val map: TypedTag[Builder, Output, FragT]

    In conjunction with area, defines an image map.

    In conjunction with area, defines an image map.

    MDN

  52. abstract val meta: TypedTag[Builder, Output, FragT]

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

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

    MDN

  53. abstract val object: TypedTag[Builder, Output, FragT]

    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

  54. abstract val ol: TypedTag[Builder, Output, FragT]

    Defines an ordered list of items.

    Defines an ordered list of items.

    MDN

  55. abstract val optgroup: TypedTag[Builder, Output, FragT]

    A set of options, logically grouped.

    A set of options, logically grouped.

    MDN

  56. abstract val option: TypedTag[Builder, Output, FragT]

    An option in a select element.

    An option in a select element.

    MDN

  57. abstract val p: TypedTag[Builder, Output, FragT]

    Defines a portion that should be displayed as a paragraph.

    Defines a portion that should be displayed as a paragraph.

    MDN

  58. abstract val param: TypedTag[Builder, Output, FragT]

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

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

    MDN

  59. abstract val pre: TypedTag[Builder, Output, FragT]

    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

  60. abstract val s: TypedTag[Builder, Output, FragT]

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

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

    MDN

  61. abstract val script: TypedTag[Builder, Output, FragT]

    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

  62. abstract val select: TypedTag[Builder, Output, FragT]

    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

  63. abstract val small: TypedTag[Builder, Output, FragT]

    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

  64. abstract val source: TypedTag[Builder, Output, FragT]

    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

  65. abstract val span: TypedTag[Builder, Output, FragT]

    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

  66. implicit abstract def stringAttrX: AttrValue[Builder, String]

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

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

    Attributes
    protected[this]
    Definition Classes
    Util
  69. abstract val strong: TypedTag[Builder, Output, FragT]

    Represents especially important text.

    Represents especially important text.

    MDN

  70. abstract val sub: TypedTag[Builder, Output, FragT]

    Subscript tag

    Subscript tag

    MDN

  71. abstract val sup: TypedTag[Builder, Output, FragT]

    Superscript tag.

    Superscript tag.

    MDN

  72. abstract val table: TypedTag[Builder, Output, FragT]

    Represents data with more than one dimension.

    Represents data with more than one dimension.

    MDN

  73. abstract val tbody: TypedTag[Builder, Output, FragT]

    The table body.

    The table body.

    MDN

  74. abstract val td: TypedTag[Builder, Output, FragT]

    A single cell in a table.

    A single cell in a table.

    MDN

  75. abstract val textarea: TypedTag[Builder, Output, FragT]

    A multiline text edit control.

    A multiline text edit control.

    MDN

  76. abstract val tfoot: TypedTag[Builder, Output, FragT]

    The table footer.

    The table footer.

    MDN

  77. abstract val th: TypedTag[Builder, Output, FragT]

    A header cell in a table.

    A header cell in a table.

    MDN

  78. abstract val thead: TypedTag[Builder, Output, FragT]

    The table headers.

    The table headers.

    MDN

  79. abstract val tr: TypedTag[Builder, Output, FragT]

    A single row in a table.

    A single row in a table.

    MDN

  80. abstract val track: TypedTag[Builder, Output, FragT]

    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

  81. abstract val u: TypedTag[Builder, Output, FragT]

    Underlined text.

    Underlined text.

    MDN

  82. abstract val ul: TypedTag[Builder, Output, FragT]

    Defines an unordered list of items.

    Defines an unordered list of items.

    MDN

  83. abstract val video: TypedTag[Builder, Output, FragT]

    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

  84. abstract val wbr: TypedTag[Builder, Output, FragT]

    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

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) ⇒ Frag[Builder, FragT]): Frag[Builder, FragT]

    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) ⇒ Frag[Builder, FragT]): Frag[Builder, FragT]

    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. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

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

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

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

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
  20. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Util[Builder, Output, FragT]

Inherited from LowPriUtil[Builder, Output, FragT]

Inherited from AnyRef

Inherited from Any

Ungrouped