Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.39 KB

README.md

File metadata and controls

34 lines (23 loc) · 1.39 KB

go-cff

DOI Audit Coverage Status Go Report Card Go Reference License GitHub top language

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.

ToDo's

  • Update documentation
  • 100% coverage