*) Fixed a minor bug in code for tables. {|border"1" did not work, {| border"1" did. Now the space is not needed anymore.

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1423 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
low012 19 years ago
parent 75aad0fe66
commit 927c2c3709

@ -291,7 +291,7 @@ public class wikiCode {
newrowstart=true; newrowstart=true;
line="<table"; line="<table";
if (result.trim().length()>2) { if (result.trim().length()>2) {
line+=result.substring(2).replaceAll("&quot;","\""); line+=" "+result.substring(2).replaceAll("&quot;","\"").trim();
} }
line+=">"; line+=">";
result=line; result=line;

Loading…
Cancel
Save