summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2007-10-04 02:07:07 +0000
committerivan <ivan>2007-10-04 02:07:07 +0000
commit78b907f34406e0fc925e4df75d8ecdaf0cc7f1f2 (patch)
tree84fb847bb226110e78d654fd953e28f397be7644
parent7834c31d4004876e5d9537ec4fa2d02fbd31e62a (diff)
bah! 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 693b140fe..c3e1b22ec 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/\[\[([^#p][^\]]*)\]\]/"[[$html\/". w_e($1). "|$1]]"/ge;
print WIKI $_;
}
close RAW;