// GENERATED BY gitlab.codemonkeysoftware.net/b/hatmill/internal/codegen // DO NOT EDIT! package attribute import "gitlab.codemonkeysoftware.net/b/hatmill" import "strconv" // Accept creates a "accept" attribute func Accept(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "accept", Value: value, } } // AcceptCharset creates a "accept-charset" attribute func AcceptCharset(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "accept-charset", Value: value, } } // Accesskey creates a "accesskey" attribute func Accesskey(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "accesskey", Value: value, } } // Action creates a "action" attribute func Action(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "action", Value: value, } } // Alt creates a "alt" attribute func Alt(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "alt", Value: value, } } // Async creates a "async" attribute func Async() hatmill.Attrib { return hatmill.Attrib{ Key: "async", } } // Autocapitalize creates a "autocapitalize" attribute func Autocapitalize(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "autocapitalize", Value: value, } } // Autocomplete creates a "autocomplete" attribute func Autocomplete(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "autocomplete", Value: value, } } // Autofocus creates a "autofocus" attribute func Autofocus() hatmill.Attrib { return hatmill.Attrib{ Key: "autofocus", } } // Autoplay creates a "autoplay" attribute func Autoplay() hatmill.Attrib { return hatmill.Attrib{ Key: "autoplay", } } // Charset creates a "charset" attribute func Charset(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "charset", Value: value, } } // Checked creates a "checked" attribute func Checked() hatmill.Attrib { return hatmill.Attrib{ Key: "checked", } } // Cite creates a "cite" attribute func Cite(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "cite", Value: value, } } // Class creates a "class" attribute func Class(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "class", Value: value, } } // Cols creates a "cols" attribute func Cols(value int) hatmill.Attrib { return hatmill.Attrib{ Key: "cols", Value: strconv.FormatInt(int64(value), 10), } } // Colspan creates a "colspan" attribute func Colspan(value int) hatmill.Attrib { return hatmill.Attrib{ Key: "colspan", Value: strconv.FormatInt(int64(value), 10), } } // Content creates a "content" attribute func Content(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "content", Value: value, } } // Contenteditable creates a "contenteditable" attribute func Contenteditable(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "contenteditable", Value: value, } } // Contextmenu creates a "contextmenu" attribute func Contextmenu(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "contextmenu", Value: value, } } // Controls creates a "controls" attribute func Controls() hatmill.Attrib { return hatmill.Attrib{ Key: "controls", } } // Coords creates a "coords" attribute func Coords(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "coords", Value: value, } } // Crossorigin creates a "crossorigin" attribute func Crossorigin(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "crossorigin", Value: value, } } // Datetime creates a "datetime" attribute func Datetime(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "datetime", Value: value, } } // Decoding creates a "decoding" attribute func Decoding(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "decoding", Value: value, } } // Default creates a "default" attribute func Default() hatmill.Attrib { return hatmill.Attrib{ Key: "default", } } // Defer creates a "defer" attribute func Defer() hatmill.Attrib { return hatmill.Attrib{ Key: "defer", } } // Dir creates a "dir" attribute func Dir(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "dir", Value: value, } } // Dirname creates a "dirname" attribute func Dirname(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "dirname", Value: value, } } // Disabled creates a "disabled" attribute func Disabled() hatmill.Attrib { return hatmill.Attrib{ Key: "disabled", } } // Download creates a "download" attribute func Download(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "download", Value: value, } } // Draggable creates a "draggable" attribute func Draggable(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "draggable", Value: value, } } // Enctype creates a "enctype" attribute func Enctype(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "enctype", Value: value, } } // For creates a "for" attribute func For(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "for", Value: value, } } // Form creates a "form" attribute func Form(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "form", Value: value, } } // Formaction creates a "formaction" attribute func Formaction(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "formaction", Value: value, } } // Headers creates a "headers" attribute func Headers(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "headers", Value: value, } } // Height creates a "height" attribute func Height(value int) hatmill.Attrib { return hatmill.Attrib{ Key: "height", Value: strconv.FormatInt(int64(value), 10), } } // Hidden creates a "hidden" attribute func Hidden() hatmill.Attrib { return hatmill.Attrib{ Key: "hidden", } } // High creates a "high" attribute func High(value float32) hatmill.Attrib { return hatmill.Attrib{ Key: "high", Value: strconv.FormatFloat(float64(value), 'G', -1, 32), } } // Href creates a "href" attribute func Href(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "href", Value: value, } } // Hreflang creates a "hreflang" attribute func Hreflang(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "hreflang", Value: value, } } // HttpEquiv creates a "http-equiv" attribute func HttpEquiv(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "http-equiv", Value: value, } } // Id creates a "id" attribute func Id(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "id", Value: value, } } // Ismap creates a "ismap" attribute func Ismap() hatmill.Attrib { return hatmill.Attrib{ Key: "ismap", } } // Itemprop creates a "itemprop" attribute func Itemprop(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "itemprop", Value: value, } } // Kind creates a "kind" attribute func Kind(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "kind", Value: value, } } // Label creates a "label" attribute func Label(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "label", Value: value, } } // Lang creates a "lang" attribute func Lang(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "lang", Value: value, } } // List creates a "list" attribute func List(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "list", Value: value, } } // Loop creates a "loop" attribute func Loop() hatmill.Attrib { return hatmill.Attrib{ Key: "loop", } } // Low creates a "low" attribute func Low(value float32) hatmill.Attrib { return hatmill.Attrib{ Key: "low", Value: strconv.FormatFloat(float64(value), 'G', -1, 32), } } // Max creates a "max" attribute func Max(value float32) hatmill.Attrib { return hatmill.Attrib{ Key: "max", Value: strconv.FormatFloat(float64(value), 'G', -1, 32), } } // Maxlength creates a "maxlength" attribute func Maxlength(value int) hatmill.Attrib { return hatmill.Attrib{ Key: "maxlength", Value: strconv.FormatInt(int64(value), 10), } } // Media creates a "media" attribute func Media(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "media", Value: value, } } // Method creates a "method" attribute func Method(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "method", Value: value, } } // Min creates a "min" attribute func Min(value float32) hatmill.Attrib { return hatmill.Attrib{ Key: "min", Value: strconv.FormatFloat(float64(value), 'G', -1, 32), } } // Minlength creates a "minlength" attribute func Minlength(value int) hatmill.Attrib { return hatmill.Attrib{ Key: "minlength", Value: strconv.FormatInt(int64(value), 10), } } // Multiple creates a "multiple" attribute func Multiple() hatmill.Attrib { return hatmill.Attrib{ Key: "multiple", } } // Muted creates a "muted" attribute func Muted() hatmill.Attrib { return hatmill.Attrib{ Key: "muted", } } // Name creates a "name" attribute func Name(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "name", Value: value, } } // Novalidate creates a "novalidate" attribute func Novalidate() hatmill.Attrib { return hatmill.Attrib{ Key: "novalidate", } } // Open creates a "open" attribute func Open() hatmill.Attrib { return hatmill.Attrib{ Key: "open", } } // Optimum creates a "optimum" attribute func Optimum(value float32) hatmill.Attrib { return hatmill.Attrib{ Key: "optimum", Value: strconv.FormatFloat(float64(value), 'G', -1, 32), } } // Pattern creates a "pattern" attribute func Pattern(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "pattern", Value: value, } } // Ping creates a "ping" attribute func Ping(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "ping", Value: value, } } // Placeholder creates a "placeholder" attribute func Placeholder(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "placeholder", Value: value, } } // Poster creates a "poster" attribute func Poster(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "poster", Value: value, } } // Preload creates a "preload" attribute func Preload(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "preload", Value: value, } } // Readonly creates a "readonly" attribute func Readonly() hatmill.Attrib { return hatmill.Attrib{ Key: "readonly", } } // Referrerpolicy creates a "referrerpolicy" attribute func Referrerpolicy(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "referrerpolicy", Value: value, } } // Rel creates a "rel" attribute func Rel(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "rel", Value: value, } } // Required creates a "required" attribute func Required() hatmill.Attrib { return hatmill.Attrib{ Key: "required", } } // Reversed creates a "reversed" attribute func Reversed() hatmill.Attrib { return hatmill.Attrib{ Key: "reversed", } } // Rows creates a "rows" attribute func Rows(value int) hatmill.Attrib { return hatmill.Attrib{ Key: "rows", Value: strconv.FormatInt(int64(value), 10), } } // Rowspan creates a "rowspan" attribute func Rowspan(value int) hatmill.Attrib { return hatmill.Attrib{ Key: "rowspan", Value: strconv.FormatInt(int64(value), 10), } } // Sandbox creates a "sandbox" attribute func Sandbox(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "sandbox", Value: value, } } // Scope creates a "scope" attribute func Scope(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "scope", Value: value, } } // Selected creates a "selected" attribute func Selected() hatmill.Attrib { return hatmill.Attrib{ Key: "selected", } } // Shape creates a "shape" attribute func Shape(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "shape", Value: value, } } // Size creates a "size" attribute func Size(value int) hatmill.Attrib { return hatmill.Attrib{ Key: "size", Value: strconv.FormatInt(int64(value), 10), } } // Sizes creates a "sizes" attribute func Sizes(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "sizes", Value: value, } } // Span creates a "span" attribute func Span(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "span", Value: value, } } // Spellcheck creates a "spellcheck" attribute func Spellcheck(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "spellcheck", Value: value, } } // Src creates a "src" attribute func Src(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "src", Value: value, } } // Srcdoc creates a "srcdoc" attribute func Srcdoc(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "srcdoc", Value: value, } } // Srclang creates a "srclang" attribute func Srclang(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "srclang", Value: value, } } // Srcset creates a "srcset" attribute func Srcset(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "srcset", Value: value, } } // Start creates a "start" attribute func Start(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "start", Value: value, } } // Style creates a "style" attribute func Style(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "style", Value: value, } } // Tabindex creates a "tabindex" attribute func Tabindex(value int) hatmill.Attrib { return hatmill.Attrib{ Key: "tabindex", Value: strconv.FormatInt(int64(value), 10), } } // Target creates a "target" attribute func Target(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "target", Value: value, } } // Title creates a "title" attribute func Title(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "title", Value: value, } } // Type creates a "type" attribute func Type(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "type", Value: value, } } // Usemap creates a "usemap" attribute func Usemap(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "usemap", Value: value, } } // Value creates a "value" attribute func Value(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "value", Value: value, } } // Width creates a "width" attribute func Width(value int) hatmill.Attrib { return hatmill.Attrib{ Key: "width", Value: strconv.FormatInt(int64(value), 10), } } // Wrap creates a "wrap" attribute func Wrap(value string) hatmill.Attrib { return hatmill.Attrib{ Key: "wrap", Value: value, } }