├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── CHANGELOG.md ├── DEVELOPMENT.md ├── LICENSE ├── README.md ├── Setup.hs ├── flake.lock ├── flake.nix ├── replace-megaparsec.cabal ├── src └── Replace │ ├── Megaparsec.hs │ └── Megaparsec │ └── Internal │ ├── ByteString.hs │ └── Text.hs └── tests ├── Test.hs ├── TestByteString.hs ├── TestString.hs └── TestText.hs /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-megaparsec/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-megaparsec/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-megaparsec/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-megaparsec/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-megaparsec/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-megaparsec/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-megaparsec/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-megaparsec/HEAD/flake.nix -------------------------------------------------------------------------------- /replace-megaparsec.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-megaparsec/HEAD/replace-megaparsec.cabal -------------------------------------------------------------------------------- /src/Replace/Megaparsec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-megaparsec/HEAD/src/Replace/Megaparsec.hs -------------------------------------------------------------------------------- /src/Replace/Megaparsec/Internal/ByteString.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-megaparsec/HEAD/src/Replace/Megaparsec/Internal/ByteString.hs -------------------------------------------------------------------------------- /src/Replace/Megaparsec/Internal/Text.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-megaparsec/HEAD/src/Replace/Megaparsec/Internal/Text.hs -------------------------------------------------------------------------------- /tests/Test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-megaparsec/HEAD/tests/Test.hs -------------------------------------------------------------------------------- /tests/TestByteString.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-megaparsec/HEAD/tests/TestByteString.hs -------------------------------------------------------------------------------- /tests/TestString.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-megaparsec/HEAD/tests/TestString.hs -------------------------------------------------------------------------------- /tests/TestText.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-megaparsec/HEAD/tests/TestText.hs --------------------------------------------------------------------------------