diff options
author | ivan <ivan> | 2007-10-04 01:56:13 +0000 |
---|---|---|
committer | ivan <ivan> | 2007-10-04 01:56:13 +0000 |
commit | db629e8d4e0c83b7cbe71205f7c9f1fa8fd8a23c (patch) | |
tree | b1d2e2a8fd0662337a6d41424a04d54c1e6140d6 | |
parent | 014dc68600675092484c47b73425944398403534 (diff) |
this *should* fix munging of non-internal links, i hope
-rwxr-xr-x | bin/pod2x | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -104,7 +104,7 @@ foreach my $file ( open(RAW, "<$html/$name.rawwiki") or die $!; open(WIKI,">$html/$name.wiki" ) or die $!; while (<RAW>) { - s/\[\[([^#][^\]]*)\]\]/"[[$html\/". w_e($1). "|$1]]"/ge; + s/\[\[([^#\/][^\]]*)\]\]/"[[$html\/". w_e($1). "|$1]]"/ge; print WIKI $_; } close RAW; |