diff options
author | ivan <ivan> | 2007-10-04 01:56:12 +0000 |
---|---|---|
committer | ivan <ivan> | 2007-10-04 01:56:12 +0000 |
commit | cba52e92e2c48ce1052086d3954375e686f2d179 (patch) | |
tree | 42b2047c7362f36127624cc525526823761eacbb /bin | |
parent | 983359e82af73969459b80b74626af7f3341f3e4 (diff) |
this *should* fix munging of non-internal links, i hope
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/pod2x | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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/\[\[([^#\/][^\]]*)\]\]/"[[$html\/". w_e($1). "|$1]]"/ge; print WIKI $_; } close RAW; |