├── .gitignore ├── README.md ├── doc └── intro.md ├── project.clj ├── run-fast.sh ├── src └── wikiparse │ └── core.clj ├── test.xml ├── test └── wikiparse │ └── core_test.clj └── wikisample.xml.bz2 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvc/wikiparse/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvc/wikiparse/HEAD/README.md -------------------------------------------------------------------------------- /doc/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvc/wikiparse/HEAD/doc/intro.md -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvc/wikiparse/HEAD/project.clj -------------------------------------------------------------------------------- /run-fast.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvc/wikiparse/HEAD/run-fast.sh -------------------------------------------------------------------------------- /src/wikiparse/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvc/wikiparse/HEAD/src/wikiparse/core.clj -------------------------------------------------------------------------------- /test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvc/wikiparse/HEAD/test.xml -------------------------------------------------------------------------------- /test/wikiparse/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvc/wikiparse/HEAD/test/wikiparse/core_test.clj -------------------------------------------------------------------------------- /wikisample.xml.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvc/wikiparse/HEAD/wikisample.xml.bz2 --------------------------------------------------------------------------------