If I got the line
> { -# OPTIONS_GHC -fglasgow-exts -XTemplateHaskell #- }
in the documentation-part (description) of the .cabal-file I'll get the error message
haddock: parsing haddock prologue failed
when running
$ cabal haddock
but if I get rid of the { and } everything works fine. Is there some way to escape {} so they can be used in the description?
{-# LANGUAGE TemplateHaskell #-}.) I looked for examples of people trying to do this on Hackage, and all I found was (presumably) your attempt. Maybe move the cut-n-paste code into a different file... or make a non-backward-compatible change to the parser :( – jrockway Aug 29 '10 at 20:47test-framework-thand I figured out what pragmas I needed without that detail in the description. So maybe the docs are unnecessary. :) – jrockway Aug 29 '10 at 20:48(...)instead of{...}. – finnsson Aug 31 '10 at 12:38