git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2614 6c8d7289-2bf4-0310-a012-ef5d649a1542
This commit is contained in:
low012 2006-09-18 01:19:54 +00:00
parent 3aac5b26da
commit f9a5b55a9e

View File

@ -1045,12 +1045,12 @@ public class wikiCode {
*/
public String transformLine(String result, plasmaSwitchboard switchboard) {
//If HTML has not bee replaced yet (can happen if method gets called in recursion), replace now!
if (!replacedHTML){
if (!replacedHTML || preformattedSpan){
result = replaceHTMLonly(result);
replacedHTML = true;
}
//If special characters have not bee replaced yet, replace now!
if (!replacedCharacters){
if (!replacedCharacters || preformattedSpan){
result = replaceCharacters(result);
replacedCharacters = true;
}
@ -1059,10 +1059,12 @@ public class wikiCode {
if ((result.indexOf("[=")>=0)||(result.indexOf("=]")>=0)||(escapeSpan)){
result = escapeTag(result, switchboard);
}
//check if line contains preformatted symbols or if we are in a preformatted sequence already.
else if ((result.indexOf("<pre>")>=0)||(result.indexOf("</pre>")>=0)||(preformattedSpan)){
if ((result.indexOf("<pre>")>=0)||(result.indexOf("</pre>")>=0)||(preformattedSpan)){
result = preformattedTag(result, switchboard);
}
//transform page as usual
else {