A PDF to Markdown converter
Go to file
Johannes Zillmann b5f3075bdf Clean up types
- merge `ItemType`/`BlockType` to `TextType`
- fix bug with duplicate and flattened types
2024-04-02 11:18:55 -06:00
docs
examples
oldSrc
patches
src
test
.eslintrc.js
.gitignore
.prettierrc
jest.config.js
KNOWN_ISSUES.md
LICENSE
package-lock.json
package.json
README.md
tsconfig.json

PDF-To-Markdown Converter

Javascript library to convert PDF files into Markdown text. Online at http://pdf2md.morethan.io.

Major Changes

  • Apr 2017 - 0.1: Initial Release

Use

//TBD

Contribute

Use the issue tracker and/or open pull requests!

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
  • 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

  • npm link in the core project
  • npm link pdf-to-markdown-core in the target project

Credits

pdf.js - Mozilla's PDF parsing & rendering platform which is used as a raw parser