hatmill/attribute/accesskey.go

11 lines
196 B
Go

package attribute
import "gitlab.codemonkeysoftware.net/b/hatmill"
func Accesskey(value rune) hatmill.Attrib {
return hatmill.Attrib{
Key: "accesskey",
Value: String([]rune{value}),
}
}