Re: Web Magazine featuring Accessibility issues

the problems you are having relate to writing
> *valid* html and have precious little to do with accessibility!


If you download nsgmls from James Clark site
www.jclark.com

(its part of the sp package)

Its easy to validate an html document against
any of the required versions of the document type definition -
Though I always try to use html4-strict.
they are all available from the w3c website.
the file xml.dcl is also available from James C site.


this is an appropriate win batch file.

REM Parameters
REM Call by xmlparse <filename>
REM where <filename> is the relative pathname of an XML file containing an
internal DTD.
REM e.g. XMLPARSE files\test.xml
REM Errors are in the file .\errs

SET SP_CHARSET_FIXED=YES
SET SP_ENCODING=XML

NSGMLS.EXE -wxml  -f .\errs jade\xml.dcl %1
SET SP_ENCODING=ISO-8859-1
SET SP_CHARSET_FIXED=NO
more errs

HTH DaveP

Received on Tuesday, 19 October 1999 15:32:22 UTC