hatmill/attribute/accesskey.go

11 lines
213 B
Go
Raw Normal View History

2019-04-27 21:00:56 +00:00
package attribute
import "gitlab.codemonkeysoftware.net/b/hatmill"
func Accesskey(value rune) hatmill.Attrib {
return hatmill.Attrib {
Key: "accesskey",
Value: string([]rune{value}),
}
}