classafDuvet::MetaTagBuilder

sys::Obj
  afDuvet::MetaTagBuilder

Defines a <meta> tag to be injected into the bottom of your head. Created via HtmlInjector.

@see https://developer.mozilla.org/en/docs/Web/HTML/Element/meta

getAttr

Source

Str? getAttr(Str name)

Returns an attribute value on the <meta> element.

setAttr

Source

MetaTagBuilder setAttr(Str name, Str value)

Sets an arbitrary attribute on the <meta> element.

withContent

Source

MetaTagBuilder withContent(Str content)

Sets the content attribute. Returns this.

withLang

Source

MetaTagBuilder withLang(Str lang)

Sets the lang attribute. Returns this.

withName

Source

MetaTagBuilder withName(Str name)

Sets the name attribute. Returns this.

withProperty

Source

MetaTagBuilder withProperty(Str property)

Sets the property attribute. Returns this.