SvgAttrs

trait SvgAttrs[Builder, Output <: FragT, FragT] extends Util[Builder, Output, FragT]
trait Util[Builder, Output, FragT]
trait LowPriUtil[Builder, Output, FragT]
class Object
trait Matchable
class Any

Type members

Inherited classlikes

class SeqNode[A](xs: Seq[A])(implicit ev: A => 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.

Inherited from
Util

Inherited types

type ConcreteHtmlTag[T <: Output] <: TypedTag[Builder, T, FragT]
Inherited from
Util

Value members

Inherited methods

def attr(s: String, ns: Namespace, raw: Boolean): Attr

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
 )
Inherited from
Util
def css(s: String): Style

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"
 )
Inherited from
Util
def frag(frags: Frag[Builder, FragT]*): Frag[Builder, FragT]
Inherited from
Util
def makeAbstractTypedTag[T <: Output](tag: String, void: Boolean, namespaceConfig: Namespace): ConcreteHtmlTag[T]
Inherited from
Util
def modifier(mods: Modifier[Builder]*): Modifier[Builder]
Inherited from
Util
def tag(s: String, void: Boolean): TypedTag[Builder, Output, FragT]
Inherited from
Util

Concrete fields

lazy val `class`: Attr

Assigns a class name or set of class names to an element. You may assign the same class name or names to any number of elements. If you specify multiple class names, they must be separated by whitespace characters. The class name of an element has two key roles: -As a style sheet selector, for use when an author wants to assign style information to a set of elements. -For general usage by the browser. The class can be used to style SVG content using CSS.

Assigns a class name or set of class names to an element. You may assign the same class name or names to any number of elements. If you specify multiple class names, they must be separated by whitespace characters. The class name of an element has two key roles: -As a style sheet selector, for use when an author wants to assign style information to a set of elements. -For general usage by the browser. The class can be used to style SVG content using CSS.

Value

MDN

lazy val `type`: Attr
lazy val accentHeight: Attr

This attribute defines the distance from the origin to the top of accent characters, measured by a distance within the font coordinate system. If the attribute is not specified, the effect is as if the attribute were set to the value of the ascent attribute.

This attribute defines the distance from the origin to the top of accent characters, measured by a distance within the font coordinate system. If the attribute is not specified, the effect is as if the attribute were set to the value of the ascent attribute.

Value

MDN

lazy val accumulate: Attr

This attribute controls whether or not the animation is cumulative. It is frequently useful for repeated animations to build upon the previous results, accumulating with each iteration. This attribute said to the animation if the value is added to the previous animated attribute's value on each iteration.

This attribute controls whether or not the animation is cumulative. It is frequently useful for repeated animations to build upon the previous results, accumulating with each iteration. This attribute said to the animation if the value is added to the previous animated attribute's value on each iteration.

Value none | sum

MDN

lazy val additive: Attr

This attribute controls whether or not the animation is additive. It is frequently useful to define animation as an offset or delta to an attribute's value, rather than as absolute values. This attribute said to the animation if their values are added to the original animated attribute's value.

This attribute controls whether or not the animation is additive. It is frequently useful to define animation as an offset or delta to an attribute's value, rather than as absolute values. This attribute said to the animation if their values are added to the original animated attribute's value.

Value replace | sum

MDN

The alignment-baseline attribute specifies how an object is aligned with respect to its parent. This property specifies which baseline of this element is to be aligned with the corresponding baseline of the parent. For example, this allows alphabetic baselines in Roman text to stay aligned across font size changes. It defaults to the baseline with the same name as the computed value of the alignment-baseline property. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css alignment-baseline for further information.

The alignment-baseline attribute specifies how an object is aligned with respect to its parent. This property specifies which baseline of this element is to be aligned with the corresponding baseline of the parent. For example, this allows alphabetic baselines in Roman text to stay aligned across font size changes. It defaults to the baseline with the same name as the computed value of the alignment-baseline property. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css alignment-baseline for further information.

Value: auto | baseline | before-edge | text-before-edge | middle | central | after-edge | text-after-edge | ideographic | alphabetic | hanging | mathematical | inherit

