I have an ASP.net application that uses wkhtmltopdf to generate a PDF file from HTML input. It works beautifully and everything, including HTML tables, displays perfectly in the PDF file.
The issue is that the recipients of the file need to copy the table from the PDF and paste in to Word. When they try to do that, the text is carried over but without any sort of table formatting - obviously this is not good.
I've searched and searched for more info on this. Some people hint that there's a way to mark-up tables in PDFs such that the formatting will be copied along with the text but I can't find more detail on it. Has anyone had experience of doing this?
If there's not a way to generate the PDF with enough info, does anyone know of a way to generate an uneditable word document in ASP.net from a HTML source?
Thanks!