git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2070 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
low012 19 years ago
parent bab9ee38e7
commit 35f9418117

@ -690,7 +690,7 @@ public class wikiCode {
// are there any arguments for the image?
if ((p = kl.indexOf("|")) > 0) {
kv = kl.substring(p + 1);
kv = kl.substring(p + 6);
kl = kl.substring(0, p);
// if there are 2 arguments, write them into ALIGN and ALT
if ((p = kv.indexOf("|")) > 0) {
@ -707,7 +707,7 @@ public class wikiCode {
align = " align=\"" + align + "\"";
}
else align = "";
alt = " alt=\"" + kv.substring(p + 1) + "\"";
alt = " alt=\"" + kv.substring(p + 6) + "\"";
}
// if there is just one, put it into ALT
else
@ -730,7 +730,7 @@ public class wikiCode {
// if it's no image, it might be an internal link
else {
if ((p = kl.indexOf("|")) > 0) {
kv = kl.substring(p + 1);
kv = kl.substring(p + 6);
kl = kl.substring(0, p);
} else {
kv = kl;

Loading…
Cancel
Save