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-27 21:00:56 +00:00
|
|
|
}
|