removed double url activation in doWikiStuff()

This commit is contained in:
Hannes Wallnöfer 2001-12-04 18:37:59 +00:00
parent b45e37e307
commit 1e07e538e7

View file

@ -64,9 +64,9 @@ function doWikiStuff (src) {
var src= " "+src;
// set up reg exp for http link stuff
var linkexp = new RegExp ("([^=^\"])(http://[^ ^\r^\n^\"]*)");
linkexp.ignoreCase=true;
linkexp.global=true;
// var linkexp = new RegExp ("([^=^\"])(http://[^ ^\r^\n^\"]*)");
// linkexp.ignoreCase=true;
// linkexp.global=true;
// do the Wiki link thing, *asterisk style*
var regex = new RegExp ("[*]([a-z0-9öäü][a-z0-9öäüß ]*[a-z0-9öäüß])[*]");
@ -77,7 +77,8 @@ function doWikiStuff (src) {
while (true) {
var found = regex.exec (src.substring(start));
var to = found == null ? src.length : start + found.index;
text += src.substring(start, to).replace (linkexp, "$1<a href=\"$2\">$2</a>");
// text += src.substring(start, to).replace (linkexp, "$1<a href=\"$2\">$2</a>");
text += src.substring(start, to);
if (found == null)
break;
var name = found[1];