**Attach the file for which the detection is inaccurate** ````go package main import ( "fmt" "github.com/gabriel-vasile/mimetype" ) func main() { mtype := mimetype.Detect([]byte("col1,col2\n<svg,val")) fmt.Println(mtype.String(), mtype.Extension()) } // outputs svg ```` **Expected MIME type** text/csv .csv **Returned MIME type** image/svg+xml .svg **Version of the library you are using** go version go1.24.2 darwin/arm64 **Output of `go version`** v1.4.9