MAILTO tag with plsqldoc

Bergeroy

Member²
Hi,

In my source code documentation, I got something like:

Code:
<code>#form@radio.value#</code>
.

After plsqldoc processing, I got this in my HTML documentation:

Code:
<A HREF="MAILTO:#form@radio.value#">#form@radio.value#
I don't know why plsqldoc is adding this anchor tag with MAILTO. In my case, all I want is to show whatever is between the code tag with the courrier font.

Thanks.
 
To be more precise, this is what I get in my generated HTML source:

Code:
<A HREF="MAILTO:</code>#form@option.value#</code>"></code>#form@option.value#</code></A>
and this is what I see in my browser for the same generated HTML documentation:

Code:
<A HREF="MAILTO:#form@radio.value#">#form@radio.value#
 
This is indeed not correct. We'll fix it, and will add some additional control for e-mail address recognition.
 
Back
Top