bash-tutorial/tutorial/poppler.org

568 B

Convert pdf to text or html using poppler

Use poppler and redirect the text to a org file. pdftotext converts a pdf to "txt" if no other format is specified

  pdftotext foo.pdf foo

Install poppler in Parabola GNU-Linux

  pacman -S poppler
 pdftotext foo.pdf ->> foo.org # first option
 pdftotext foo.pdf foo.org # second option

Convert pdf to html

  pfdftohtml foo.pdf foo.html