Subject: | missing last character with links in lists, when URL ends with slash. |
Date: | Tue, 26 Apr 2011 20:22:01 +0200 |
To: | bug-Text-WikiCreole [...] rt.cpan.org |
From: | Peter Retep <peter_retep [...] gmx.de> |
Hello,
I have a problem with Text::WikiCreole at ubuntu 8.04 (using the ubuntu repository)
when I create HTML containing URLs ending with slashs.
In the href attribute the last character is missing, but the link is displayed correctly at the browser:
$html=Text::WikiCreole::creole_parse(qq{
== Information
* http://domain.org/14/
});
results in
<ul>
<li><a href="http://domain.org/14 <view-source:http://alternativlos.org/14/>">http://domain.org/14/</a></li>
</ul>
I tried also
$html=Text::WikiCreole::creole_parse(qq{
== Information
* [[http://domain.org/14/ | http://domain.org/14/]]
});
but got another errorous result.
Maybe this is an general issue with slashes at end of links?
BR, Peter