Does the library PDFSharp can - like iTextSharp - generate PDF files *take into account HTML formatting *? (bold (strong), spacing
If you need simple parsing in your app and you have control over html input, you can write your own library for this.
I have created one in one of my projects, but unfortunately it cannot be shared yet due to custom features related to specific application.
Basically, you need to follow following logic to implement basic HTML to PDF:
I have given very broad overview of logic here based on my implementation.
You may be having much better idea :)
You can also refer : Writing content of HTML table into PDF doc using iTextSharp in asp.net