summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2007-10-04 01:56:13 +0000
committerivan <ivan>2007-10-04 01:56:13 +0000
commitdb629e8d4e0c83b7cbe71205f7c9f1fa8fd8a23c (patch)
treeb1d2e2a8fd0662337a6d41424a04d54c1e6140d6
parent014dc68600675092484c47b73425944398403534 (diff)
this *should* fix munging of non-internal links, i hope
-rwxr-xr-xbin/pod2x2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/pod2x b/bin/pod2x
index 5327435a2..693b140fe 100755
--- a/bin/pod2x
+++ b/bin/pod2x
@@ -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;