#!/bin/bash
for i in *.ly;
do
  source-highlight -s lilypond.lang --style-file=lilypond.style -i $i -o html/$i.html
done

