mirror of
https://github.com/jzillmann/pdf-to-markdown.git
synced 2024-11-07 08:24:34 +01:00
A PDF to Markdown converter
84c0ad8470
Bumps [webpack-dev-middleware](https://github.com/webpack/webpack-dev-middleware) to 7.1.1 and updates ancestor dependency [webpack-dev-server](https://github.com/webpack/webpack-dev-server). These dependencies need to be updated together. Updates `webpack-dev-middleware` from 3.7.3 to 7.1.1 - [Release notes](https://github.com/webpack/webpack-dev-middleware/releases) - [Changelog](https://github.com/webpack/webpack-dev-middleware/blob/master/CHANGELOG.md) - [Commits](https://github.com/webpack/webpack-dev-middleware/compare/v3.7.3...v7.1.1) 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: webpack-dev-middleware dependency-type: indirect - dependency-name: webpack-dev-server dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> |
||
---|---|---|
docs | ||
examples | ||
src | ||
test | ||
.babelrc | ||
.eslintrc | ||
.gitignore | ||
LICENSE | ||
package-lock.json | ||
package.json | ||
README.md | ||
webpack.config.js |
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
- 2020/2021 Currently separating the parsing logic from the frontent in order to make it separately available.
- Branch modularize
- Find the current version at https://jzillmann.github.io/pdf-to-markdown-staging/
- Help me
- Apr 2017 - 0.1: Initial Release
Contribute
Use the issue tracker and/or open pull requests!
Useful Build Commands
npm install
Download all necessary npm packagesnpm run lint
Lint the javascript filesnpm run test
Run testsnpm run check
Lint & Testnpm run build
Build the dev versionnpm run start
Run the app on an server (useful for loading of worker.js and cmaps)npm run watch
Continuously build the projectopen build/index.html
Open the build project in your default browsernpm run release
Build production versionnpm 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