| Copyright | © 2017 Parnell Springmeyer |
|---|---|
| License | All Rights Reserved |
| Maintainer | Parnell Springmeyer <parnell@digitalmentat.com> |
| Stability | stable |
| Safe Haskell | None |
| Language | Haskell2010 |
Data.OrgMode.Parse.Attoparsec.Util
Description
Attoparsec utilities.
Synopsis
- skipOnlySpace :: Parser Text ()
- nonHeadline :: Parser Text Text
Documentation
skipOnlySpace :: Parser Text () Source #
Skip whitespace characters, only!
Data.Attoparsec.Text.skipSpace uses the isSpace predicate from
Data.Char which also includes control characters such as a return
and newline which we need to *not* consume in some cases during
parsing.