Show HN: PDF to Markdown with a side-by-side check so you can see what broke
1–9 of 9 posts
Re: Show HN: PDF to Markdown with a side-by-side check so you can see what broke
#2Re: Show HN: PDF to Markdown with a side-by-side check so you can see what broke
#3Re: Show HN: PDF to Markdown with a side-by-side check so you can see what broke
#4This is nice and handy, especially in todays world with AI. I am constantly having AI create documentation in .md. What kind of Parsers are you using and vision model? Will this only be for accessing it through the web or will you make a downloadable executable?
Re: Show HN: PDF to Markdown with a side-by-side check so you can see what broke
#5This is nice and handy, especially in todays world with AI. I am constantly having AI create documentation in .md. What kind of Parsers are you using and vision model? Will this only be for accessing it through the web or will you make a downloadable executable?
Thanks! Part of the reason I built it was to feed a clean, token-efficient markdown to models. I used pdf.js as the foundation and added my own rules on top for layout, images, formulas and tables. For OCR I integrated PaddleOCR. I'm also looking at whether Chrome's built-in model could help on the vision side. For now it's purely browser-side, and a desktop version is on the list. If you'd want a desktop version, wh…
Re: Show HN: PDF to Markdown with a side-by-side check so you can see what broke
#6Earlier quoted context omitted.
Thanks! Part of the reason I built it was to feed a clean, token-efficient markdown to models. I used pdf.js as the foundation and added my own rules on top for layout, images, formulas and tables. For OCR I integrated PaddleOCR. I'm also looking at whether Chrome's built-in model could help on the vision side. For now it's purely browser-side, and a desktop version is on the list. If you'd want a desktop version, wh…
I would like the desktop version for privacy and automation(if capable). But either way this is nice!
Re: Show HN: PDF to Markdown with a side-by-side check so you can see what broke
#7Re: Show HN: PDF to Markdown with a side-by-side check so you can see what broke
#8Earlier quoted context omitted.
I would like the desktop version for privacy and automation(if capable). But either way this is nice!
got it, for automation part think you need something like cli?
Re: Show HN: PDF to Markdown with a side-by-side check so you can see what broke
#9Earlier quoted context omitted.
got it, for automation part think you need something like cli?
Yes, integrating that into your production features would be great. Make it a skill that can be called for documentation and reporting. I believe that would save tokens. For example, when monitoring Claude and its task when asked "Put this into a PDF", it will first create it in .md, then build a python script to convert the .md to .pdf. When really the script that it creates is "useless" after running it. Your tool…