alexander-lindner / go-cff

A go library for quickly accessing cff files

Home Page:https://alexander-lindner.github.io/go-cff/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

A go library for quickly accessing cff files

https://alexander-lindner.github.io/go-cff/

License:Mozilla Public License 2.0


Languages

Language:Go 100.0%