commonmark-cli 0.1.0.0 → 0.1.0.1
raw patch · 4 files changed
+15/−5 lines, 4 filesdep ~commonmark-extensionsdep ~commonmark-pandoc
Dependency ranges changed: commonmark-extensions, commonmark-pandoc
Files
- README.md +2/−0
- changelog.md +8/−1
- commonmark-cli.cabal +3/−3
- src/convert.hs +2/−1
README.md view
@@ -1,5 +1,7 @@ # commonmark-cli +[](http://hackage.haskell.org/package/commonmark-cli)+ A command-line tool for converting and syntax-highlighting commonmark documents. See the output of `commonmark-cli --help` for basic usage.
changelog.md view
@@ -1,3 +1,10 @@ # Changelog for commonmark-cli -## Unreleased changes+## 0.1.0.1++- Allow compilation with commonmark-pandoc 0.2.0.0,+ commonmark-extensions 0.2.0.0.++## 0.1.0.0++- Initial release
commonmark-cli.cabal view
@@ -1,5 +1,5 @@ name: commonmark-cli-version: 0.1.0.0+version: 0.1.0.1 synopsis: Command-line commonmark converter and highlighter. description: This package provides a command-line tool, `commonmark`, for converting and syntax-highlighting commonmark documents.@@ -30,8 +30,8 @@ ghc-options: -threaded -rtsopts build-depends: base >=4.7 && <5 , commonmark >= 0.1 && < 0.2- , commonmark-extensions >= 0.1 && < 0.2- , commonmark-pandoc >= 0.1 && < 0.2+ , commonmark-extensions >= 0.1 && < 0.3+ , commonmark-pandoc >= 0.1 && < 0.3 , pandoc-types , aeson , bytestring
src/convert.hs view
@@ -122,6 +122,7 @@ IsBlock il bl, IsInline il, HasPipeTable il bl, HasMath il,+ HasQuoted il, HasEmoji il, HasSpan il, ToPlainText il,@@ -169,7 +170,7 @@ specFromExtensionNames :: (Monad m, Typeable m, Typeable bl, Typeable il, IsBlock il bl, IsInline il,- HasPipeTable il bl, HasMath il, HasEmoji il,+ HasPipeTable il bl, HasMath il, HasQuoted il, HasEmoji il, HasSpan il, ToPlainText il, HasStrikethrough il,