-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/
-- | Parse strings into words, like a shell would
--
-- See https://github.com/pbrisbin/hs-shellwords#readme
@package shellwords
@version 0.1.3.0
module Text.Megaparsec.Compat
module ShellWords
parse :: String -> Either String [String]
-- | Parse and return Text values
parseText :: Text -> Either String [Text]
type Parser = Parsec Void String
runParser :: Parser a -> String -> Either String a
parser :: Parser [String]