This is the topic to discuss development of
WysiwygPlugin
If you need support, go to
Support.WysiwygPlugin where you can ask questions and find answers to previously asked questions.
If you want to report a bug, or a feature request, go to
Tasks.WysiwygPlugin where you can see already submitted issues and where you can submit a new bug report or feature request.
Active Items
Id |
Summary |
Priority |
Current State |
Creation Date |
Last Edit |
Item12848 |
Two tables in a row unexpectedly merge to one table |
Low |
Confirmed |
04 Apr 2014 - 02:00 |
08 Apr 2014 - 03:02 |
Item12847 |
Weird blank line in WYSIWYG mode when first line is a MACRO followed by a table |
Low |
Confirmed |
04 Apr 2014 - 00:55 |
14 Apr 2014 - 13:39 |
Item11788 |
Consecutive verbatim blocks are merged. |
Enhancement |
Confirmed |
25 Apr 2012 - 02:48 |
04 Jan 2015 - 05:44 |
Item5492 |
Black font tags are usually unwanted |
Enhancement |
Confirmed |
02 Apr 2008 - 14:01 |
20 Jan 2015 - 19:27 |
Item13496 |
WysiwygPlugin unable to handle paramaterized PUBURL / SCRIPTURL macros |
Enhancement |
Confirmed |
03 Jul 2015 - 01:27 |
03 Jul 2015 - 07:03 |
Item8475 |
Foswiki introduces errant spaces into table cells |
Low |
Confirmed |
07 Feb 2010 - 04:06 |
28 Mar 2017 - 07:09 |
Item14638 |
TML-HTML roundtrip kills empty table headers |
Normal |
Confirmed |
24 Feb 2018 - 20:55 |
13 Jun 2018 - 10:22 |
Discussion
Table issues
There are 3 issues with WYSIWYG editing of tables.
html table with embedded html markup - Item9259
<table> <tbody>
<tr> <td> <h3> b </h3> </td> </tr>
</tbody> </table>
<table> <tbody> <tr> <td>
---+++ b
</td> </tr> </tbody> </table>
<table> <tbody> <tr> <td>---+++ b</td> </tr> </tbody> </table>
- 1.1.5-RC1 Multiple edit passes result in the heading removed from the table: - 1.1.5-RC1
| |
---+++ b
html table with embedded tml markup - TWiki Bug Item5076
<table border="0"><tbody><tr><td>
---++ Argh
* Ergh
</td><td> </td></tr><tr><td> </td><td> </td></tr></tbody></table>
<table border="0"> <tbody> <tr> <td>---++ Argh * Ergh</td> <td> </td> </tr> <tr> <td> </td> <td> </td> </tr> </tbody> </table>
| ---++ Argh * Ergh | |
| | |
- 1.1.5-RC1 Multiple edit passes results in markup removed from the table:
| |
---++ Argh
* Ergh
html table with blank lines - Item11312 (fixed on trunk)
<table border="1" cellpadding="0" cellspacing="1"> <tbody> <tr> <td>A</td> <td>B <p> </p> C</td> <td>D</td> </tr> </tbody> </table>
- 1.1.5-RC1 The blank line between B and C terminates the table.
| A | B |
CD
Started out as:
<table border="1" cellpadding="0" cellspacing="1">
<tbody>
<tr>
<td>A</td>
<td>B
C
</td>
<td>D</td>
</tr>
</tbody>
</table>