Key sets a custom key-value pair.
(key string, value interface{})
| 117 | |
| 118 | // Key sets a custom key-value pair. |
| 119 | func (p Problem) Key(key string, value interface{}) Problem { |
| 120 | p[key] = value |
| 121 | return p |
| 122 | } |
| 123 | |
| 124 | // Type URI SHOULD resolve to HTML [W3C.REC-html5-20141028] |
| 125 | // documentation that explains how to resolve the problem. |