MDN

lazy val ascent: Attr

This attribute defines the maximum unaccented depth of the font within the font coordinate system. If the attribute is not specified, the effect is as if the attribute were set to the vert-origin-y value for the corresponding font.

This attribute defines the maximum unaccented depth of the font within the font coordinate system. If the attribute is not specified, the effect is as if the attribute were set to the vert-origin-y value for the corresponding font.

Value

MDN

This attribute indicates the name of the attribute in the parent element that is going to be changed during an animation.

This attribute indicates the name of the attribute in the parent element that is going to be changed during an animation.

Value

MDN

This attribute specifies the namespace in which the target attribute and its associated values are defined.

This attribute specifies the namespace in which the target attribute and its associated values are defined.

Value CSS | XML | auto

MDN

lazy val azimuth: Attr

The azimuth attribute represent the direction angle for the light source on the XY plane (clockwise), in degrees from the x axis. If the attribute is not specified, then the effect is as if a value of 0 were specified.

The azimuth attribute represent the direction angle for the light source on the XY plane (clockwise), in degrees from the x axis. If the attribute is not specified, then the effect is as if a value of 0 were specified.

Value

MDN

The baseFrequency attribute represent The base frequencies parameter for the noise function of the primitive. If two s are provided, the first number represents a base frequency in the X direction and the second value represents a base frequency in the Y direction. If one number is provided, then that value is used for both X and Y. Negative values are forbidden. If the attribute is not specified, then the effect is as if a value of 0 were specified.

The baseFrequency attribute represent The base frequencies parameter for the noise function of the primitive. If two s are provided, the first number represents a base frequency in the X direction and the second value represents a base frequency in the Y direction. If one number is provided, then that value is used for both X and Y. Negative values are forbidden. If the attribute is not specified, then the effect is as if a value of 0 were specified.

Value

MDN

The baseline-shift attribute allows repositioning of the dominant-baseline relative to the dominant-baseline of the parent text content element. The shifted object might be a sub- or superscript. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css baseline-shift for further information.

The baseline-shift attribute allows repositioning of the dominant-baseline relative to the dominant-baseline of the parent text content element. The shifted object might be a sub- or superscript. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css baseline-shift for further information.

Value auto | baseline | sup | sub | | | inherit

MDN

lazy val begin: Attr

This attribute defines when an animation should begin. The attribute value is a semicolon separated list of values. The interpretation of a list of start times is detailed in the SMIL specification in "Evaluation of begin and end time lists". Each individual value can be one of the following: , , , , , or the keyword indefinite.

This attribute defines when an animation should begin. The attribute value is a semicolon separated list of values. The interpretation of a list of start times is detailed in the SMIL specification in "Evaluation of begin and end time lists". Each individual value can be one of the following: , , , , , or the keyword indefinite.

Value

MDN

lazy val bias: Attr

The bias attribute shifts the range of the filter. After applying the kernelMatrix of the element to the input image to yield a number and applied the divisor attribute, the bias attribute is added to each component. This allows representation of values that would otherwise be clamped to 0 or 1. If bias is not specified, then the effect is as if a value of 0 were specified.

The bias attribute shifts the range of the filter. After applying the kernelMatrix of the element to the input image to yield a number and applied the divisor attribute, the bias attribute is added to each component. This allows representation of values that would otherwise be clamped to 0 or 1. If bias is not specified, then the effect is as if a value of 0 were specified.

Value

MDN

lazy val calcMode: Attr

This attribute specifies the interpolation mode for the animation. The default mode is linear, however if the attribute does not support linear interpolation (e.g. for strings), the calcMode attribute is ignored and discrete interpolation is used.

This attribute specifies the interpolation mode for the animation. The default mode is linear, however if the attribute does not support linear interpolation (e.g. for strings), the calcMode attribute is ignored and discrete interpolation is used.

Value discrete | linear | paced | spline

MDN

lazy val clip: Attr

The clip attribute has the same parameter values as defined for the css clip property. Unitless values, which indicate current user coordinates, are permitted on the coordinate values on the . The value of auto defines a clipping path along the bounds of the viewport created by the given element. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css clip for further information.

