Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1118c42 commit d49bd89Copy full SHA for d49bd89
1 file changed
src/Input/Haddock.hs
@@ -43,6 +43,8 @@ parserC warning = f [] ""
43
x <- await
44
whenJust x $ \(i,s) -> case () of
45
_ | s == "}" -> f [] ""
46
+ -- Skip default methods like ($dmliftEq) and ($dmdisplayExceptionAnnotation)
47
+ | Just{} <- bstrStripPrefix "($dm" s -> f [] ""
48
| Just s <- bstrStripPrefix "-- | " s -> f [ignoreMath s] url
49
| Just s <- bstrStripPrefix "--" s -> f (if null com then [] else bstrTrimStart s : com) url
50
| Just s <- bstrStripPrefix " --" s -> f (if null com then [] else bstrTrimStart s : com) url
0 commit comments