Subject: | add a <span> parent tag to html source |
I'm using the web-interface at http://diberri.dyndns.org/html2wiki.html
If this is the source (without the "):
"
<a href="http://google.com">GOOGLE</a><br/>
NewLine
"
then it parses to this html tree:
<html>
<head>
</head>
<body>
<p><a href="http://google.com"><~text text="GOOGLE"></~text></a><br>
</body>
</html>
You see the "NewLine" is missing. Simple solution would be to
embed the source into a <span> like this:
"
<span>
<a href="http://google.com">GOOGLE</a><br/>
NewLine
</span>
"
The span is removed from the wiki-syntax later anyway, so I thinkk your
tool could handle this.
(you can even reproduce this with "http://google.com"<br/>NewLine", ie
this seems to be a generic problem whenever a parent tag is missing)