text-pipes
==========
-Text pipes
+Text pipes, somehow to be fused with `pipes-text`.
+This follows the pattern of `pipes-bytestring` by the
+expedient of regular expressions, and adds a few
+`pipes-prelude`-like operations for testing.
+
+
+ >>> runEffect $ stdinLn >-> P.takeWhile (/= "quit") >-> stdoutLn
+ hi<Return>
+ hi
+ quit<Return>
+ >>> runSafeT $ runEffect $ readFile "README.md" >-> map toUpper >-> hoist lift stdout
+ TEXT-PIPES
+ ==========
+ TEXT PIPES, SOMEHOW TO BE FUSED WITH `PIPES-TEXT`.
+ ...
\ No newline at end of file