11 lines
213 B
Go
11 lines
213 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}),
|
|
}
|
|
}
|