Skip to content
This repository was archived by the owner on Oct 7, 2020. It is now read-only.

Commit 57b7319

Browse files
authored
Merge pull request #1199 from alanz/fix-haddock-end-quotes
Undo unnecessary changes from #1189
2 parents a368730 + 20dc61c commit 57b7319

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Haskell/Ide/Engine/Plugin/Haddock.hs

+2-2
Original file line numberDiff line numberDiff line change
@@ -188,12 +188,12 @@ renderMarkDown =
188188
, markupProperty = \s -> T.unlines
189189
["\n```haskell"
190190
,"prop> " <> removeInner (T.pack s)
191-
,"\n```\n"]
191+
,"```\n"]
192192
, markupExample = T.unlines . map (\e -> T.pack $ unlines $
193193
["\n```haskell"
194194
,"> " <> exampleExpression e
195195
] ++ exampleResult e ++
196-
["\n```\n"])
196+
["```\n"])
197197
, markupHeader = \h ->
198198
T.replicate (headerLevel h) "#" <> " " <> headerTitle h <> "\n"
199199
#if __GLASGOW_HASKELL__ >= 804

0 commit comments

Comments
 (0)