*) Fixed a bug that prevented the usage of tables in the wiki.

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2065 6c8d7289-2bf4-0310-a012-ef5d649a1542
This commit is contained in:
low012 2006-05-07 18:15:00 +00:00
parent 51e3bb576f
commit adcad5eae6

View File

@ -76,7 +76,7 @@ public class wikiCode {
private boolean preformattedSpan = false; //needed for <pre> and </pre> spanning over several lines
private boolean replacedHTML = false; //indicates if method replaceHTML has been used with line already
private boolean replacedCharacters = false; //indicates if method replaceCharachters has been used with line
private boolean table=false; //needed for tables, because they reach over several lines
private boolean table = false; //needed for tables, because they reach over several lines
private int preindented = 0; //needed for indented <pre>s
private int escindented = 0; //needed for indented [=s
private int headlines = 0; //number of headlines in page
@ -192,9 +192,6 @@ public class wikiCode {
"\u0060","&#096;",
"\u007B","&#123;",
"\u007C","&#124;",
"\u007D","&#125;",
"\u007E","&#126;",
"\u0082","&#130;",
@ -486,7 +483,7 @@ public class wikiCode {
}
}
else if(values[i].equals("nowrap")){
str = str + "nowrap";
str = str + " nowrap";
}
}
return str;