#!/usr/local/bin/perl -p
#ascify html. quick and dirty. 
#written by Reini Urban <rurban@sbox.tu-graz.ac.at>
s/<p>/\n\n/i;
s/<br>/\n/i;
s/<.+?>//g;

