The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

App::Music::ChordPro::Config - Configurator.

DESCRIPTION

This module first establishes a well-defined (builtin) configuration.

Then it processes the config files specified by the envitronment and adds the information to the global $config hash.

The configurations files are 'relaxed' JSON files. This means that they may contain comments and trailing comma's.

This module can be run standalone and will print the default config.

DEFAULT CONFIGURATION

The default configuration as built in. User and system configs go on top of this one.

See https://www.chordpro.org/chordpro/chordpro-configuration/ for extensive details and examples.

    // Configuration for ChordPro.
    //
    // This is a relaxed JSON document, so comments are possible.
    
    {
        // Includes. These are processed first, before the rest of
        // the config file.
        //
        // "include" takes a list of either filenames or preset names.
        // "include" : [ "modern1", "lib/mycfg.json" ],
        "include" : [ "guitar" ],
    
        // General settings, to be changed by configs and command line.
        "settings" : {
          // Strict behaviour.
          "strict" : true,
          // Add line info for backend diagnostics.
          "lineinfo" : true,
          // Titles flush: default center.
          "titles" : "center",
          // Columns, default one.
          "columns" : 1,
          // Suppress empty chord lines.
          // Overrides the -a (--single-space) command line options.
          "suppress-empty-chords" : true,
          // Suppress blank lyrics lines.
          "suppress-empty-lyrics" : true,
          // Suppress chords.
          // Overrides --lyrics-only command line option.
          "lyrics-only" : false,
          // Memorize chords in sections, to be recalled by [^].
          "memorize" : false,
          // Chords inline.
          // May be a string containing pretext %s posttext.
          // Defaults to "[%s]" if true.
          "inline-chords" : false,
          // Chords under the lyrics.
          "chords-under" : false,
          // Transposing.
          "transpose" : 0,
          // Transcoding.
          "transcode" : "",
          // Always decapoize.
          "decapo" : false,
          // Chords parsing strategy.
          // Strict (only known) or relaxed (anything that looks sane).
          "chordnames": "strict",
          // Allow note names in [].
          "notenames" : false,
        },
    
        // Metadata.
        // For these keys you can use {meta key ...} as well as {key ...}.
        // If strict is nonzero, only the keys named here are allowed.
        // If strict is zero, {meta ...} will accept any key.
        // Important: "title" and "subtitle" must always be in this list.
        // The separator is used to concatenate multiple values.
        "metadata" : {
          "keys" : [ "title", "subtitle",
                 "artist", "composer", "lyricist", "arranger",
                 "album", "copyright", "year",
                 "sorttitle",
                 "key", "time", "tempo", "capo", "duration" ],
          "strict" : true,
          "separator" : "; ",
        },
        // Globally defined (added) meta data,
        // This is explicitly NOT intended for the metadata items above.
        "meta" : {
        },
    
        // Dates. Format is a strftime template.
        "dates" : {
            "today" : {
                "format" : "%A, %B %e, %Y"
            }
        },
    
        // User settings. These are usually set by a separate config file.
        //
        "user" : {
            "name"     : "",
            "fullname" : "",
        },
    
        // Instrument settings. These are usually set by a separate
        // config file.
        //
        "instrument" : {
            "type"     : "",
            "description" : "",
        },
    
        // Note (chord root) names.
        // Strings and tuning.
        "tuning" : [ "E2", "A2", "D3", "G3", "B3", "E4" ],
    
        // In case of alternatives, the first one is used for output.
        "notes" : {
    
          "system" : "common",
    
          "sharp" : [ "C", [ "C#", "Cis", "C♯" ],
                  "D", [ "D#", "Dis", "D♯" ],
                  "E",
                  "F", [ "F#", "Fis", "F♯" ],
                  "G", [ "G#", "Gis", "G♯" ],
                  "A", [ "A#", "Ais", "A♯" ],
                  "B",
                ],
    
          "flat" :  [ "C",
                  [ "Db", "Des",        "D♭" ], "D",
                  [ "Eb", "Es",  "Ees", "E♭" ], "E",
                  "F",
                  [ "Gb", "Ges",        "G♭" ], "G",
                  [ "Ab", "As",  "Aes", "A♭" ], "A",
                  [ "Bb", "Bes",        "B♭" ], "B",
                ],
    
           // Movable means position independent (e.g. nashville).
           "movable" : false,
        },
    
        // User defined chords.
        // "base" defaults to 1.
        // Use 0 for an empty string, and -1 for a muted string.
        // "fingers" is optional.
        // "display" (optional) can be used to change the way the chord is displayed. 
        "chords" : [
          //  {
          //    "name"  : "Bb",
          //    "base"  : 1,
          //    "frets" : [ 1, 1, 3, 3, 3, 1 ],
          //    "fingers" : [ 1, 1, 2, 3, 4, 1 ],
          //    "display" : "B<sup>\u266d</sup>",
          //  },
        ],
    
        // Printing chord diagrams.
        // "auto": automatically add unknown chords as empty diagrams.
        // "show": prints the chords used in the song.
        //         "all": all chords used.
        //         "user": only prints user defined chords.
        // "sorted": order the chords by key.
        // Note: The type of diagram (string or keyboard) is determined
        // by the value of "instrument.type".
        "diagrams" : {
        "auto"     :  false,
        "show"     :  "all",
        "sorted"   :  false,
        },
    
        // Diagnostig messages.
        "diagnostics" : {
        "format" : "\"%f\", line %n, %m\n\t%l",
        },
    
        // Table of contents.
        "contents" : [
        { "fields"   : [ "songindex" ],
          "label"    : "Table of Contents",
          "line"     : "%{title}",
              "pageno"   : "%{page}",
          "fold"     : false,
          "omit"     : false,
        },
        { "fields"   : [ "sorttitle", "artist" ],
          "label"    : "Contents by Title",
          "line"     : "%{title}%{artist| - %{}}",
              "pageno"   : "%{page}",
          "fold"     : false,
          "omit"     : false,
        },
        { "fields"   : [ "artist", "sorttitle" ],
          "label"    : "Contents by Artist",
          "line"     : "%{artist|%{} - }%{title}",
              "pageno"   : "%{page}",
          "fold"     : false,
          "omit"     : true,
        },
        ],
        // Table of contents, old style.
        // This will be ignored when new style contents is present.
        "toc" : {
        // Title for ToC.
        "title" : "Table of Contents",
        "line" : "%{title}",
        // Sorting order.
        // Currently only sorting by page number and alpha is implemented.
        "order" : "page",
        },
    
        // Delegates.
        // Basically a delegate is a section {start_of_XXX} which content is
        // collected and handled later by the backend.
    
        "delegates" : {
            "abc" : {
                "type" : "image",
                "handler" : "abc2image",
            },
            "ly" : {
                "type" : "image",
                "handler" : "ly2image",
            },
         },
    
        // Definitions for PDF output.
    
        "pdf" : {
    
          // PDF Properties.
          // Note that the context for substitutions is the first song.
          "info" : {
              "title"    : "%{title}",
          "author"   : "",
          "subject"  : "",
          "keywords" : "",
          },
    
          // Papersize, 'a4' or [ 595, 842 ] etc.
          "papersize" : "a4",
    
          "theme" : {
              "foreground" : "black",
              "background" : "none",
          },
    
          // Space between columns, in pt.
          "columnspace"  :  20,
    
          // Page margins.
          // Note that top/bottom exclude the head/footspace.
          "margintop"    :  80,
          "marginbottom" :  40,
          "marginleft"   :  40,
          "marginright"  :  40,
          "headspace"    :  60,
          "footspace"    :  20,
    
          // Special: head on first page only, add the headspace to
          // the other pages so they become larger.
          "head-first-only" : false,
    
          // Spacings.
          // Baseline distances as a factor of the font size.
          "spacing" : {
          "title"  : 1.2,
          "lyrics" : 1.2,
          "chords" : 1.2,
          "grid"   : 1.2,
          "tab"    : 1.0,
          "toc"    : 1.4,
          "empty"  : 1.0,
          },
          // Note: By setting the font size and spacing for empty lines to
          // smaller values, you get a fine(r)-grained control over the
          // spacing between the various parts of the song.
    
          // Style of chorus.
          "chorus" : {
          "indent"     :  0,
          // Chorus side bar.
          // Suppress by setting offset and/or width to zero.
          "bar" : {
              "offset" :  8,
              "width"  :  1,
              "color"  : "foreground",
          },
          "tag" : "Chorus",
          // Recall style: Print the tag using the type.
          // Alternatively quote the lines of the preceding chorus.
          "recall" : {
              "choruslike" : false,
              "tag"   : "Chorus",
              "type"  : "comment",
              "quote" : false,
          },
          },
    
          // This opens a margin for margin labels.
          "labels" : {
          // Margin width. Default is 0 (no margin labels).
          // "auto" will automatically reserve a margin if labels are used.
          "width" : "auto",
          // Alignment for the labels. Default is left.
          "align" : "left",
          // Alternatively, render labels as comments.
          "comment" : ""        // "comment", "comment_italic" or "comment_box",
          },
    
          // Alternative songlines with chords in a side column.
          // Value is the column position.
          // "chordscolumn" : 400,
          "chordscolumn" :  0,
          "capoheading" : "%{capo|Capo: %{}}",
    
          // A {titles: left} may conflict with customized formats.
          // Set to non-zero to ignore the directive.
          "titles-directive-ignore" : false,
    
          // Chord diagrams.
          // A chord diagram consists of a number of cells.
          // Cell dimensions are specified by "width" and "height".
          // The horizontal number of cells depends on the number of strings.
          // The vertical number of cells is "vcells", which should
          // be 4 or larger to accomodate most chords.
          // The horizontal distance between diagrams is "hspace" cells.
          // The vertical distance is "vspace" cells.
          // "linewidth" is the thickness of the lines as a fraction of "width".
          // Diagrams for all chords of the song can be shown at the
          // "top", "bottom" or "right" side of the first page,
          // or "below" the last song line.
          "diagrams" : {
          "show"     :  "bottom",
          "width"    :  6,      // of a cell
          "height"   :  6,      // of a cell
          "vcells"   :  4,      // vertically
          "linewidth" : 0.1,    // of a cell width
          "hspace"   :  3.95,   // fraction of width
          "vspace"   :  3,      // fraction of height
          },
    
          // Keyboard diagrams.
          // A keyboard diagram consists of a number of keys.
          // Dimensions are specified by "width" (a key) and "height".
          // The horizontal distance between diagrams is "hspace" * keys * width.
          // The vertical distance is "vspace" * height.
          // "linewidth" is the thickness of the lines as a fraction of "width".
          // Diagrams for all chords of the song can be shown at the
          // "top", "bottom" or "right" side of the first page,
          // or "below" the last song line.
          "kbdiagrams" : {
          "show"     :  "bottom",
          "width"    :   4,     // of a single key
          "height"   :  20,     // of the diagram
          "keys"     :  14,     // or 7, 10, 14, 17, 21
              "base"     :  "C",        // or "F"
          "linewidth" : 0.1,    // fraction of a single key width
              "pressed"  :  "grey",     // colour of a pressed key
          "hspace"   :  3.95,   // ??
          "vspace"   :  0.3,    // fraction of height
          },
    
          // Even/odd pages. A value of -1 denotes odd/even pages.
          "even-odd-pages" : 1,
          // Align songs to even/odd pages. When greater than 1, force alignment.
          "pagealign-songs" : 1,
    
          // Formats.
          // Pages have two title elements and one footer element.
          // Topmost is "title". It uses the "title" font as defined further below.
          // Second is "subtitle". It uses the "subtitle" font.
          // The "footer" uses the "footer" font.
          // All elements can have three fields, that are placed to the left side,
          // centered, and right side of the page.
          // The contents of all fields is defined below. You can use metadata
          // items in the fields as shown. By default, the "title" element shows the
          // value of metadata item "title", centered on the page. Likewise
          // "subtitle".
          // NOTE: The "title" and "subtitle" page elements have the same names
          // as the default metadata values which may be confusing. To show
          // metadata item, e.g. "artist", add its value to one of the
          // title/subtitle fields. Don't try to add an artist page element.
    
          "formats" : {
          // Titles/Footers.
    
          // Titles/footers have 3 parts, which are printed left,
          // centered and right.
          // For even/odd printing, the order is reversed.
    
          // By default, a page has:
          "default" : {
              // No title/subtitle.
              "title"     : [ "", "", "" ],
              "subtitle"  : [ "", "", "" ],
              // Footer is title -- page number.
              "footer"    : [ "%{title}", "", "%{page}" ],
          },
          // The first page of a song has:
          "title" : {
              // Title and subtitle.
              "title"     : [ "", "%{title}", "" ],
              "subtitle"  : [ "", "%{subtitle}", "" ],
              // Footer with page number.
              "footer"    : [ "", "", "%{page}" ],
          },
          // The very first output page is slightly different:
          "first" : {
              // It has title and subtitle, like normal 'first' pages.
              // But no footer.
              "footer"    : [ "", "", "" ],
          },
          },
    
          // Split marker for syllables that are smaller than chord width.
          // split-marker is a 3-part array: 'start', 'repeat', and 'final'.
          // 'final' is always printed, last.
          // 'start' is printed if there is enough room.
          // 'repeat' is printed repeatedly to fill the rest.
          // If split-marker is a single string, this is 'start'.
          // All elements may be left empty strings.
          "split-marker" : [ "", "", "" ],
    
          // Font families and properties.
          // "fontconfig" maps members of font families to physical fonts.
          // Optionally, additional properties of the fonts can be specified.
          // Physical fonts can be the names of TrueType/OpenType fonts,
          // or names of built-in fonts (corefonts).
          // Relative filenames are looked up in the fontdir.
          // "fontdir" : [ "/usr/share/fonts/liberation", "/home/me/fonts" ],
    
          "fontdir" : [],
          "fontconfig" : {
          // alternatives: regular r normal <empty>
          // alternatives: bold b strong
          // alternatives: italic i oblique o emphasis
          // alternatives: bolditalic bi italicbold ib boldoblique bo obliquebold ob
          "times" : {
              ""            : "Times-Roman",
              "bold"        : "Times-Bold",
              "italic"      : "Times-Italic",
              "bolditalic"  : "Times-BoldItalic",
          },
          "helvetica" : {
              ""            : "Helvetica",
              "bold"        : "Helvetica-Bold",
              "oblique"     : "Helvetica-Oblique",
              "boldoblique" : "Helvetica-BoldOblique",
          },
          "courier" : {
              ""            : "Courier",
              "bold"        : "Courier-Bold",
              "italic"      : "Courier-Italic",
              "bolditalic"  : "Courier-BoldItalic",
          },
          "dingbats" : {
              ""            : "ZapfDingbats",
          },
          },
    
          // "fonts" maps output elements to fonts as defined in "fontconfig".
          // The elements can have a background colour associated.
          // Colours are "#RRGGBB" or predefined names like "black", "white",
          // and lots of others.
          // NOTE: In the built-in config we use only "name" since that can
          // be overruled with user settings.
    
          "fonts" : {
          "title" : {
              "name" : "Times-Bold",
              "size" : 14
          },
          "text" : {
              "name" : "Times-Roman",
              "size" : 12
          },
          "chord" : {
              "name" : "Helvetica-Oblique",
              "size" : 10
          },
          "chordfingers" : {
              "name" : "ZapfDingbats",
              "size" : 10,
              "numbercolor" : "background",
          },
          "comment" : {
              "name" : "Helvetica",
              "size" : 12,
              "background" : "#E5E5E5"
          },
          "comment_italic" : {
              "name" : "Helvetica-Oblique",
              "size" : 12,
          },
          "comment_box" : {
              "name" : "Helvetica",
              "size" : 12,
              "frame" : 1
          },
          "tab" : {
              "name" : "Courier",
              "size" : 10
          },
          "toc" : {
              "name" : "Times-Roman",
              "size" : 11
          },
          "grid" : {
              "name" : "Helvetica",
              "size" : 10
          },
          },
    
          // Element mappings that can be specified, but need not since
          // they default to other elements.
          // subtitle       --> text
          // comment        --> text
          // comment_italic --> chord
          // comment_box    --> chord
          // annotation     --> chord
          // toc            --> text
          // grid           --> chord
          // grid_margin    --> comment
          // footer         --> subtitle @ 60%
          // empty          --> text
          // diagram        --> comment
          // diagram_base   --> text (but at a small size)
    
          // Bookmarks (PDF outlines).
          // fields:   primary and (optional) secondary fields.
          // label:    outline label (omitted if there's only one outline)
          // line:     text of the outline element
          // collapse: initial display is collapsed
          // letter:   sublevel with first letters if more
          // fold:     group by primary (NYI)
          // omit:     ignore this
          "outlines" : [
          { "fields"   : [ "sorttitle", "artist" ],
            "label"    : "By Title",
            "line"     : "%{title}%{artist| - %{}}",
            "collapse" : false,
            "letter"   : 5,
            "fold"     : false,
          },
          { "fields"   : [ "artist", "sorttitle" ],
            "label"    : "By Artist",
            "line"     : "%{artist|%{} - }%{title}",
            "collapse" : false,
            "letter"   : 5,
            "fold"     : false,
          },
          ],
    
          // This will show the page layout if non-zero.
          "showlayout" : false,
    
          // CSV generation.
          "csv" : {
          // Restrict CSV to song pages only (do not include matter pages).
          "songsonly" : true
          }
        },
    
        // Settings for ChordPro backend.
        "chordpro" : {
        // Style of chorus.
        "chorus" : {
            // Recall style: Print the tag using the type.
            // Alternatively quote the lines of the preceding chorus.
            // If no tag+type or quote: use {chorus}.
            // Note: Variant 'msp' always uses {chorus}.
            "recall" : {
                 // "tag"   : "Chorus", "type"  : "comment",
                 "tag"   : "", "type"  : "",
                 // "quote" : false,
                 "quote" : false,
            },
        },
        },
    
        // Settings for HTML backend.
        "html" : {
        // Stylesheet links.
        "styles" : {
            "display" : "chordpro.css",
            "print"   : "chordpro_print.css",
        },
        },
    
        // Settings for A2Crd.
        "a2crd" : {
        // Treat leading lyrics lines as title/subtitle lines.
        "infer-titles" : true,
        // Classification algorithm.
        "classifier" : "pct_chords",
        // Tab stop width for tab expansion. Set to zero to disable.
        "tabstop" : 8,
        },
    
        // Settings for the parser/preprocessor.
        // For selected lines, you can specify a series of 
        // { "target" : "xxx", "replace" : "yyy" }
        // Every occurrence of "xxx" will be replaced by "yyy".
        // Use wisely.
        "parser" : {
        "preprocess" : {
            // All lines.
            "all" : [],
            // Directives.
            "directive" : [],
            // Song lines (lyrics) only.
                "songline" : [],
        },
        },
    
        // For (debugging (internal use only)).
        "debug" : {
            "spacing" : 0,
            "song" : 0,
        "abc" : 0,
        "ly" : 0,
        },
    
    }
    // End of config.