#!/bin/sh
# This script checks common HTML mistakes. Developpers should check their HTML
# pages and Zope Page Templates with this script.

# valign="center" => valign="middle"
#
grep -R 'valign="center"' .
# float: center =>  float: center is not a float value
#
find . -name "*.dtml" -or -name "*.pt" -or -name "*.zpt" \
    | xargs egrep 'float: center|float:center'

# TODO: Look for those tags
#<b>
#<i>
#<br>
#<hr>