The clip attribute has the same parameter values as defined for the css clip property. Unitless values, which indicate current user coordinates, are permitted on the coordinate values on the . The value of auto defines a clipping path along the bounds of the viewport created by the given element. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css clip for further information.

Value auto | | inherit

MDN

lazy val clipPath: Attr

The clip-path attribute bind the element is applied to with a given element As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet

The clip-path attribute bind the element is applied to with a given element As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet

Value | none | inherit

MDN

The clipPathUnits attribute defines the coordinate system for the contents of the element. the clipPathUnits attribute is not specified, then the effect is as if a value of userSpaceOnUse were specified. Note that values defined as a percentage inside the content of the are not affected by this attribute. It means that even if you set the value of maskContentUnits to objectBoundingBox, percentage values will be calculated as if the value of the attribute were userSpaceOnUse.

The clipPathUnits attribute defines the coordinate system for the contents of the element. the clipPathUnits attribute is not specified, then the effect is as if a value of userSpaceOnUse were specified. Note that values defined as a percentage inside the content of the are not affected by this attribute. It means that even if you set the value of maskContentUnits to objectBoundingBox, percentage values will be calculated as if the value of the attribute were userSpaceOnUse.

Value userSpaceOnUse | objectBoundingBox

MDN

lazy val clipRule: Attr

The clip-rule attribute only applies to graphics elements that are contained within a element. The clip-rule attribute basically works as the fill-rule attribute, except that it applies to definitions.

The clip-rule attribute only applies to graphics elements that are contained within a element. The clip-rule attribute basically works as the fill-rule attribute, except that it applies to definitions.

Value nonezero | evenodd | inherit

MDN

lazy val color: Attr

The color attribute is used to provide a potential indirect value (currentColor) for the fill, stroke, stop-color, flood-color and lighting-color attributes. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css color for further information.

The color attribute is used to provide a potential indirect value (currentColor) for the fill, stroke, stop-color, flood-color and lighting-color attributes. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css color for further information.

Value | inherit

MDN

The color-interpolation attribute specifies the color space for gradient interpolations, color animations and alpha compositing.When a child element is blended into a background, the value of the color-interpolation attribute on the child determines the type of blending, not the value of the color-interpolation on the parent. For gradients which make use of the xlink:href attribute to reference another gradient, the gradient uses the color-interpolation attribute value from the gradient element which is directly referenced by the fill or stroke attribute. When animating colors, color interpolation is performed according to the value of the color-interpolation attribute on the element being animated. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css color-interpolation for further information

The color-interpolation attribute specifies the color space for gradient interpolations, color animations and alpha compositing.When a child element is blended into a background, the value of the color-interpolation attribute on the child determines the type of blending, not the value of the color-interpolation on the parent. For gradients which make use of the xlink:href attribute to reference another gradient, the gradient uses the color-interpolation attribute value from the gradient element which is directly referenced by the fill or stroke attribute. When animating colors, color interpolation is performed according to the value of the color-interpolation attribute on the element being animated. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css color-interpolation for further information

Value auto | sRGB | linearRGB | inherit

MDN

The color-interpolation-filters attribute specifies the color space for imaging operations performed via filter effects. Note that color-interpolation-filters has a different initial value than color-interpolation. color-interpolation-filters has an initial value of linearRGB, whereas color-interpolation has an initial value of sRGB. Thus, in the default case, filter effects operations occur in the linearRGB color space, whereas all other color interpolations occur by default in the sRGB color space. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css color-interpolation-filters for further information

The color-interpolation-filters attribute specifies the color space for imaging operations performed via filter effects. Note that color-interpolation-filters has a different initial value than color-interpolation. color-interpolation-filters has an initial value of linearRGB, whereas color-interpolation has an initial value of sRGB. Thus, in the default case, filter effects operations occur in the linearRGB color space, whereas all other color interpolations occur by default in the sRGB color space. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css color-interpolation-filters for further information

Value auto | sRGB | linearRGB | inherit

