go-cff
is an easy-to-use library for working with the Citation File Format (CFF) format in GO.
parsedCFF, err := cff.ParseFile("./CITATION.cff")
if err != nil {
fmt.Println("Error: ", err)
return
}
for _, reference := range parsedCFF.References {
fmt.Println(reference.Title)
}
See Documentation for more information.
- Update documentation
- 100% coverage