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

@ -3,7 +3,7 @@
// part of YACY // part of YACY
// //
// (C) 2005, 2006 by Alexander Schier // (C) 2005, 2006 by Alexander Schier
// Marc Nause // Marc Nause, Franz Brausse
// //
// //
// last change: $LastChangedDate: $ by $LastChangedBy: $ // last change: $LastChangedDate: $ by $LastChangedBy: $
@ -383,9 +383,14 @@ public class wikiCode {
// both point at same place => new line // both point at same place => new line
if (propEnd==cellEnd) { if (propEnd==cellEnd) {
propEnd=lenCellDivider; propEnd=lenCellDivider;
} else { }
else {
line+=parseTableProperties(result.substring(lenCellDivider,propEnd-lenAttribDivider).trim()); line+=parseTableProperties(result.substring(lenCellDivider,propEnd-lenAttribDivider).trim());
} }
// quick&dirty fix for http://www.yacy-forum.de/viewtopic.php?t=2825 [MN]
if(propEnd > cellEnd){
propEnd = lenCellDivider;
}
table=false; cellprocessing=true; table=false; cellprocessing=true;
line+=">"+processTable(result.substring(propEnd,cellEnd).trim(), switchboard)+"</td>"; line+=">"+processTable(result.substring(propEnd,cellEnd).trim(), switchboard)+"</td>";
table=true; cellprocessing=false; table=true; cellprocessing=false;
@ -814,7 +819,7 @@ public class wikiCode {
//end =] //end =]
else if(((p0 = result.indexOf("=]"))>=0)&&(escapeSpan)&&(!preformatted)){ else if(((p0 = result.indexOf("=]"))>=0)&&(escapeSpan)&&(!preformatted)){
escapeSpan = false; escapeSpan = false;
String bq = ""; //gets filled with </blockquote>s as neede String bq = ""; //gets filled with </blockquote>s as needed
String escapeText = result.substring(0,p0); String escapeText = result.substring(0,p0);
//taking care of indented lines //taking care of indented lines
while(escindented > 0){ while(escindented > 0){
@ -890,7 +895,7 @@ public class wikiCode {
} }
result = transformLine("!pre!txt!"+result.substring(p0+12).replaceAll("!pre!", "!pre!!"), switchboard); result = transformLine("!pre!txt!"+result.substring(p0+12).replaceAll("!pre!", "!pre!!"), switchboard);
result = result.replaceAll("!pre!txt!", preformattedText) + bq; result = result.replaceAll("!pre!txt!", preformattedText) + bq;
result = result.replaceAll("!pre!!", "!pre!"); //result = result.replaceAll("!pre!!", "!pre!");
preformatted = false; preformatted = false;
} }
//Getting rid of surplus </pre> //Getting rid of surplus </pre>

Loading…
Cancel
Save