MDN

lazy val colorProfile: Attr

The color-profile attribute is used to define which color profile a raster image included through the element should use. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css color-profile for further information.

The color-profile attribute is used to define which color profile a raster image included through the element should use. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css color-profile for further information.

Value auto | sRGB | | | inherit

MDN

The color-rendering attribute provides a hint to the SVG user agent about how to optimize its color interpolation and compositing operations. color-rendering takes precedence over color-interpolation-filters. For example, assume color-rendering: optimizeSpeed and color-interpolation-filters: linearRGB. In this case, the SVG user agent should perform color operations in a way that optimizes performance, which might mean sacrificing the color interpolation precision as specified by color-interpolation-filters: linearRGB. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css color-rendering for further information

The color-rendering attribute provides a hint to the SVG user agent about how to optimize its color interpolation and compositing operations. color-rendering takes precedence over color-interpolation-filters. For example, assume color-rendering: optimizeSpeed and color-interpolation-filters: linearRGB. In this case, the SVG user agent should perform color operations in a way that optimizes performance, which might mean sacrificing the color interpolation precision as specified by color-interpolation-filters: linearRGB. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css color-rendering for further information

Value auto | optimizeSpeed | optimizeQuality | inherit

MDN

The contentScriptType attribute on the element specifies the default scripting language for the given document fragment. This attribute sets the default scripting language used to process the value strings in event attributes. This language must be used for all instances of script that do not specify their own scripting language. The value content-type specifies a media type, per MIME Part Two: Media Types [RFC2046]. The default value is application/ecmascript

The contentScriptType attribute on the element specifies the default scripting language for the given document fragment. This attribute sets the default scripting language used to process the value strings in event attributes. This language must be used for all instances of script that do not specify their own scripting language. The value content-type specifies a media type, per MIME Part Two: Media Types [RFC2046]. The default value is application/ecmascript

Value

MDN

This attribute specifies the style sheet language for the given document fragment. The contentStyleType is specified on the element. By default, if it's not defined, the value is text/css

This attribute specifies the style sheet language for the given document fragment. The contentStyleType is specified on the element. By default, if it's not defined, the value is text/css

Value

MDN

lazy val cursor: Attr

The cursor attribute specifies the mouse cursor displayed when the mouse pointer is over an element.This attribute behave exactly like the css cursor property except that if the browser suport the element, it should allow to use it with the notation. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css cursor for further information.

The cursor attribute specifies the mouse cursor displayed when the mouse pointer is over an element.This attribute behave exactly like the css cursor property except that if the browser suport the element, it should allow to use it with the notation. As a presentation attribute, it also can be used as a property directly inside a CSS stylesheet, see css cursor for further information.

Value auto | crosshair | default | pointer | move | e-resize | ne-resize | nw-resize | n-resize | se-resize | sw-resize | s-resize | w-resize| text | wait | help | inherit

MDN

lazy val cx: Attr

For the and the element, this attribute define the x-axis coordinate of the center of the element. If the attribute is not specified, the effect is as if a value of "0" were specified.For the element, this attribute define the x-axis coordinate of the largest (i.e., outermost) circle for the radial gradient. The gradient will be drawn such that the 100% gradient stop is mapped to the perimeter of this largest (i.e., outermost) circle. If the attribute is not specified, the effect is as if a value of 50% were specified

For the and the element, this attribute define the x-axis coordinate of the center of the element. If the attribute is not specified, the effect is as if a value of "0" were specified.For the element, this attribute define the x-axis coordinate of the largest (i.e., outermost) circle for the radial gradient. The gradient will be drawn such that the 100% gradient stop is mapped to the perimeter of this largest (i.e., outermost) circle. If the attribute is not specified, the effect is as if a value of 50% were specified

Value

MDN

lazy val cy: Attr

For the and the element, this attribute define the y-axis coordinate of the center of the element. If the attribute is not specified, the effect is as if a value of "0" were specified.For the element, this attribute define the x-axis coordinate of the largest (i.e., outermost) circle for the radial gradient. The gradient will be drawn such that the 100% gradient stop is mapped to the perimeter of this largest (i.e., outermost) circle. If the attribute is not specified, the effect is as if a value of 50% were specified

