We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7a175d7 + b9b4ccb commit c3342eeCopy full SHA for c3342ee
src/Language/PureScript/Docs/AsMarkdown.hs
@@ -44,14 +44,13 @@ declAsMarkdown RenderedDeclaration{..} = do
44
zipWithM_ (\f c -> tell' (childToString f c)) (First : repeat NotFirst) children
45
spacer
46
47
+ for_ rdComments tell'
48
+
49
unless (null instances) $ do
50
headerLevel 5 "Instances"
- fencedBlock $ do
- mapM_ (tell' . childToString NotFirst) instances
51
+ fencedBlock $ mapM_ (tell' . childToString NotFirst) instances
52
53
- for_ rdComments tell'
54
-
55
codeToString :: RenderedCode -> String
56
codeToString = outputWith elemAsMarkdown
57
where
0 commit comments