rehamaltamimi / gwtwiki

Automatically exported from code.google.com/p/gwtwiki
0 stars 0 forks source link

HTML2Wiki - trying to convert HTML tables with empty cell values #19

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Issue reported by EMail:

I have been using your html->wiki converter at http://www.jtidy.de/ and 
it's great! Thanks you for providing this!

There's an issue when trying to convert HTML tables with empty cell values. 
It omits the empty cells instead of providing an empty colum.
So:

                <tr>
                    <td align="left" valign="top">accesskey</td>
                    <td align="left" valign="top">false</td>
                    <td align="left" valign="top"></td>              <!----  
empty cell -->
                    <td align="left" valign="top">false</td>
                    <td align="left" valign="top">String</td>
                    <td align="left" valign="top">Set the html accesskey 
attribute on rendered html element</td>
                </tr>

becomes:

                 ||accesskey||false||false||String||Set the html accesskey 
attribute on rendered html element||

instead of:

                ||accesskey||false||false|| ||String||Set the html 
accesskey attribute on rendered html element||

Original issue reported on code.google.com by axelclk@gmail.com on 25 Jul 2009 at 3:39

GoogleCodeExporter commented 8 years ago
Fixed problem in SVN:
http://code.google.com/p/gwtwiki/source/detail?r=339

Added these JUnit test methods:
http://code.google.com/p/gwtwiki/source/detail?r=340

Original comment by axelclk@gmail.com on 25 Jul 2009 at 3:58