Saddle the Pony

It's a lot more faff to write it in lilypond and export it as a svg as I did above, but it does look a lot nicer than the abc below I think.

X: 1 R: jig M: 6/8 L: 1/8 K: Gmaj |:D|GBA G2B|def gdB|GBA G2B|AFD AFD| GBA G2B|def gfg|efe dBA|BGG G2:| |:d|efe edB|def gfg|efe edB|dBA ABd| efe edB|def gfg|efe dBA|BGG G2:|

\version "2.7.40"

global = {
  \key g \major
  \time 6/8
  \partial 8
}

voicedefault =  \relative c'{
  \global 
  \repeat volta 2 {
    d8 | g b a g4 b8 | d e fis g d b | g b a g4 b8 | a fis d a' fis d |
    g b a g4 b8 | d e fis g fis g | e fis e d b a | b g g g4
  }
  \break
  \repeat volta 2 {
    d'8 | e fis e e d b | d e fis g fis g | e fis e e d b | d b a a b d |
    e fis e e d b | d e fis g fis g | e fis e d b a | b g g g4
  }
}


#(set-global-staff-size 18)
\paper {
  %output-suffix = "web-inline"
  fonts = # (make-pango-font-tree "EB Garamond" "Noto Sans" "Nimbus Mono PS" (/ (* staff-height pt) 2.5))

  line-width = 140\mm
  indent = 0\mm
  %ragged-right = ##t

  bookTitleMarkup = ##f
  scoreTitleMarkup = ##f
  oddHeaderMarkup = ##f
  evenHeaderMarkup = ##f
  oddFooterMarkup = ##f
  evenFooterMarkup = ##f
  print-page-number = ##f
  tagline = ##f
}

\score{
  <<
    \context Staff="default"
    {
      \voicedefault
    }
  >>
  \layout {
  }
  \midi {}
}

Then compiled with lilypond --svg -dno-point-and-click -dno-use-paper-size-for-page saddle-the-pony.ly.

Versus this for the ABC:

X: 1
R: jig
M: 6/8
L: 1/8
K: Gmaj
|:D|GBA G2B|def gdB|GBA G2B|AFD AFD|
GBA G2B|def gfg|efe dBA|BGG G2:|
|:d|efe edB|def gfg|efe edB|dBA ABd|
efe edB|def gfg|efe dBA|BGG G2:|