2015-08-01 19:24:45 +03:00
# Megaparsec
2014-10-16 20:21:52 +04:00
2015-10-30 14:26:45 +03:00
[![License FreeBSD ](https://img.shields.io/badge/license-FreeBSD-brightgreen.svg )](http://opensource.org/licenses/BSD-2-Clause)
2015-09-21 18:42:10 +03:00
[![Hackage ](https://img.shields.io/hackage/v/megaparsec.svg?style=flat )](https://hackage.haskell.org/package/megaparsec)
2015-10-30 14:53:04 +03:00
[![Stackage Nightly ](http://stackage.org/package/megaparsec/badge/nightly )](http://stackage.org/nightly/package/megaparsec)
2016-01-22 10:12:22 +03:00
[![Stackage LTS ](http://stackage.org/package/megaparsec/badge/lts )](http://stackage.org/lts/package/megaparsec)
2015-07-27 12:12:29 +03:00
[![Build Status ](https://travis-ci.org/mrkkrp/megaparsec.svg?branch=master )](https://travis-ci.org/mrkkrp/megaparsec)
2015-08-02 10:33:26 +03:00
[![Coverage Status ](https://coveralls.io/repos/mrkkrp/megaparsec/badge.svg?branch=master&service=github )](https://coveralls.io/github/mrkkrp/megaparsec?branch=master)
2014-10-16 20:21:52 +04:00
2015-10-10 17:14:48 +03:00
* [Features ](#features )
2015-10-18 13:39:07 +03:00
* [Core features ](#core-features )
2016-05-12 07:06:03 +03:00
* [Error messages ](#error-messages )
2016-05-14 20:08:18 +03:00
* [Alex and Happy support ](#alex-and-happy-support )
2015-10-18 13:39:07 +03:00
* [Character parsing ](#character-parsing )
2017-07-25 18:18:45 +03:00
* [Binary parsing ](#binary-parsing )
2015-10-18 13:39:07 +03:00
* [Permutation parsing ](#permutation-parsing )
* [Expression parsing ](#expression-parsing )
* [Lexer ](#lexer )
2015-10-10 17:14:48 +03:00
* [Documentation ](#documentation )
* [Tutorials ](#tutorials )
2016-05-12 07:06:03 +03:00
* [Performance ](#performance )
2015-10-10 17:14:48 +03:00
* [Comparison with other solutions ](#comparison-with-other-solutions )
2017-02-16 19:26:35 +03:00
* [Megaparsec vs Attoparsec ](#megaparsec-vs-attoparsec )
* [Megaparsec vs Parsec ](#megaparsec-vs-parsec )
* [Megaparsec vs Trifecta ](#megaparsec-vs-trifecta )
* [Megaparsec vs Earley ](#megaparsec-vs-earley )
* [Megaparsec vs Parsers ](#megaparsec-vs-parsers )
2016-01-24 17:57:04 +03:00
* [Related packages ](#related-packages )
2017-07-25 18:18:45 +03:00
* [Prominent projects that use Megaparsec ](#prominent-projects-that-use-megaparsec )
2017-07-06 12:32:05 +03:00
* [Links to announcements and blog posts ](#links-to-announcements-and-blog-posts )
2015-10-10 17:14:48 +03:00
* [Authors ](#authors )
* [Contribution ](#contribution )
* [License ](#license )
2015-10-17 11:06:10 +03:00
This is an industrial-strength monadic parser combinator library. Megaparsec
2017-07-11 11:37:49 +03:00
is a fork of [Parsec ](https://github.com/haskell/parsec ) library originally
2015-09-21 20:26:25 +03:00
written by Daan Leijen.
2014-10-16 20:21:52 +04:00
2015-10-10 17:14:48 +03:00
## Features
2017-05-25 13:47:05 +03:00
This project provides flexible solutions to satisfy common parsing needs.
The section describes them shortly. If you're looking for comprehensive
documentation, see the [section about documentation ](#documentation ).
2015-10-10 17:14:48 +03:00
### Core features
2017-05-25 13:47:05 +03:00
The package is built around `MonadParsec` , an MTL-style monad transformer.
All tools and features work with all instances of `MonadParsec` . You can
achieve various effects combining monad transformers, i.e. building monad
stack. Since the standard common monad transformers like `WriterT` ,
`StateT` , `ReaderT` and others are instances of the `MonadParsec` type
class, you can wrap `ParsecT` *in* these monads, achieving, for example,
2015-10-17 11:06:10 +03:00
backtracking state.
2015-10-10 17:14:48 +03:00
2017-05-25 13:47:05 +03:00
On the other hand `ParsecT` is an instance of many type classes as well. The
2015-10-17 11:06:10 +03:00
most useful ones are `Monad` , `Applicative` , `Alternative` , and
`MonadParsec` .
2015-10-10 17:14:48 +03:00
2017-07-02 19:56:01 +03:00
Megaparsec includes all functionality that is available in Parsec plus
features some combinators that are missing in other parsing libraries:
2015-10-10 17:14:48 +03:00
2017-06-29 08:13:22 +03:00
* `failure` allows to fail reporting a parse error with unexpected and
expected items.
* `fancyFailure` allows to fail reporting custom error messages.
2015-10-10 17:14:48 +03:00
2016-02-12 19:12:30 +03:00
* `withRecovery` allows to recover from parse errors “on-the-fly” and
continue parsing. Once parsing is finished, several parse errors may be
reported or ignored altogether.
2016-10-03 12:45:03 +03:00
* `observing` allows to “observe” parse errors without ending parsing (they
are returned in `Left` , while normal results are wrapped in `Right` ).
2017-07-02 19:56:01 +03:00
In addition to that, Megaparsec 6 features high-performance combinators
similar to those found in Attoparsec:
2015-10-10 17:14:48 +03:00
2017-07-03 14:34:00 +03:00
* `tokens` makes it easy to parse several tokens in a row (`string` and
`string'` are built on top of this primitive). This is about 100 times
faster than matching a string token by token. `tokens` returns “chunk” of
original input, meaning that if you parse `Text` , it'll return `Text`
without any repacking.
2015-10-10 17:14:48 +03:00
2017-07-02 19:56:01 +03:00
* `takeWhile` and `takeWhile1` are about 150 times faster than approaches
involving `many` , `manyTill` and other similar combinators.
2015-10-10 17:14:48 +03:00
2017-07-03 15:34:53 +03:00
* `takeP` allows to grab n tokens from the stream and returns them as a
“chunk” of the stream.
2017-07-02 19:56:01 +03:00
So now that we have matched the main “performance boosters” of Attoparsec,
Megaparsec 6 is not significantly slower than Attoparsec if you write your
parser carefully.
2015-10-10 17:14:48 +03:00
2016-10-12 12:33:01 +03:00
Megaparsec can currently work with the following types of input stream
2017-05-25 13:47:05 +03:00
out-of-the-box:
2015-10-10 17:14:48 +03:00
* `String` = `[Char]`
* `ByteString` (strict and lazy)
* `Text` (strict and lazy)
2017-05-25 13:47:05 +03:00
It's also simple to make it work with custom token streams, and Megaparsec
users have done so many times with great success.
2016-05-12 07:06:03 +03:00
### Error messages
2017-05-25 13:47:05 +03:00
Megaparsec 5 introduces well-typed error messages and the ability to use
custom data types to adjust the library to specific domain of interest. No
need to use a shapeless bunch of strings anymore.
2016-05-12 07:06:03 +03:00
2017-07-02 19:56:01 +03:00
The design of parse errors has been revised in version 6 significantly, but
custom errors are still easy (probably even easier now).
2016-05-12 07:06:03 +03:00
2016-05-14 20:08:18 +03:00
### Alex and Happy support
2016-05-12 07:06:03 +03:00
Megaparsec works well with streams of tokens produced by tools like
2017-07-25 18:18:45 +03:00
Alex/Happy. The design of the `Stream` type class has been changed
significantly in version 6, but user can still work with custom streams of
tokens without problems.
2017-07-02 19:56:01 +03:00
2015-10-10 17:14:48 +03:00
### Character parsing
Megaparsec has decent support for Unicode-aware character parsing. Functions
2017-05-25 13:47:05 +03:00
for character parsing live in the
2017-07-25 18:18:45 +03:00
[`Text.Megaparsec.Char` ](https://hackage.haskell.org/package/megaparsec/docs/Text-Megaparsec-Char.html ) module.
The functions can be divided into several categories:
2015-10-10 17:14:48 +03:00
2017-05-25 13:47:05 +03:00
* *Simple parsers*—parsers that parse certain character or several
2015-10-10 17:14:48 +03:00
characters of the same kind. This includes `newline` , `crlf` , `eol` ,
`tab` , and `space` .
2015-10-17 11:06:10 +03:00
* *Parsers corresponding to categories of characters* parse single character
that belongs to certain category of characters, for example:
`controlChar` , `spaceChar` , `upperChar` , `lowerChar` , `printChar` ,
`digitChar` , and others.
2015-10-10 17:14:48 +03:00
2015-10-17 11:06:10 +03:00
* *General parsers* that allow you to parse a single character you specify
2017-05-25 13:47:05 +03:00
or one of the given characters, or any character except for the given
ones, or character satisfying given predicate. Case-insensitive versions
of the parsers are available.
2015-10-10 17:14:48 +03:00
2017-05-25 13:47:05 +03:00
* *Parsers for sequences of characters* parse strings. Case-sensitive
`string` parser is available as well as case-insensitive `string'` .
2015-10-10 17:14:48 +03:00
2017-07-25 18:18:45 +03:00
### Binary parsing
Similarly, there is
[`Text.Megaparsec.Byte` ](https://hackage.haskell.org/package/megaparsec/docs/Text-Megaparsec-Char.html ) module
for parsing streams of bytes.
2015-10-10 17:14:48 +03:00
### Permutation parsing
2017-05-25 13:47:05 +03:00
For those who are interested in parsing of permutation phrases, there
is [`Text.Megaparsec.Perm` ](https://hackage.haskell.org/package/megaparsec/docs/Text-Megaparsec-Perm.html ).
You have to import the module explicitly, it's not included in the
`Text.Megaparsec` module.
2015-10-10 17:14:48 +03:00
### Expression parsing
2015-10-16 21:29:14 +03:00
Megaparsec has a solution for parsing of expressions. Take a look at
[`Text.Megaparsec.Expr` ](https://hackage.haskell.org/package/megaparsec/docs/Text-Megaparsec-Expr.html ). You have to import the module explicitly, it's not
2015-10-18 11:37:19 +03:00
included in the `Text.Megaparsec` .
2015-10-10 17:14:48 +03:00
2015-10-17 11:06:10 +03:00
Given a table of operators that describes their fixity and precedence, you
can construct a parser that will parse any expression involving the
2015-10-10 17:14:48 +03:00
operators. See documentation for comprehensive description of how it works.
### Lexer
2017-07-25 18:18:45 +03:00
[`Text.Megaparsec.Char.Lexer` ](https://hackage.haskell.org/package/megaparsec/docs/Text-Megaparsec-Char-Lexer.html )
2015-10-16 21:29:14 +03:00
is a module that should help you write your lexer. If you have used `Parsec`
2015-10-10 17:45:27 +03:00
in the past, this module “fixes” its particularly inflexible
`Text.Parsec.Token` .
2015-10-10 17:14:48 +03:00
2017-07-25 18:18:45 +03:00
`Text.Megaparsec.Char.Lexer` is intended to be imported via a qualified
import, it's not included in `Text.Megaparsec` . The module doesn't impose
how you should write your parser, but certain approaches may be more elegant
than others. An especially important theme is parsing of white space,
comments, and indentation.
2015-10-10 17:14:48 +03:00
2015-10-17 11:06:10 +03:00
The design of the module allows you quickly solve simple tasks and doesn't
2015-12-30 12:17:37 +03:00
get in your way when you want to implement something less standard.
2015-10-10 17:14:48 +03:00
2016-05-14 12:59:18 +03:00
Since Megaparsec 5, all tools for indentation-sensitive parsing are
2017-07-25 18:18:45 +03:00
available in `Text.Megaparsec.Char.Lexer` module—no third party packages
2016-05-14 12:59:18 +03:00
required.
2016-05-12 07:06:03 +03:00
2017-07-25 18:18:45 +03:00
`Text.Megaparsec.Byte.Lexer` is also available for users who wish to parse
binary data.
2015-10-10 17:14:48 +03:00
## Documentation
Megaparsec is well-documented. All functions and data-types are thoroughly
described. We pay attention to avoid outdated info or unclear phrases in our
2015-10-16 21:29:14 +03:00
documentation. See the [current version of Megaparsec documentation on
2015-10-10 17:14:48 +03:00
Hackage](https://hackage.haskell.org/package/megaparsec) for yourself.
## Tutorials
2017-07-25 18:18:45 +03:00
You can find Megaparsec
tutorials
2017-06-08 13:32:09 +03:00
[here ](https://markkarpov.com/learn-haskell.html#megaparsec-tutorials ). They
should provide sufficient guidance to help you to start with your parsing
tasks. The site also has instructions and tips for Parsec users who decide
to migrate to Megaparsec.
2015-10-10 17:14:48 +03:00
2016-05-12 07:06:03 +03:00
## Performance
Despite being quite flexible, Megaparsec is also faster than Parsec. The
repository includes benchmarks that can be easily used to compare Megaparsec
and Parsec. In most cases Megaparsec is faster, sometimes dramatically
faster. If you happen to have some other benchmarks, I would appreciate if
you add Megaparsec to them and let me know how it performs.
2017-07-25 18:18:45 +03:00
Additional benchmarks created to guide development of Megaparsec 6 can be
found [here ](https://github.com/mrkkrp/parsers-bench ). These compare 3 pairs
of parsers written using Attoparsec and Megaparsec.
2016-09-18 21:18:27 +03:00
If you think your Megaparsec parser is not efficient enough, take a look
2017-06-08 13:32:09 +03:00
at [these instructions ](https://markkarpov.com/megaparsec/writing-a-fast-parser.html ).
2016-09-18 21:18:27 +03:00
2015-10-10 17:14:48 +03:00
## Comparison with other solutions
There are quite a few libraries that can be used for parsing in Haskell,
let's compare Megaparsec with some of them.
2017-02-16 19:26:35 +03:00
### Megaparsec vs Attoparsec
2015-10-10 17:14:48 +03:00
[Attoparsec ](https://github.com/bos/attoparsec ) is another prominent Haskell
library for parsing. Although the both libraries deal with parsing, it's
usually easy to decide which you will need in particular project:
* *Attoparsec* is much faster but not that feature-rich. It should be used
2015-12-30 12:17:37 +03:00
when you want to process large amounts of data where performance matters
2015-10-10 17:14:48 +03:00
more than quality of error messages.
* *Megaparsec* is good for parsing of source code or other human-readable
texts. It has better error messages and it's implemented as monad
transformer.
So, if you work with something human-readable where size of input data is
usually not huge, just go with Megaparsec, otherwise Attoparsec may be a
better choice.
2017-07-02 19:56:01 +03:00
Since version 6, Megaparsec features the same fast primitives that
Attoparsec has, so in many cases the difference in speed is not that big.
Megaparsec now aims to be “one size fits all” ultimate solution to parsing,
so it can be used even to parse low-level binary formats.
2017-02-16 19:26:35 +03:00
### Megaparsec vs Parsec
2015-10-10 17:14:48 +03:00
2017-05-25 13:47:05 +03:00
Since Megaparsec is a fork of Parsec, we are bound to list the main
2015-10-10 17:14:48 +03:00
differences between the two libraries:
2014-10-16 20:21:52 +04:00
2015-08-17 20:08:17 +03:00
* Better error messages. We test our error messages using dense QuickCheck
tests. Good error messages are just as important for us as correct return
2017-05-25 13:47:05 +03:00
values of our parsers. Megaparsec will be especially useful if you write a
compiler or an interpreter for some language.
2014-10-16 20:21:52 +04:00
2017-07-25 18:18:45 +03:00
* Megaparsec 6 can show line on which parse error happened as part of parse
error. This makes it a lot easier to figure out where the error happened.
2015-08-17 20:08:17 +03:00
* Some quirks and “buggy features” (as well as plain bugs) of original
Parsec are fixed. There is no undocumented surprising stuff in Megaparsec.
2014-10-16 20:21:52 +04:00
2015-08-17 20:08:17 +03:00
* Better support for Unicode parsing in `Text.Megaparsec.Char` .
* Megaparsec has more powerful combinators and can parse languages where
indentation matters.
* Comprehensive QuickCheck test suite covering nearly 100% of our code.
2015-07-30 19:04:33 +03:00
2015-08-17 20:08:17 +03:00
* We have benchmarks to detect performance regressions.
2014-10-16 20:21:52 +04:00
2015-08-17 20:08:17 +03:00
* Better documentation, with 100% of functions covered, without typos and
obsolete information, with working examples. Megaparsec's documentation is
2015-10-16 21:29:14 +03:00
well-structured and doesn't contain things useless to end users.
2015-08-17 20:08:17 +03:00
* Megaparsec's code is clearer and doesn't contain “magic” found in original
2015-08-26 14:47:22 +03:00
Parsec.
2015-08-17 20:08:17 +03:00
2016-05-12 07:06:03 +03:00
* Megaparsec has well-typed error messages and custom error messages.
* Megaparsec can recover from parse errors “on the fly” and continue
parsing.
2017-05-25 13:47:05 +03:00
* Megaparsec allows to conditionally process parse errors *inside your
parser* before parsing is finished. In particular, it's possible to define
regions in which parse errors, should they happen, will get a “context
tag”, e.g. we could build a context stack like “in function definition
foo”, “in expression x”, etc. This is not possible with Parsec.
2017-07-02 19:56:01 +03:00
* Megaparsec is faster and supports efficient operations on top of `tokens` ,
2017-07-03 15:34:53 +03:00
`takeWhileP` , `takeWhile1P` , `takeP` just like Attoparsec.
2016-05-12 07:06:03 +03:00
2015-10-16 21:29:14 +03:00
If you want to see a detailed change log, `CHANGELOG.md` may be helpful.
2016-09-18 21:20:37 +03:00
Also see [this original announcement ](https://notehub.org/w7037 ) for another
comparison.
2015-09-21 18:42:10 +03:00
2017-07-25 18:18:45 +03:00
Parsec is old and somewhat famous in the Haskell community, so we understand
there will be some kind of inertia, but we advise you use Megaparsec from
now on because it solves many problems of the original Parsec project. If
you think you still have a reason to use original Parsec, open an issue.
2015-09-21 18:42:10 +03:00
2017-02-16 19:26:35 +03:00
### Megaparsec vs Trifecta
[Trifecta ](https://hackage.haskell.org/package/trifecta ) is another Haskell
2017-06-29 08:13:22 +03:00
library featuring good error messages. It's probably good, but also
under-documented, and has
2017-02-16 19:26:35 +03:00
unfixed [bugs and flaws ](https://github.com/ekmett/trifecta/issues ) that
Edward is too busy to fix (simply a fact, no offense intended). Other
reasons one may question choice of Trifecta is his/her parsing library:
* Complicated, doesn't have any tutorials available, and documentation
doesn't help at all.
* Trifecta can parse `String` and `ByteString` natively, but not `Text` .
* Trifecta's error messages may be different with their own features, but
certainly not as flexible as Megaparsec's error messages in the latest
versions.
* Depends on `lens` . This means you'll pull in half of Hackage as transitive
dependencies. Also if you're not into `lens` and would like to keep your
code “vanilla”, you may not like the API.
### Megaparsec vs Earley
[Earley ](https://hackage.haskell.org/package/Earley ) is a newer library that
allows to safely (it your code compiles, then it probably works) parse
context-free grammars (CFG). Megaparsec is a lower-level library compared to
2017-02-16 22:16:25 +03:00
Earley, but there are still enough reasons to choose it over Earley:
2017-02-16 19:26:35 +03:00
* Megaparsec is faster.
2017-05-25 13:47:05 +03:00
* Your grammar may be not context-free or you may want introduce some sort
2017-02-16 19:26:35 +03:00
of state to the parsing process. Almost all non-trivial parsers require
something of this sort. Even if your grammar is context-free, state may
2017-02-16 22:16:25 +03:00
allow to add some additional niceties. Earley does not support that.
2017-02-16 19:26:35 +03:00
* Megaparsec's error messages are more flexible allowing to include
arbitrary data in them, return multiple error messages, mark regions that
affect any error that happens in those regions, etc.
2017-05-25 13:47:05 +03:00
* The approach Earley uses differs from the conventional monadic parsing. If
2017-07-25 18:18:45 +03:00
you work not alone, people you work with, especially beginners, will be
much more productive with libraries taking more traditional path to
parsing like Megaparsec.
2017-02-16 19:26:35 +03:00
2017-05-25 13:47:05 +03:00
IOW, Megaparsec is less safe but also more powerful.
2017-02-16 19:26:35 +03:00
### Megaparsec vs Parsers
2015-09-21 18:42:10 +03:00
2015-10-10 17:45:27 +03:00
There is [Parsers ](https://hackage.haskell.org/package/parsers ) package,
2015-10-10 17:14:48 +03:00
which is great. You can use it with Megaparsec or Parsec, but consider the
following:
2015-09-21 18:42:10 +03:00
2017-07-25 18:18:45 +03:00
* It depends on both Attoparsec and Parsec. This is ridiculous, by the way,
because this package is supposed to be useful for parser builders, so they
can write basic core functionality and get the rest “for free”.
2015-09-21 18:42:10 +03:00
2017-05-25 13:47:05 +03:00
* It currently has a ~~bug~~ feature in definition of `lookAhead` for
various monad transformers like `StateT` , etc. which is visible when you
create backtracking state via monad stack, not via built-in features. The
feature makes it so `lookAhead` will backtrack your parser state but not
your custom state added via `StateT` . Kmett thinks this behavior is
better.
2015-09-21 18:42:10 +03:00
We intended to use Parsers library in Megaparsec at some point, but aside
from already mentioned flaws the library has different conventions for
naming of things, different set of “core” functions, etc., different
2017-05-25 13:47:05 +03:00
approach to lexing. So it didn't happen, Megaparsec has minimal
dependencies, it is feature-rich and self-contained.
2015-09-21 18:42:10 +03:00
2016-01-24 17:57:04 +03:00
## Related packages
The following packages are designed to be used with Megaparsec:
2017-05-25 13:47:05 +03:00
* [`hspec-megaparsec` ](https://hackage.haskell.org/package/hspec-megaparsec )—utilities
for testing Megaparsec parsers with
with [Hspec ](https://hackage.haskell.org/package/hspec ).
* [`cassava-megaparsec` ](https://hackage.haskell.org/package/cassava-megaparsec )—Megaparsec
parser of CSV files that plays nicely
2016-09-18 19:13:40 +03:00
with [Cassava ](https://hackage.haskell.org/package/cassava ).
2017-05-25 13:47:05 +03:00
* [`tagsoup-megaparsec` ](https://hackage.haskell.org/package/tagsoup-megaparsec )—a
library for easily
using [TagSoup ](https://hackage.haskell.org/package/tagsoup ) as a token
type in Megaparsec.
2016-01-24 17:57:04 +03:00
2017-07-25 18:18:45 +03:00
## Prominent projects that use Megaparsec
* [Hledger ](https://github.com/simonmichael/hledger )—an accounting tool
* [Stache ](https://github.com/stackbuilders/stache )—Mustache templates for Haskell
* [Language Puppet ](https://github.com/bartavelle/language-puppet )—library
for manipulating Puppet manifests
2017-07-06 12:32:05 +03:00
## Links to announcements and blog posts
2017-01-16 17:29:16 +03:00
Here are some blog posts mainly announcing new features of the project and
describing what sort of things are now possible:
2017-07-06 12:32:05 +03:00
* [A major upgrade to Megaparsec: more speed, more power ](https://markkarpov.com/post/megaparsec-more-speed-more-power.html )
2017-06-06 13:05:30 +03:00
* [Latest additions to Megaparsec ](https://markkarpov.com/post/latest-additions-to-megaparsec.html )
* [Announcing Megaparsec 5 ](https://markkarpov.com/post/announcing-megaparsec-5.html )
* [Megaparsec 4 and 5 ](https://markkarpov.com/post/megaparsec-4-and-5.html )
2017-05-25 13:47:05 +03:00
* [The original Megaparsec 4.0.0 announcement ](https://notehub.org/w7037 )
2017-01-16 17:29:16 +03:00
2015-10-10 17:14:48 +03:00
## Authors
2015-10-18 11:37:19 +03:00
The project was started and is currently maintained by Mark Karpov. You can
2017-05-25 13:47:05 +03:00
find the complete list of contributors in the `AUTHORS.md` file in the
official repository of the project. Thanks to all the people who propose
features and ideas, although they are not in `AUTHORS.md` , without them
Megaparsec would not be that good.
2015-10-10 17:14:48 +03:00
## Contribution
2014-10-16 20:21:52 +04:00
Issues (bugs, feature requests or otherwise feedback) may be reported in
2015-09-22 14:34:18 +03:00
[the GitHub issue tracker for this project ](https://github.com/mrkkrp/megaparsec/issues ).
2014-10-16 20:21:52 +04:00
2015-09-22 14:34:18 +03:00
Pull requests are also welcome (and yes, they will get attention and will be
2017-05-25 13:47:05 +03:00
merged quickly if they are good).
2014-10-16 20:21:52 +04:00
## License
2017-01-01 14:38:59 +03:00
Copyright © 2015– 2017 Megaparsec contributors< br >
2015-07-27 12:28:15 +03:00
Copyright © 2007 Paolo Martini< br >
2015-07-31 14:44:27 +03:00
Copyright © 1999– 2000 Daan Leijen
2015-07-27 12:00:41 +03:00
2015-10-30 14:26:45 +03:00
Distributed under FreeBSD license.