pdf-to-markdown/README.md

39 lines
1.1 KiB
Markdown
Raw Normal View History

# PDF-To-Markdown Converter
2024-03-26 17:50:33 +01:00
Javascript library to convert PDF files into Markdown text. Online at http://pdf2md.morethan.io.
## Major Changes
- **Apr 2017** - 0.1: Initial Release
2024-03-26 17:50:33 +01:00
## Use
//TBD
## 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)!
2024-03-26 17:50:33 +01:00
### Useful Build Commands
- `npm install` Download all necessary npm packages
- `npm test` Run the tests
- `npm test -- --verbose=false './test/Files\.test\.ts' -t "Alice-In-Wonderland.pdf"` Run specific test
2024-03-26 17:50:33 +01:00
- `npm run test-write` Run the tests and persist possibly new changes on the example file results
- `npm run lint` Lint the javascript files
- `npm run format` Run the prettier formatter
- `npm run build` Compile the typescript files to the `lib` folder
## Release
//TBD
### Test Release locally and use in other projects
2024-03-26 17:50:33 +01:00
- `npm link` in the core project
- `npm link pdf-to-markdown-core` in the target project
## Credits
2019-11-08 18:02:31 +01:00
[pdf.js](https://mozilla.github.io/pdf.js/) - Mozilla's PDF parsing & rendering platform which is used as a raw parser