haskell / parsec

A monadic parser combinator library
https://hackage.haskell.org/package/parsec
Other
847 stars 94 forks source link

Generate syntax highlighting files #166

Open vanillajonathan opened 1 year ago

vanillajonathan commented 1 year ago

After you create a parser then you have write syntax highlighting files to syntax highlight the language your parser parses. When doing changes to the parser you manually have to update these files.

It would be good if you could generate such syntax highlight files for:

colbyn commented 7 months ago

Before you can implement syntax highlighting you'll need to track source code positions in your AST design.