A PDF to Markdown converter
Go to file
dependabot[bot] 8df67fd190
Bump braces and webpack-dev-server
Bumps [braces](https://github.com/micromatch/braces) to 3.0.3 and updates ancestor dependency [webpack-dev-server](https://github.com/webpack/webpack-dev-server). These dependencies need to be updated together.


Updates `braces` from 3.0.2 to 3.0.3
- [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md)
- [Commits](https://github.com/micromatch/braces/compare/3.0.2...3.0.3)

Updates `webpack-dev-server` from 3.11.3 to 5.0.4
- [Release notes](https://github.com/webpack/webpack-dev-server/releases)
- [Changelog](https://github.com/webpack/webpack-dev-server/blob/master/CHANGELOG.md)
- [Commits](https://github.com/webpack/webpack-dev-server/compare/v3.11.3...v5.0.4)

---
updated-dependencies:
- dependency-name: braces
  dependency-type: indirect
- dependency-name: webpack-dev-server
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-06-11 08:56:26 +00:00
docs Release 0.1.3 2021-07-12 06:48:57 -06:00
examples Add example files 2017-03-29 08:17:14 +02:00
src update nodejs_v18_compatibility (#62) 2024-03-18 16:55:06 -06:00
test Improve list detection 2017-03-28 09:00:21 +02:00
.babelrc update nodejs_v18_compatibility (#62) 2024-03-18 16:55:06 -06:00
.eslintrc Headline to upper case transformation 2017-02-05 21:22:42 +01:00
.gitignore Headline to upper case transformation 2017-02-05 21:22:42 +01:00
FUNDING.yml Update FUNDING.yml with non copy-pasted PayPal link 🤦‍♂️ 2024-03-25 09:52:08 -06:00
LICENSE Change license to MIT 2021-02-26 16:34:02 +01:00
package-lock.json Bump braces and webpack-dev-server 2024-06-11 08:56:26 +00:00
package.json Bump braces and webpack-dev-server 2024-06-11 08:56:26 +00:00
README.md Point out the modularize effort 2021-03-06 09:34:03 +01:00
webpack.config.js update nodejs_v18_compatibility (#62) 2024-03-18 16:55:06 -06:00

PDF-To-Markdown Converter

Javascript tool to parse PDF files and convert them into Markdown format. Online version at http://pdf2md.morethan.io!

Major Changes

Contribute

Use the issue tracker and/or open pull requests!

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 - Mozilla's PDF parsing & rendering platform which is used as a raw parser