For the and the element, this attribute define the y-axis coordinate of the center of the element. If the attribute is not specified, the effect is as if a value of "0" were specified.For the element, this attribute define the x-axis coordinate of the largest (i.e., outermost) circle for the radial gradient. The gradient will be drawn such that the 100% gradient stop is mapped to the perimeter of this largest (i.e., outermost) circle. If the attribute is not specified, the effect is as if a value of 50% were specified

Value

MDN

lazy val d: Attr

MDN

MDN

MDN

MDN

lazy val direction: Attr

MDN

MDN

lazy val display: Attr

MDN

MDN

lazy val divisor: Attr

MDN

MDN

MDN

MDN

lazy val dur: Attr

MDN

MDN

lazy val dx: Attr

MDN

MDN

lazy val dy: Attr

MDN

MDN

lazy val edgeMode: Attr

MDN

MDN

lazy val elevation: Attr

MDN

MDN

lazy val end: Attr

MDN

MDN

lazy val fill: Attr

MDN

MDN

lazy val fillOpacity: Attr

MDN

MDN

lazy val fillRule: Attr

MDN

MDN

lazy val filter: Attr

MDN

MDN

lazy val filterRes: Attr

MDN

MDN

lazy val filterUnits: Attr

MDN

MDN

lazy val floodColor: Attr

MDN

MDN

lazy val floodOpacity: Attr

MDN

MDN

lazy val fontFamily: Attr

MDN

MDN

lazy val fontSize: Attr

MDN

MDN

MDN

MDN

lazy val fontStretch: Attr

MDN

MDN

lazy val fontVariant: Attr

MDN

MDN

lazy val fontWeight: Attr

MDN

MDN

lazy val from: Attr

MDN

MDN

lazy val fx: Attr

MDN

MDN

lazy val fy: Attr

MDN

MDN

MDN

MDN

MDN

MDN

lazy val height: Attr

MDN

MDN

lazy val id: Attr

MDN

MDN

lazy val in: Attr

MDN

MDN

lazy val in2: Attr

MDN

MDN

lazy val k1: Attr

MDN

MDN

lazy val k2: Attr

MDN

MDN

lazy val k3: Attr

MDN

MDN

lazy val k4: Attr

MDN

MDN

lazy val kernelMatrix: Attr

MDN

MDN

MDN

MDN

lazy val kerning: Attr

MDN

MDN

lazy val keySplines: Attr

MDN

MDN

lazy val keyTimes: Attr

MDN

MDN

MDN

MDN

MDN

MDN

MDN

MDN

lazy val local: Attr

MDN

MDN

lazy val markerEnd: Attr

MDN

MDN

lazy val markerHeight: Attr

MDN

MDN

lazy val markerMid: Attr

MDN

MDN

lazy val markerStart: Attr

MDN

MDN

lazy val markerUnits: Attr

MDN

MDN

lazy val markerWidth: Attr

MDN

MDN

lazy val mask: Attr

MDN

MDN

MDN

MDN

lazy val maskUnits: Attr

MDN

MDN

lazy val max: Attr

MDN

MDN

lazy val min: Attr

MDN

MDN

lazy val mode: Attr

MDN

MDN

lazy val numOctaves: Attr

MDN

MDN

lazy val offset: Attr
lazy val opacity: Attr

MDN

MDN

lazy val operator: Attr

MDN

MDN

lazy val order: Attr

MDN

MDN

lazy val orient: Attr

The ‘orient’ attribute indicates how the marker is rotated when it is placed at its position on the markable element.

The ‘orient’ attribute indicates how the marker is rotated when it is placed at its position on the markable element.

W3C

lazy val overflow: Attr

MDN

MDN

lazy val paintOrder: Attr

MDN

MDN

lazy val pathLength: Attr

MDN

MDN

MDN

MDN

MDN

MDN

lazy val patternUnits: Attr

MDN

MDN

MDN

MDN

lazy val points: Attr

MDN

