diff options
-rw-r--r-- | LICENSE | 2 | ||||
-rw-r--r-- | README.md | 7 |
2 files changed, 5 insertions, 4 deletions
@@ -1,4 +1,4 @@ | |||
1 | Copyright (c) 2013, Gabriel Gonzalez, ibotty, michaelt | 1 | Copyright (c) 2013, Gabriel Gonzalez, Tobias Florek, Michael Thompson |
2 | 2 | ||
3 | All rights reserved. | 3 | All rights reserved. |
4 | 4 | ||
@@ -2,9 +2,10 @@ text-pipes | |||
2 | ========== | 2 | ========== |
3 | 3 | ||
4 | This repo is called `text-pipes`, but the package is named `pipes-text` as one might expect. | 4 | This repo is called `text-pipes`, but the package is named `pipes-text` as one might expect. |
5 | The two modules it contatins, `Pipes.Text` and `Pipes.Text.Parse`, use materials from [`pipes-text`](https://github.com/ibotty/pipes-text) and | 5 | The two modules it contatins, `Pipes.Text` and `Pipes.Text.Parse`, use materials from [`pipes-text`](https://github.com/ibotty/pipes-text); |
6 | otherwise follows the pattern of [`pipes-bytestring`](https://github.com/Gabriel439/Haskell-Pipes-ByteString-Library), adding a few `pipes-prelude`-like operations. | 6 | otherwise they follow the pattern of [`pipes-bytestring`](https://github.com/Gabriel439/Haskell-Pipes-ByteString-Library), adding a few `pipes-prelude`-like operations. |
7 | The most important function, `decodeUtf8`, written by ibotty, uses the development version of the text package; this package can however be built without it. | 7 | 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` |
8 | though `decodeUtf8` will then not exist. | ||
8 | 9 | ||
9 | >>> runEffect $ stdinLn >-> P.takeWhile (/= "quit") >-> stdoutLn | 10 | >>> runEffect $ stdinLn >-> P.takeWhile (/= "quit") >-> stdoutLn |
10 | hi<Return> | 11 | hi<Return> |