Question
found in 4.1, if a html tag is next to a html link it breaks autolinking for crossweb links.
<br />TWiki.WebHome
renders:
TWiki.WebHome
should render
TWiki
edit
Seems to break with all wikiwords
<br />WebHome
renders:
WebHome
Environment
--
ChadMinick - 22 May 2008
Answer
If you answer a question - or someone answered one of your questions - please remember to edit the page and set the status to answered. The status selector is below the edit box.
That's how it works, I'm afraid, Chad. Wikiwords are recognised only if preceded by one of a specific set of characters, and > isn't one of them.
I think it's unlikely that the spec will change to accomodate this, I fear.
--
CrawfordCurrie - 02 Jun 2008
We can't change the spec for two reasons:
1. Compatibility with existing content
2. Incorrect rendering because a WikiWord in HTML would get linked again. Example:
<a href="http://google.com/">HelloGoogle</a>
If we would remove the leading whitespace rule we'd get:
<a href="http://google.com/"><a href="/cgi-bin/Sandbox/HelloGoogle">HelloGoogle</a></a>
Which is clearly not valid HTML.
--
PeterThoeny - 03 Jun 2008