type html/template.Error
7 uses
html/template (current package)
context.go#L27: err *Error
error.go#L13: type Error struct {
error.go#L216: func (e *Error) Error() string {
error.go#L231: func errorf(k ErrorCode, node parse.Node, line int, f string, args ...any) *Error {
error.go#L232: return &Error{k, node, "", line, fmt.Sprintf(f, args...)}
escape.go#L27: err = &Error{ErrEndContext, nil, name, 0, fmt.Sprintf("ends in a non-text context: %v", c)}
transition.go#L525: func eatAttrName(s []byte, i int) (int, *Error) {