pdf-to-markdown/README.md
Johannes Zillmann 2869b5e5de Upgrade pdfjs from 1.7.246 to 2.0.489
* Required web pack 2+ => updated to 3
* Add web pack-dev-server to be able to test worker.js stuff
2018-04-25 23:52:44 +02:00

37 lines
1.3 KiB
Markdown

# PDF-To-Markdown Converter
Javascript tool to parse PDF files and convert them into Markdwon format. Online version at http://pdf2md.morethan.io!
## Major Changes
- **Apr 2017** - 0.1: Initial Release
## Contribute
Use the [issue tracker](https://github.com/jzillmann/pdf-to-markdown/issues) and/or open [pull requests](https://github.com/jzillmann/pdf-to-markdown/pulls)!
#### Useful Build Commands
- ```npm install``` Download all necessary npm packages
- ```npm run lint``` Lint the javascript files
- ```npm run test``` Run tests
- ```npm run check``` Lint & Test
- ```npm run build``` Build the dev version
- ```npm run start``` Run the app on an server (useful for loading of worker.js and cmaps)
- ```npm run watch``` Continuously build the project
- ```open build/index.html``` Open the build project in your default browser
- ```npm run release``` Build production version
- ```npm run deploy``` Build production version & move it to the github pages fodler
#### Release
- Increase version in package.json
- ```npm run deploy```
- commit & push
- tag with
- _git tag -a $releaseVersion -m "$releaseVersion release"_
- _git push --tags_
## Credits
[pdf.js](https://mozilla.github.io/pdf.js/) - Mozilla's PDF parsing & rendering platform which is used as a raw parser