This repository was archived by the owner on Aug 3, 2024. It is now read-only.
This repository was archived by the owner on Aug 3, 2024. It is now read-only.
Nested block comments are elided #1254
Open
Description
For example, in these haddocks, the following bit within a haddock {-|
--}
-comment,
For example,
> { {- A -} x {- B -} : {- C -} T }
... or
> { {- A -} x {- B -} = {- C -} T }
will be instantiated as follows:
…is rendered like this:
For example,
{ x : T }
... or{ x = T }
The nested block comments like {- A -}
and {- B -}
are missing.