in internal/print/print.go [12:24]
func PrintCreatorInfo(doc *v2_3.Document) {
size := len(doc.CreationInfo.Creators)
if size == 1 {
creator := doc.CreationInfo.Creators[0]
fmt.Printf("Creator: %s\n", creator.Creator)
} else if size > 1 {
firstItem := doc.CreationInfo.Creators[0]
fmt.Printf("Creators: %s\n", firstItem.Creator)
for _, creator := range doc.CreationInfo.Creators[1:] {
fmt.Printf(" %s\n", creator.Creator)
}
}
}