Re: [iText-questions] HTMLWriter and tables

2009-10-01 Thread Michael Maddux
Paulo Soares Subject: Re: [iText-questions] HTMLWriter and tables To: "Post all your questions about iText here" Date: Thursday, October 1, 2009, 3:51 AM HTMLWriter is not really supported but you are welcome to provide your fixes. Paulo > -Original Message- > From:

Re: [iText-questions] HTMLWriter and tables

2009-10-01 Thread Paulo Soares
HTMLWriter is not really supported but you are welcome to provide your fixes. Paulo > -Original Message- > From: Mark Fraser [mailto:m...@mark100.net] > Sent: Thursday, October 01, 2009 1:25 AM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions]

[iText-questions] HTMLWriter and tables

2009-10-01 Thread Mark Fraser
When I try to create a simplet table with code such as: Table table = new Table(3); table.setBorderWidth(1); Cell cell = new Cell("c1"); table.addCell(cell); cell = new Cell("c2"); table.addCell(cell); cell = new Cell("c3"); table.addCell(cell); This produces a table tag like: The fact that t