diff options
author | ivan <ivan> | 2007-10-04 02:07:07 +0000 |
---|---|---|
committer | ivan <ivan> | 2007-10-04 02:07:07 +0000 |
commit | 78b907f34406e0fc925e4df75d8ecdaf0cc7f1f2 (patch) | |
tree | 84fb847bb226110e78d654fd953e28f397be7644 | |
parent | 7834c31d4004876e5d9537ec4fa2d02fbd31e62a (diff) |
bah! 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/\[\[([^#p][^\]]*)\]\]/"[[$html\/". w_e($1). "|$1]]"/ge; print WIKI $_; } close RAW; |