diff --git a/frontmatter/frontmatter.go b/frontmatter/frontmatter.go index 65839abb..1638c39b 100644 --- a/frontmatter/frontmatter.go +++ b/frontmatter/frontmatter.go @@ -36,7 +36,7 @@ func Pretty(content []byte) (*Content, string, error) { kind := reflect.ValueOf(data).Kind() - if kind.String() == "invalid" { + if kind == reflect.Invalid { return &Content{}, "", nil }