diff options
Diffstat (limited to 'dist/fixurls')
-rwxr-xr-x | dist/fixurls | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/dist/fixurls b/dist/fixurls index c9beba82..cb8b9b64 100755 --- a/dist/fixurls +++ b/dist/fixurls @@ -23,9 +23,6 @@ for($i=0; $i<@ARGV; $i++){ noref($1, $2); } - $text =~ s!../man(.)/([^.]*)\.html!$2$1.html!g; - $text =~ s!(http://swtch.com/plan9port/unix)!<a href="\1">\1</a>!g; - open(OUT, ">$ARGV[$i]") || die "open $ARGV[$i]: $!"; print OUT $text; close OUT; |