diff --git a/pandoc.cabal b/pandoc.cabal index 98b91cc81..d768cc784 100644 --- a/pandoc.cabal +++ b/pandoc.cabal @@ -404,8 +404,8 @@ library tagsoup >= 0.14.6 && < 0.15, base64-bytestring >= 0.1 && < 1.2, zlib >= 0.5 && < 0.7, - skylighting >= 0.8.3.2 && < 0.9, - skylighting-core >= 0.8.3.2 && < 0.9, + skylighting >= 0.8.4 && < 0.9, + skylighting-core >= 0.8.4 && < 0.9, data-default >= 0.4 && < 0.8, temporary >= 1.1 && < 1.4, blaze-html >= 0.9 && < 0.10, diff --git a/stack.yaml b/stack.yaml index 77f8155a5..183ddb10d 100644 --- a/stack.yaml +++ b/stack.yaml @@ -19,8 +19,8 @@ extra-deps: commit: 2e6fe791ec5293acc925c2ccbe79c9c10d2b7e07 - texmath-0.12.0.2 - haddock-library-1.9.0 -- skylighting-0.8.3.4 -- skylighting-core-0.8.3.4 +- skylighting-0.8.4 +- skylighting-core-0.8.4 - regex-pcre-builtin-0.95.1.2.8.43 - regex-base-0.94.0.0 - doclayout-0.3 diff --git a/test/command/5627.md b/test/command/5627.md index 0f67a083f..41fec0038 100644 --- a/test/command/5627.md +++ b/test/command/5627.md @@ -20,8 +20,8 @@ Something
-->something<!--
<!--<script>alert('Escaped!')</script> -->
Something
-->something<!--
-->something else<!--
<!--<script>alert('Escaped!')</script> -->
Something
+ a b
+ a b
unsplit
is an arrow that takes a pair of values and combines them to
return a single value:
unsplit :: (Arrow a) => (b -> c -> d) -> a (b, c) d
-unsplit = arr . uncurry
- -- arr (\op (x,y) -> x `op` y)
unsplit :: (Arrow a) => (b -> c -> d) -> a (b, c) d
+= arr . uncurry
+ unsplit -- arr (\op (x,y) -> x `op` y)
(***)
combines two arrows into a new arrow by running the two arrows on a
pair of values (one arrow on the first item of the pair and one arrow on the
second item of the pair).
unsplit
is an arrow that takes a pair of values and combines them to
return a single value:
> unsplit :: (Arrow a) => (b -> c -> d) -> a (b, c) d
-> unsplit = arr . uncurry
-> -- arr (\op (x,y) -> x `op` y)
> unsplit :: (Arrow a) => (b -> c -> d) -> a (b, c) d
+> unsplit = arr . uncurry
+> -- arr (\op (x,y) -> x `op` y)
(***)
combines two arrows into a new arrow by running the two arrows on a
pair of values (one arrow on the first item of the pair and one arrow on the
second item of the pair).