packages feed

commonmark-pandoc 0.2.3 → 0.3

raw patch · 3 files changed

+14/−2 lines, 3 filesdep ~commonmarkPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: commonmark

API changes (from Hackage documentation)

Files

changelog.md view
@@ -1,5 +1,16 @@ # Changelog for commonmark-pandoc +## 0.3++  * Define Applicative instances of IsBlock, IsInline etc.+    (Ashley Yakeley).++  * Track wikilinks with a class instead of the title (Evan Silberman).+    The use of `title="wikilink"` in HTML output likely traces back to+    Pandoc's hijacking of the title attribute for this purpose back when+    Pandoc links didn't have Attrs. A coordinated change in Pandoc moves+    this more appropriately into a class.+ ## 0.2.3  - Track wikilinks with a class instead of the title (Evan
commonmark-pandoc.cabal view
@@ -1,5 +1,5 @@ name:           commonmark-pandoc-version:        0.2.3+version:        0.3 synopsis:       Bridge between commonmark and pandoc AST. description:    This library provides typeclasses for rendering                 commonmark to Pandoc types.@@ -27,7 +27,7 @@       src   build-depends:       base >= 4.9 && <5-    , commonmark >= 0.2.4.1 && < 0.3+    , commonmark >= 0.3 && < 0.4     , commonmark-extensions >= 0.2.5 && < 0.3     , pandoc-types >= 1.21 && < 1.24     , text
src/Commonmark/Pandoc.hs view
@@ -5,6 +5,7 @@ {-# LANGUAGE MultiParamTypeClasses      #-} {-# LANGUAGE OverloadedStrings          #-} {-# LANGUAGE UndecidableInstances       #-}+{-# LANGUAGE MonoLocalBinds             #-}  module Commonmark.Pandoc   ( Cm(..)