]> git.immae.eu Git - github/fretlink/text-pipes.git/blobdiff - README.md
moved internals
[github/fretlink/text-pipes.git] / README.md
index 3befd45a7a37d8db2e9610722283b1bbdd39b4fd..82f8259c26aaed8e29e42b87d0892acc91e037b8 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,18 +1,17 @@
 text-pipes
 ==========
 
-Text pipes, somehow to be fused with [`pipes-text`](https://github.com/ibotty/pipes-text).
-This follows the pattern of `pipes-bytestring` (largely by skillful use of the
-expedient of regular expressions), and adds a few 
-`pipes-prelude`-like operations for testing.
-
+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<Return>
      hi
      quit<Return>
-     >>> runSafeT $ runEffect $ readFile "README.md" >-> map toUpper >-> hoist lift stdout
+     >>> runSafeT $ runEffect $ readFile "README.md" >-> toUpper >-> hoist lift stdout
      TEXT-PIPES
      ==========
-     TEXT PIPES, SOMEHOW TO BE FUSED WITH `PIPES-TEXT`.
      ...
\ No newline at end of file