summaryrefslogtreecommitdiff
path: root/bin/pod2x
diff options
context:
space:
mode:
authorivan <ivan>2007-10-04 02:07:06 +0000
committerivan <ivan>2007-10-04 02:07:06 +0000
commit614af30dfb1d4b24d42ca2e3eed66784038ec398 (patch)
treebd2d418607cb137d8a1966a5444b7aa5b957cb7c /bin/pod2x
parentcba52e92e2c48ce1052086d3954375e686f2d179 (diff)
bah! THIS should fix munging of non-internal links, i hope
Diffstat (limited to 'bin/pod2x')
-rwxr-xr-xbin/pod2x2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/pod2x b/bin/pod2x
index 5c23ddd46..91dd8d656 100755
--- a/bin/pod2x
+++ b/bin/pod2x
@@ -106,7 +106,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;