# Basic operation:
#
# - Process input as blocks of text separated by one or more empty
# (or all whitespace) lines.
#
# - Process <nroffescape> pass-through requests for things that this
# script cannot do automatically.
#
# Caution: this depends heavily on the postconf2html output format.
#use Getopt::Std;
#$opt_h = undef;
#$opt_v = undef;
#getopts("hv");
#die "Usage: $0 [-hv]\n" if ($opt_h);
#push @ARGV, "/dev/null"; # XXX
while(<>) {
# Skip blank lines before text block.
next unless (/\S/);
# Gobble up the next text block.
$block = "";
do {
$_ =~ s/\s+\n$/\n/;
$block .= $_;
} while(($_ = <>) && /\S/);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.