GNOME Bugzilla – Bug 608072
Tables no longer customizable
Last modified: 2010-02-21 12:57:39 UTC
Doxygen 1.6.2 ignores most of the customization html tags used to format a table. Here is a list of primary issues I have found so far: - Ignores any customization to headers including but not limited to: * Background colors * Horizontal and vertical alignment * Border formatting * Font formatting - Ignores border="0" option on the table The option for table size appears to works, but pretty much most of the other options don't. The main problem is when using headers, the output completely ignores any customization. Example, the following should generate a borderless table with no background colors and 10 pix spacing between cells. Headers should only be displayed in bold font (no custom colors): /** @page EXAMPLE Table Error Example <center><table width="90%" border="0" cellspacing="10"> <tr align="center"> <th> Header 1 </th> <th> Header 2 </th> <th> Header 3 </th> </tr> <tr align="center"> <td> 1-A </td> <td> 2-A </td> <td> 3-A </td> </tr> <tr align="center"> <td> 1-B </td> <td> 2-B </td> <td> 3-B </td> </tr> </table></center> Doxygen 1.5.9 and earlier will generate the table as specified. Doxygen 1.6.2 will generate the table formatted with a navy-blue background, white foreground (headers) and the borders will always display. */
Confirmed. Should be fixed in the next subversion update.
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.6.3. Please verify if this is indeed the case. Reopen the bug if you think it is not fixed and please include any additional information that you think can be relevant.