
## Activate links and fix formatting for HTML;
perl -ne '
  chomp; 
  unless($_){
    print "<br><br>\n";
    next;
  }
  s/(http:\/\/\S+)/<a href="$1">$1<\/a>/;
  print "$_ "

' README > readme.html

## Wikify;
for i in \
  'Protein Data Bank' \
  'Structural Classification of Proteins' \
  'RasMol' \
  'Perl'; do
    replace \
      "$i" \
      "<a href=\"http://en.wikipedia.org/wiki/$i\">$i</a>" \
      -- readme.html;
done;
