scalatags.generic

Tags

trait Tags[Builder, Output] extends Util[Builder, Output]

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], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Tags
  2. Util
  3. AnyRef
  4. 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]

    Definition Classes
    Util
  2. implicit class ExtendedString extends AnyRef

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

  3. implicit class SeqNode[A] extends Modifier[Builder]

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

Abstract Value Members

  1. abstract val a: TypedTag[Builder, Output]

    Represents a hyperlink, linking to another resource.

    Represents a hyperlink, linking to another resource.

    MDN

  2. abstract val area: TypedTag[Builder, Output]

    In conjunction with map, defines an image map

    In conjunction with map, defines an image map

    MDN

  3. abstract val audio: TypedTag[Builder, Output]

    Represents a sound or an audio stream.

    Represents a sound or an audio stream.

    MDN

  4. abstract val b: TypedTag[Builder, Output]

    Bold text.

    Bold text.

    MDN

  5. abstract val base: TypedTag[Builder, Output]

    Defines the base URL for relative URLs in the page.

    Defines the base URL for relative URLs in the page.

    MDN

  6. abstract val blockquote: TypedTag[Builder, Output]

    Represents a content that is quoted from another source.

    Represents a content that is quoted from another source.

    MDN

  7. abstract val body: TypedTag[Builder, Output]

    Represents the content of an HTML document.

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

    MDN

  8. abstract val br: TypedTag[Builder, Output]

    Represents a line break.

    Represents a line break.

    MDN

  9. abstract val button: TypedTag[Builder, Output]

    A button

    A button

    MDN

  10. abstract val canvas: TypedTag[Builder, Output]

    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

  11. abstract val caption: TypedTag[Builder, Output]

    The title of a table.

    The title of a table.

    MDN

  12. abstract val cite: TypedTag[Builder, Output]

    Represents the title of a work being cited.

    Represents the title of a work being cited.

    MDN

  13. abstract val code: TypedTag[Builder, Output]

    Represents computer code.

    Represents computer code.

    MDN

  14. abstract val col: TypedTag[Builder, Output]

    A single column.

    A single column.

    MDN

  15. abstract val colgroup: TypedTag[Builder, Output]

    A set of columns.

    A set of columns.

    MDN

  16. abstract val datalist: TypedTag[Builder, Output]

    A set of predefined options for other controls.

    A set of predefined options for other controls.

    MDN

  17. abstract val dd: TypedTag[Builder, Output]

    Represents the definition of the terms immediately listed before it.

    Represents the definition of the terms immediately listed before it.

    MDN

  18. abstract val del: TypedTag[Builder, Output]

    Defines a removal from the document.

    Defines a removal from the document.

    MDN

  19. abstract val div: TypedTag[Builder, Output]

    Represents a generic container with no special meaning.

    Represents a generic container with no special meaning.

    MDN

  20. abstract val dl: TypedTag[Builder, Output]

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

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

    MDN

  21. abstract val dt: TypedTag[Builder, Output]

    Represents a term defined by the next dd

    Represents a term defined by the next dd

    MDN

  22. abstract val em: TypedTag[Builder, Output]

    Represents emphasized text.

    Represents emphasized text.

    MDN

  23. abstract val embed: TypedTag[Builder, Output]

    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

  24. abstract val fieldset: TypedTag[Builder, Output]

    A set of fields.

    A set of fields.

    MDN

  25. abstract val figcaption: TypedTag[Builder, Output]

    Represents the legend of a figure.

    Represents the legend of a figure.

    MDN

  26. abstract val figure: TypedTag[Builder, Output]

    Represents a figure illustrated as part of the document.

    Represents a figure illustrated as part of the document.

    MDN

  27. abstract val footer: TypedTag[Builder, Output]

    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

  28. abstract val form: TypedTag[Builder, Output]

    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

  29. abstract val h1: TypedTag[Builder, Output]

    Heading level 1

    Heading level 1

    MDN

  30. abstract val h2: TypedTag[Builder, Output]

    Heading level 2

    Heading level 2

    MDN

  31. abstract val h3: TypedTag[Builder, Output]

    Heading level 3

    Heading level 3

    MDN

  32. abstract val h4: TypedTag[Builder, Output]

    Heading level 4

    Heading level 4

    MDN

  33. abstract val h5: TypedTag[Builder, Output]

    Heading level 5

    Heading level 5

    MDN

  34. abstract val h6: TypedTag[Builder, Output]

    Heading level 6

    Heading level 6

    MDN

  35. abstract val head: TypedTag[Builder, Output]

    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

  36. abstract val header: TypedTag[Builder, Output]

    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

  37. abstract val hr: TypedTag[Builder, Output]

    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

  38. abstract val html: TypedTag[Builder, Output]

    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

  39. abstract val i: TypedTag[Builder, Output]

    Italicized text.

    Italicized text.

    MDN

  40. abstract val iframe: TypedTag[Builder, Output]

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

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

    MDN

  41. abstract val img: TypedTag[Builder, Output]

    Represents an image.

    Represents an image.

    MDN

  42. abstract val input: TypedTag[Builder, Output]

    A typed data field allowing the user to input data.

    A typed data field allowing the user to input data.

    MDN

  43. abstract val ins: TypedTag[Builder, Output]

    Defines an addition to the document.

    Defines an addition to the document.

    MDN

  44. abstract val label: TypedTag[Builder, Output]

    The caption of a single field

    The caption of a single field

    MDN

  45. abstract val legend: TypedTag[Builder, Output]

    The caption for a fieldset.

    The caption for a fieldset.

    MDN

  46. abstract val li: TypedTag[Builder, Output]

    Defines an item of an list.

    Defines an item of an list.

    MDN

  47. abstract val link: TypedTag[Builder, Output]

    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

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

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

    In conjunction with area, defines an image map.

    In conjunction with area, defines an image map.

    MDN

  50. abstract val meta: TypedTag[Builder, Output]

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

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

    MDN

  51. abstract val object: TypedTag[Builder, Output]

    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

  52. abstract val ol: TypedTag[Builder, Output]

    Defines an ordered list of items.

    Defines an ordered list of items.

    MDN

  53. abstract val optgroup: TypedTag[Builder, Output]

    A set of options, logically grouped.

    A set of options, logically grouped.

    MDN

  54. abstract val option: TypedTag[Builder, Output]

    An option in a select element.

    An option in a select element.

    MDN

  55. abstract val p: TypedTag[Builder, Output]

    Defines a portion that should be displayed as a paragraph.

    Defines a portion that should be displayed as a paragraph.

    MDN

  56. abstract val param: TypedTag[Builder, Output]

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

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

    MDN

  57. abstract val pre: TypedTag[Builder, Output]

    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

  58. abstract val s: TypedTag[Builder, Output]

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

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

    MDN

  59. abstract val script: TypedTag[Builder, Output]

    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

  60. abstract val select: TypedTag[Builder, Output]

    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

  61. abstract val small: TypedTag[Builder, Output]

    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

  62. abstract val source: TypedTag[Builder, Output]

    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

  63. abstract val span: TypedTag[Builder, Output]

    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

  64. implicit abstract def stringAttr: AttrValue[Builder, String]

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

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

    Represents especially important text.

    Represents especially important text.

    MDN

  67. abstract val sub: TypedTag[Builder, Output]

    Subscript tag

    Subscript tag

    MDN

  68. abstract val sup: TypedTag[Builder, Output]

    Superscript tag.

    Superscript tag.

    MDN

  69. abstract val table: TypedTag[Builder, Output]

    Represents data with more than one dimension.

    Represents data with more than one dimension.

    MDN

  70. abstract val tbody: TypedTag[Builder, Output]

    The table body.

    The table body.

    MDN

  71. abstract val td: TypedTag[Builder, Output]

    A single cell in a table.

    A single cell in a table.

    MDN

  72. abstract val textarea: TypedTag[Builder, Output]

    A multiline text edit control.

    A multiline text edit control.

    MDN

  73. abstract val tfoot: TypedTag[Builder, Output]

    The table footer.

    The table footer.

    MDN

  74. abstract val th: TypedTag[Builder, Output]

    A header cell in a table.

    A header cell in a table.

    MDN

  75. abstract val thead: TypedTag[Builder, Output]

    The table headers.

    The table headers.

    MDN

  76. abstract val tr: TypedTag[Builder, Output]

    A single row in a table.

    A single row in a table.

    MDN

  77. abstract val track: TypedTag[Builder, Output]

    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

  78. abstract val u: TypedTag[Builder, Output]

    Underlined text.

    Underlined text.

    MDN

  79. abstract val ul: TypedTag[Builder, Output]

    Defines an unordered list of items.

    Defines an unordered list of items.

    MDN

  80. abstract val video: TypedTag[Builder, Output]

    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

  81. abstract val wbr: TypedTag[Builder, Output]

    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: 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. implicit def ArrayNode[A](xs: Array[A])(implicit arg0: (A) ⇒ Modifier[Builder]): SeqNode[A]

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

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

    Definition Classes
    Util
  7. implicit def OptionNode[A](xs: Option[A])(implicit arg0: (A) ⇒ Modifier[Builder]): SeqNode[A]

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

    Allows you to modify a HtmlTag 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. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def clone(): AnyRef

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

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

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

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
  21. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Util[Builder, Output]

Inherited from AnyRef

Inherited from Any

Ungrouped