A BR embedded in a list can prevent the list from being converted back to TML. This is especially bad in its effects on IE.
The following HTML demonstrates the problem
<ul><li>l <br>n
</li>
<li> U
</li>
</ul>
Reported by
TWiki:Main.KennethLavrsen
- see
http://merlin.lavrsen.dk/twiki42/bin/view/QMS/BugTopic1
and the previous rev
--
TWiki:Main/CrawfordCurrie
- 14 Nov 2007
The same problem occurs with <hr>, and it can be reproduced with Firefox.
table element with a horizontal rule |
| table element with a <hr /> horizontal rule |
In TML tables one can't use
----
for horizontal rules!
--
TWiki:Main.HaraldJoerg
- 14 Nov 2007
Well spotted, thanks! The problem is use of <hr> rather than <hr />, because the parser does a bad job of handling tags that have an open but no close. So I have had to add some auto-closing logic.
CC