Commit Diff


commit - 10f14b04f31487f02f9fa7ac8d7d633683edaa65
commit + 132fddd31c2e8b83ab3f0aa63ee2b1bcdd7bb624
blob - c9beba821b58e473021e652244013e33020b7705
blob + cb8b9b645eed88f7c34d54412e36e7fd75483b85
--- dist/fixurls
+++ 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;