├── .gitignore ├── .npmignore ├── Makefile ├── README.md ├── bin └── mimeograph ├── package.json ├── src ├── cli.coffee ├── mimeograph.coffee ├── patched_pdfbeads.rb ├── tesseract_hocr_config.txt └── utils.coffee └── test ├── _testutils.coffee └── testutils /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelThread/mimeograph/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .git* 3 | *.md 4 | Makefile 5 | /src 6 | *.log 7 | test/ 8 | dump.rdb -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelThread/mimeograph/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelThread/mimeograph/HEAD/README.md -------------------------------------------------------------------------------- /bin/mimeograph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelThread/mimeograph/HEAD/bin/mimeograph -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelThread/mimeograph/HEAD/package.json -------------------------------------------------------------------------------- /src/cli.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelThread/mimeograph/HEAD/src/cli.coffee -------------------------------------------------------------------------------- /src/mimeograph.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelThread/mimeograph/HEAD/src/mimeograph.coffee -------------------------------------------------------------------------------- /src/patched_pdfbeads.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelThread/mimeograph/HEAD/src/patched_pdfbeads.rb -------------------------------------------------------------------------------- /src/tesseract_hocr_config.txt: -------------------------------------------------------------------------------- 1 | tessedit_create_hocr 1 -------------------------------------------------------------------------------- /src/utils.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelThread/mimeograph/HEAD/src/utils.coffee -------------------------------------------------------------------------------- /test/_testutils.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelThread/mimeograph/HEAD/test/_testutils.coffee -------------------------------------------------------------------------------- /test/testutils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelThread/mimeograph/HEAD/test/testutils --------------------------------------------------------------------------------