slick 0.1.0.2 → 0.1.1.0
raw patch · 3 files changed
+11/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog.md +4/−0
- slick.cabal +2/−2
- src/Slick/Pandoc.hs +5/−1
ChangeLog.md view
@@ -1,5 +1,9 @@ # Changelog for sitepipe-shake +## 0.1.1.0+- Add gfm markdown options on writer extensions+ - this should allow pandoc to auto-generate id's on header tags+ ## 0.1.0.1 - Docs update
slick.cabal view
@@ -2,10 +2,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: de26692a487cf6cb3d7f976c8e35382b4acb69f3bb6a99e5a7d288db6b942b23+-- hash: 75e40e0c9806b58cbbc105f1d144866a4fac557689b2b4a7b7ba48a065a3dfca name: slick-version: 0.1.0.2+version: 0.1.1.0 description: Please see the README on GitHub at <https://github.com/ChrisPenner/slick#readme> homepage: https://github.com/ChrisPenner/slick#readme bug-reports: https://github.com/ChrisPenner/slick/issues
src/Slick/Pandoc.hs view
@@ -31,7 +31,11 @@ -- | Reasonable options for rendering to HTML html5Options :: WriterOptions-html5Options = def {writerHighlightStyle = Just tango}+html5Options =+ def+ { writerHighlightStyle = Just tango+ , writerExtensions = writerExtensions def `mappend` githubMarkdownExtensions+ } -- | Handle possible pandoc failure within the Action Monad unPandocM :: PandocPure a -> Action a