(As referenced here:) tags/highlight.go won't compile in go < 1.16, because it uses "io/fs":
build github.com/osteele/gojekyll: cannot load io/fs: malformed module path "io/fs": missing dot in first path element
Previous versions used this code to test for the absence of the pygmentize command, but it does not work in go 1.16 because the error is not on the specified type:
if e.Err == exec.ErrNotFound {
831ea53 changed to use this code, but this code does not compile in go < 1.16:
(As referenced here:)
tags/highlight.go
won't compile in go < 1.16, because it uses "io/fs":Previous versions used this code to test for the absence of the
pygmentize
command, but it does not work in go 1.16 because the error is not on the specified type:831ea53 changed to use this code, but this code does not compile in go < 1.16: