X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=README.md;h=82f8259c26aaed8e29e42b87d0892acc91e037b8;hb=409759e855afc27cfab263c1ab1b1fd9ab66d38a;hp=9625b4ff81768cb3f54a508a5c04ab9bb8a6a024;hpb=d98ea699f95ebd132da616c3eb7bb1322d058dbd;p=github%2Ffretlink%2Ftext-pipes.git diff --git a/README.md b/README.md index 9625b4f..82f8259 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,17 @@ -pipes-text +text-pipes ========== -These modules `Pipes.Text` and `Pipes.Text.Parse` use materials from [`pipes-text`](https://github.com/ibotty/pipes-text) and -otherwise follows the pattern of [`pipes-bytestring`](https://github.com/Gabriel439/Haskell-Pipes-ByteString-Library), adding a few `pipes-prelude`-like operations. -The most important function, `decodeUtf8`, written by ibotty, uses the development version of the text package; this package can however be built without it. +This repo is called `text-pipes`, but the package is named `pipes-text` as one might expect. +The two modules it contatins, `Pipes.Text` and `Pipes.Text.Parse`, use materials from [`pipes-text`](https://github.com/ibotty/pipes-text); +otherwise they follow the pattern of [`pipes-bytestring`](https://github.com/Gabriel439/Haskell-Pipes-ByteString-Library), adding a few `pipes-prelude`-like operations. +The most important function, `decodeUtf8`, written by ibotty, uses the development version of the text package; this package can however be built with the hackage `text` +though `decodeUtf8` will then not exist. >>> runEffect $ stdinLn >-> P.takeWhile (/= "quit") >-> stdoutLn hi hi quit - >>> runSafeT $ runEffect $ readFile "README.md" >-> map toUpper >-> hoist lift stdout - PIPES-TEXT + >>> runSafeT $ runEffect $ readFile "README.md" >-> toUpper >-> hoist lift stdout + TEXT-PIPES ========== ... \ No newline at end of file