hatmill/attribute/customdata.go

12 lines
269 B
Go

package attribute
import "git.codemonkeysoftware.net/b/hatmill"
// CustomData creates an attribute of the form data-suffix='value'.
func CustomData(suffix, value string) hatmill.Attrib {
return hatmill.Attrib{
Key: "data-" + suffix,
Value: String(value),
}
}