var golang.org/x/pkgsite/internal/godoc/dochtml.ErrTooLarge

4 uses

	golang.org/x/pkgsite/internal/godoc/dochtml (current package)
		dochtml.go#L38: 	ErrTooLarge = errors.New("rendered documentation HTML size exceeded the specified limit")
		dochtml.go#L325: 		return safehtml.HTML{}, fmt.Errorf("dochtml.Render: %w", ErrTooLarge)

	golang.org/x/pkgsite/internal/godoc
		godoc.go#L16: var ErrTooLarge = dochtml.ErrTooLarge

	golang.org/x/pkgsite/internal/frontend
		main.go#L162: 		if err != nil && !errors.Is(err, dochtml.ErrTooLarge) {