#! /usr/bin/gawk -f
# Last edited on 2011-12-15 01:32:17 by stolfi

/<html>/{ printf "===\n"; next; }

/(Gene Card|Gene Name|Aniseed Gene|Cipro|Transcript|R1CiGC|Full ORF|Cis-regulatory)/{
  gsub(/<font color="#000000" size="2">/, "");
  gsub(/<font color="#[0-9]*" size="2">/, "\n");
  gsub(/<[^<>]*>/," ");
  gsub(/[&]nbsp;/," ");
  gsub(/[\011]/," ");
  print;
}
