hatmill/attribute/accesskey.go

11 lines
196 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 {
2019-04-28 17:40:41 +00:00
return hatmill.Attrib{
Key: "accesskey",
Value: String([]rune{value}),
2019-04-28 17:40:41 +00:00
}
2019-04-27 21:00:56 +00:00
}