Its by design. Take a look at this thread. http://groups.google.com/group/TiddlyWiki/browse_thread/thread/7b33d84e45804323
Eric has explained it quite well. Try reading the plugin code. I found that quite helpful to understand what was happening behind the curtains. You would see that <span> tags are being inserted at every space. And wherever a linebreak is entered a <span></br></span> is introduced. What is happening is that every linebreak is being converted into an HTML linebreak because this is the way wiki formatting is supposed to work. You could use <hide linebreaks> tag so that line breaks are not treated as line breaks when they are rendered. But, in tables this might be still a problem because <span></span> tag would still be there, albeit empty! If you do not need to use wiki syntax at all in your tiddler you should use <nowiki>. This is the way i am using it too at http://punjabi.tiddlyspot.com On Jul 16, 2:39 am, "Mark S." <[email protected]> wrote: > Has anyone else seen this? > > If I make a table under <html>, and put even a single space between an > ending cell tag and a starting cell tag, the browser inserts an entire > extra colum. That is, > > <tr> > <td>stuff</td> <td>more stuff</td> > </tr> > > (note the space between</td> and <td> in the middle) ends up looking > like > > stuff | extra-column | more stuff > > To make the mystery column disappear, I have to format the code like > this: > > <td>stuff</td><td>more stuff</td> > > or use the <nowiki> tag (which is ok for my purposes). > > It doesn't seem to mind spaces between rows, though. I guess its not a > big deal, but it did catch me by surprise. > > -- Mark --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/TiddlyWiki?hl=en -~----------~----~----~----~------~----~------~--~---

