···2525// Settings provides a structure to interact with the settings
2626// of a Ponder library
2727type Settings struct {
2828- Name string // Name of the Ponder library
2929- Author string // Author of the Ponder library
3030- IgnoreDirs []string // Directories to be ignored on search
3131- LilypondIncludes []string // Directories to be included when running the lilypond compiler
3232- OutputDir string // Directory in which all complete file are stored
2828+ Name string // Name of the Ponder library
2929+ Author string // Author of the Ponder library
3030+ IgnoreDirs []string // Directories to be ignored on search
3131+ LilypondIncludes []string // Directories to be included when running the lilypond compiler
3232+ OutputDir string // Directory in which all complete file are stored
3333+ HideUncategorized bool // Hide scores without a category from the book
3334}
34353536// FromFile reads a settings file in json format and returns the Settings struct