> I have noticed that HTMLFormattingPlugin interferes with
> my html code rendering in tiddlers. It adds a <span> </br></span>
> everywhere in the code! This breaks the visual rendering of my HTML
Please see
http://www.TiddlyTools.com/#HTMLFormattingPluginInfo
Specifically, the section on "Line breaks", in which I wrote:
-------------------
One major difference between Wiki formatting and HTML formatting is
how "line breaks" are processed. Wiki formatting treats all line
breaks as literal content to be displayed as-is. However, because HTML
normally ignores line breaks and actually processes them as simple
"word separators" instead, many people who write HTML include extra
line breaks in their documents, just to make the "source code" easier
to read.
Even though you can use HTML tags within your tiddler content, the
default treatment for line breaks still follows the Wiki-style rule
(i.e., all new lines are displayed as-is). When adding HTML content to
a tiddler (especially if you cut-and-paste it from another web page),
you should take care to avoid adding extra line breaks to the text.
If removing all the extra line breaks from your HTML content would be
a big hassle, you can quickly override the default Wiki-style line
break rule so that the line breaks use the standard HTML rules, by
placing <hide linebreaks> anywhere within the HTML content. This
automatically converts all line breaks to spaces before rendering the
content, so that the literal line breaks will be processed as simple
word-breaks instead.
Note: this does not alter the actual tiddler content that is stored in
the document, just the manner in which it is displayed. Any line
breaks contained in the tiddler will still be there when you edit its
content. Also, to include a literal line break when the <hide
linebreaks> tag is present, you will need to use a <br> or <p> HTML
tag instead of simply typing a line break.
-------------------
Thus, for your purposes, you should write your HTML content like this:
<html><hide linebreaks> ... </html>
enjoy,
-e