packages feed

tldr 0.3.1 → 0.4.0

raw patch · 3 files changed

+7/−2 lines, 3 files

Files

CHANGELOG.md view
@@ -1,3 +1,8 @@+# 0.4.0++* Add proper coloring back+* Update gitignore rule+ # 0.3.1  * Add golden testing using tasty
src/Tldr.hs view
@@ -101,7 +101,7 @@  handleNode :: Node -> Handle -> IO () handleNode (Node _ PARAGRAPH xs) handle = handleParagraph xs handle-handleNode (Node _ ITEM xs) handle = handleParagraph xs handle+handleNode (Node _ ITEM xs) handle = changeConsoleSetting ITEM >> handleParagraph xs handle handleNode (Node _ ntype xs) handle = do   changeConsoleSetting ntype   renderNode ntype handle
tldr.cabal view
@@ -1,5 +1,5 @@ name:                tldr-version:             0.3.1+version:             0.4.0 synopsis:            Haskell tldr client description:         Haskell tldr client with support for updating and viewing tldr pages. homepage:            https://github.com/psibi/tldr-hs#readme