#!/usr/bin/perl # fix preformatted code listings to render properly. while (<>) { s/\&/\&/g; s//\>/g; print; } exit(0);