Re: lynx misrenders many valid xhtml5 pages on my site
Chuck Houpt <[email protected]>
| Newsgroups | gmane.comp.web.lynx.devel |
|---|---|
| Message-ID | <[email protected]> |
The issue is self-closing syntax, which is ok in XML, but not in HTML. For example: <script src="..."/> should be the following for valid HTML: <script src="..."></script> More info at: https://stackoverflow.com/questions/3558119/are-non-void-self-closing-tags-valid-in-html5 - Chuck