├── .github └── workflows │ └── test.yml ├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── DEVELOPMENT.md ├── README.md ├── bower.json ├── packages.dhall ├── shell.nix ├── spago.dhall ├── src └── Text │ └── Parsing │ └── Replace │ ├── String.purs │ └── String │ └── Combinator.purs ├── test.dhall └── test └── Main.purs /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesdbrock/purescript-parsing-replace/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesdbrock/purescript-parsing-replace/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "purescript.sourcePath": "{src,test}" 3 | } -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesdbrock/purescript-parsing-replace/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesdbrock/purescript-parsing-replace/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesdbrock/purescript-parsing-replace/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesdbrock/purescript-parsing-replace/HEAD/bower.json -------------------------------------------------------------------------------- /packages.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesdbrock/purescript-parsing-replace/HEAD/packages.dhall -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesdbrock/purescript-parsing-replace/HEAD/shell.nix -------------------------------------------------------------------------------- /spago.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesdbrock/purescript-parsing-replace/HEAD/spago.dhall -------------------------------------------------------------------------------- /src/Text/Parsing/Replace/String.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesdbrock/purescript-parsing-replace/HEAD/src/Text/Parsing/Replace/String.purs -------------------------------------------------------------------------------- /src/Text/Parsing/Replace/String/Combinator.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesdbrock/purescript-parsing-replace/HEAD/src/Text/Parsing/Replace/String/Combinator.purs -------------------------------------------------------------------------------- /test.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesdbrock/purescript-parsing-replace/HEAD/test.dhall -------------------------------------------------------------------------------- /test/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesdbrock/purescript-parsing-replace/HEAD/test/Main.purs --------------------------------------------------------------------------------