I am converting PDF document into HTML using poppler utility. But its creating separate html file for each page, but I want a single HTML file after converting pdf to html.
I used following syntax:
pdftohtml -c abc.pdf
But its creating abc-1.html, abc-2.html, .... etc
I also tried with pdftohtml -c abc.pdf abc.html
but not getting expecting output.
Can anyone tell how to get a html output in single file instead of multiple html files?