Jump to:
This is the error page of mod_tidy, a TidyLib based module for the Apache 2 HTTP Server to parse/syntax-check, clean up and pretty-print Web documents in formats like HTML and XHTML for conformance to W3C Recommendations and other standards.
This page is not valid!
As long as you run into this error page, the Markup of the current Web document isn't valid. To avoid this error page, meaning to be able to view your document as expected, you are strongly encouraged to correct its Markup.
Below are the results of parsing this document with mod_tidy:
- line 1 column 1 - Warning: missing <!DOCTYPE> declaration
- line 1 column 50 - Warning: missing </h1> before </h2>
- line 1 column 69 - Warning: discarding unexpected </h2>
Source Listing
Below is the source input I used for checking:
0001 <html><head><title>Tidy-Test</title></head><body><h1>mod_tidy aktiv!</h2></body>
Output Listing
Below is my tidied up version:
0001 <html>
0002 <head>
0003 <title>Tidy-Test</title>
0004 </head>
0005
0006 <body>
0007 <h1>mod_tidy aktiv!</h1>
0008 </body>
0009 </html>
0010