Christian Despres

Results 5 issues of Christian Despres

Resolves jgm/pandoc#3177 in this library. The design of `Figure` is the more expressive one: ```haskell data Block = ... | Figure Attr CaptionPos Caption [Block] ... data CaptionPos = CaptionBefore...

Resolves jgm/pandoc#684 in this library. The new `Attr` type is ```haskell data Attr = Attr Text [Text] (Map Text Text) ``` as I mentioned in that issue. Everything that could...

Resolves jgm/pandoc#813 in this package. Writers targeting formats that do not have native references (and all other writers, initially) can attempt to render the `[Inline]` content of a `Ref` when...

Edit: The examples of `Formats` matching below are now wrong, and `listMatches` is now `listSubformats` (see [this comment](https://github.com/jgm/pandoc-types/pull/78#issuecomment-687322333)). An initial `Format` and `Formats` design (discussed a little [here](https://github.com/jgm/pandoc/issues/547#issuecomment-686237311) and in...

I pointed out in [this reddit comment](https://old.reddit.com/r/haskell/comments/1f35f92/how_is_pipessafe_supposed_to_work/lkc1hsf/) that the `pipes-safe` version of `onException` is implemented with `register`/`release`: https://github.com/Gabriella439/Haskell-Pipes-Safe-Library/blob/b76b3b38500da8c1c9e41525a5bf453ccd50a12b/src/Pipes/Safe.hs#L412-L417 but [the version in Control.Exception](https://hackage.haskell.org/package/base-4.20.0.1/docs/Control-Exception.html#v:onException) is implemented with `catch`. This leads to...