In 1992 Martin Leclerc and Mario Dorion developed a simple text file format to write lead sheets, songs with lyrics and chords, and a tool to create neatly printed lead sheets out of these text files. The tool was called chord
, and the text files were called chord
files. It soon became a popular way to write lead sheets and many users and tools adopted this format for similar purposes. For still unknown reasons people started calling the files chordpro
files.
As mentioned, the ChordPro file format is a simple text file format. Any text editor or word processor can be used to create and maintain them. The text files can have arbitrary names and arbitrary types (extensions). Common filename extensions for ChordPro files are .cho
, .crd
, .chopro
, .chord
and .pro
. If you need to choose an extension for new ChordPro files, we advise to use .cho
. Simple, short, easy to remember, and not heavily used by other applications.
For example, this is the contents of a simple song:
# A simple ChordPro song.
{title: Swing Low Sweet Chariot}
{start_of_chorus}
Swing [D]low, sweet [G]chari[D]ot,
Comin’ for to carry me [A7]home.
Swing [D7]low, sweet [G]chari[D]ot,
Comin’ for to [A7]carry me [D]home.
{end_of_chorus}
I [D]looked over Jordan, and [G]what did I [D]see,
Comin’ for to carry me [A7]home.
A [D]band of angels [G]comin’ after [D]me,
Comin’ for to [A7]carry me [D]home.
{comment: Chorus}
As you can see, the lyrics of the song are interspersed with chords written between brackets [
and ]
. The chords are placed in front of the syllable they belong to. In the printed output the chords will be printed on top of the syllable, looking like this (but much nicer):
D G D
Swing low, sweet chariot,
A7
Comin’ for to carry me home.
Besides lyrics with chords, the ChordPro file contains directives, lines that start with {
and end with }
. The directives play an important part in how the printed output will look like. In the example above
{title: Swing Low Sweet Chariot}
defines the title of the song, which will most likely be placed on top of the output page.
The directives {start_of_chorus}
and {end_of_chorus}
indicate that the lines contained form the chorus of the song. This allows the chorus to be printed in an outstanding way. The line {comment: Chorus}
will result in a text line containing the text Chorus
as an indicator that the chorus should be played here.
Finally, all lines that start with a #
are ignored. These can be used to insert remarks into the ChordPro file that are only relevant for maintainers.
In print, this song could look like this (click on the thumbnail to view the full PDF):
Yes, this is all there is to say about the ChordPro file format. Lyrics-and-chords lines, directives, empty lines and #
-remarks. Of course, the most interesting part is what directives are possible and what effects they have. This is discussed in ChordPro Directives. Also relevant is what chords can be used, this is discussed in ChordPro Chords.
In the early days of ChordPro, the only way to get a nicely formatted lead sheet was to print it on a LaserWriter. The original chord
program created a so called PostScript document that could be send to the printer.
Much has changed. Nowadays PDF documents are used for printed output, but they can also be viewed on PC, phone and tablets. The ChordPro reference implementation produces PDF by default. Nevertheless, in this document we will still use the term ‘printing’ when referring to the result of processing ChordPro files.
Official web site: https://www.chordpro.org/.
Help improving this documentation - visit https://github.com/ChordPro/chordpro/wiki