ejlilley / lilypond-parse

Haskell parser for Lilypond, using Parsec
Other
5 stars 1 forks source link

explain what this repo does, in relation to music-suite #2

Closed jwaldmann closed 4 years ago

jwaldmann commented 4 years ago

Currently, this repo here has just one module Data.Music.Lilypond.Parse but in fact it contains

The goal is intergration with music-suite, which already has an AST type and a printer (data Music, instance Pretty Music) and some semantics, https://github.com/music-suite/music-suite/blob/master/src/Data/Music/Lilypond.hs . This should be merged somehow. What would be the best way forward?

ejlilley commented 4 years ago

This repo was split off from another repo, AbstractMusic -- it wasn't designed from the ground up to be integrated into the music-suite (some other features from AbstractMusic have been ported to music-suite though, such as the internal representation of intervals).