File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -111,8 +111,8 @@ common defaults
111
111
, process >= 1.6 && < 1.7
112
112
, text ^>= 1.2.5.0 || ^>= 2.0
113
113
, time >= 1.9 && < 1.13
114
- , transformers >= 0.5 && < 0.7
115
- , unix >= 2.7 && < 2.9
114
+ , transformers >= 0.5 && < 0.6
115
+ , unix >= 2.7 && < 2.8
116
116
, scientific
117
117
-- other dependencies shared by most components
118
118
build-depends :
@@ -398,7 +398,7 @@ library lib-server
398
398
-- see https://github.com/haskell/hackage-server/issues/1130
399
399
-- Thus, we need to include Cabal-syntax as dependency explicitly
400
400
, hackage-security-HTTP ^>= 0.1.1
401
- , haddock-library >= 1.7.0 && < 1.11
401
+ , haddock-library ^ >= 1.11.0
402
402
-- haddock-library-1.11.0 changed type of markupOrderedList
403
403
-- see https://github.com/haskell/hackage-server/issues/1128
404
404
, happstack-server ^>= 7.7.1 || ^>= 7.8.0
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ termsMarkup = Markup {
78
78
markupBold = id ,
79
79
markupMonospaced = \ s -> if length s > 1 then [] else s,
80
80
markupUnorderedList = concat ,
81
- markupOrderedList = concat ,
81
+ markupOrderedList = concat . map snd ,
82
82
markupDefList = concatMap (\ (d,t) -> d ++ t),
83
83
markupCodeBlock = const [] ,
84
84
markupTable = concat . F. toList,
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ htmlMarkup modResolv = Markup {
24
24
markupBold = strong,
25
25
markupMonospaced = thecode,
26
26
markupUnorderedList = unordList,
27
- markupOrderedList = ordList,
27
+ markupOrderedList = ordList . map snd ,
28
28
markupDefList = defList,
29
29
markupCodeBlock = pre,
30
30
markupHyperlink = \ (Hyperlink url mLabel) -> anchor ! [href url] << maybe url showHtmlFragment mLabel,
You can’t perform that action at this time.
0 commit comments