#!/bin/sh	
# Run spam (an SGML normalizer) on the file(s) given on the command
# line, sending tag-normalized output to stdout.
#
# Usage:
#	html-spam file1.html file2.html ...
#
# [06-May-1995]

H=/usr/local/lib/html-check/lib
SPAM=/usr/local/bin/spam

for i in $*
do
	$SPAM \
		-p \
		-momittag \
		-memptytag \
		-munclosed \
		-mrank \
		-x \
		-c $H/catalog $i
done