MDN

lazy val pointsAtX: Attr

MDN

MDN

lazy val pointsAtY: Attr

MDN

MDN

lazy val pointsAtZ: Attr

MDN

MDN

MDN

MDN

MDN

MDN

MDN

MDN

lazy val r: Attr

MDN

MDN

lazy val radius: Attr

MDN

MDN

lazy val refX: Attr

The ‘refX’ attribute defines the reference point of the marker which is to be placed exactly at the marker's position on the markable element. It is interpreted as being in the coordinate system of the marker contents, after application of the ‘viewBox’ and ‘preserveAspectRatio’ attributes.

The ‘refX’ attribute defines the reference point of the marker which is to be placed exactly at the marker's position on the markable element. It is interpreted as being in the coordinate system of the marker contents, after application of the ‘viewBox’ and ‘preserveAspectRatio’ attributes.

W3C

lazy val refY: Attr

The ‘refY’ attribute defines the reference point of the marker which is to be placed exactly at the marker's position on the markable element. It is interpreted as being in the coordinate system of the marker contents, after application of the ‘viewBox’ and ‘preserveAspectRatio’ attributes.

The ‘refY’ attribute defines the reference point of the marker which is to be placed exactly at the marker's position on the markable element. It is interpreted as being in the coordinate system of the marker contents, after application of the ‘viewBox’ and ‘preserveAspectRatio’ attributes.

W3C

lazy val repeatCount: Attr

MDN

MDN

lazy val repeatDur: Attr

MDN

MDN

MDN

MDN

lazy val restart: Attr

MDN

MDN

lazy val result: Attr

MDN

MDN

lazy val rx: Attr

MDN

MDN

lazy val ry: Attr

MDN

MDN

lazy val scale: Attr

MDN

MDN

lazy val seed: Attr

MDN

MDN

MDN

MDN

MDN

MDN

MDN

MDN

lazy val spreadMethod: Attr

MDN

MDN

lazy val stdDeviation: Attr

MDN

MDN

lazy val stitchTiles: Attr

MDN

MDN

lazy val stopColor: Attr

MDN

MDN

lazy val stopOpacity: Attr

MDN

MDN

lazy val stroke: Attr

MDN

MDN

MDN

MDN

MDN

MDN

MDN

MDN

MDN

MDN

MDN

MDN

MDN

MDN

lazy val strokeWidth: Attr

MDN

MDN

lazy val style: Attr

MDN

MDN

lazy val surfaceScale: Attr

MDN

MDN

lazy val targetX: Attr

MDN

MDN

lazy val targetY: Attr

MDN

MDN

lazy val textAnchor: Attr

MDN

MDN

MDN

MDN

MDN

MDN

lazy val to: Attr

MDN

MDN

lazy val transform: Attr
lazy val values: Attr
lazy val viewBox: Attr

MDN

MDN

lazy val visibility: Attr
lazy val width: Attr
lazy val wordSpacing: Attr
lazy val writingMode: Attr
lazy val x: Attr
lazy val x1: Attr
lazy val x2: Attr
lazy val xLinkHref: Attr
lazy val xLinkTitle: Attr
lazy val xmlSpace: Attr
lazy val xmlns: Attr

MDN

MDN

lazy val y: Attr
lazy val y1: Attr
lazy val y2: Attr
lazy val z: Attr

Implicits

Inherited implicits

implicit def ArrayFrag[A](xs: Array[A])(implicit ev: 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

Inherited from
LowPriUtil
implicit def ArrayNode[A](xs: Array[A])(implicit ev: 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.

Inherited from
Util
implicit def GeneratorFrag[A](xs: Generator[A])(implicit ev: 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

Inherited from
LowPriUtil
implicit def OptionFrag[A](xs: Option[A])(implicit ev: 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

Inherited from
LowPriUtil
implicit def OptionNode[A](xs: Option[A])(implicit ev: 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.

Inherited from
Util
implicit def SeqFrag[A](xs: Seq[A])(implicit ev: 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

Inherited from
LowPriUtil
implicit 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.

Inherited from
LowPriUtil