Suppress re-exported module's docs ...

Is there any way to have Haddock ignore a re-exported module without hiding it? eg. here all of `B`'s exports/docs show up in `A`'s Haddock page and I don't want to see them there: module A ( ... module B ) import B ...

I believe the following is a common pattern:
module A
( module Exports
) where
import B as Exports
import C as Exports
Op vr 21 sep. 2018 13:15 schreef aditya siram
Is there any way to have Haddock ignore a re-exported module without hiding it? eg. here all of `B`'s exports/docs show up in `A`'s Haddock page and I don't want to see them there:
module A ( ... module B ) import B ... _______________________________________________ Haskell-Cafe mailing list To (un)subscribe, modify options or view archives go to: http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe Only members subscribed via the mailman list are allowed to post.
participants (2)
-
aditya siram
-
Roel van Dijk