vote up 2 vote down star

In this answer to this question, Lachlan-Hunt writes the following:

With HTML5, you can choose to use HTML-only syntax, meaning that it is only compatible with being served and processed as text/html it is not well-formed XML. Or use XHTML-only syntax, meaning that is is well-formed XML, but uses XML features that are not compatible with HTML. Or, you can write a Polyglot document, which is conforming and compatible with both HTML and XHTML processing (In principle, this is conceptually similar to writing XHTML 1.0 that conforms with Appendix C guidelines).

What is a Polyglot document?

flag

3 Answers

vote up 8 vote down check

A polyglot program is a program that is valid in more than one language. See http://en.wikipedia.org/wiki/Polyglot_(computing).

A polyglot (person) is someone who is fluent in many languages.

So the polyglot document in this case is both valid HTML and XHTML.

Apparently the word derives from the Ancient Greek πολύγλωττος (poluglōttos, “'many-tongued, polyglot'”), from πολύς (polus, “many”) + γλῶττα (glōtta, “'tongue, language'”)

link|flag
Master of jargon award +1 – Brian Jul 3 at 13:50
Thanks wikipedia, my saviour! – Patrick McDonald Jul 3 at 13:52
Hm, searched for polyglot document both on google and wikipedia sigh Oh well :p Thanks! – Svish Jul 3 at 13:54
Yeah, searching for "polyglot document" wasn't helpful for me either, so I then just searched for polyglot – Patrick McDonald Jul 3 at 13:58
vote up 1 vote down

Poly glot comes from the greek meaning many tongues. Tongue in this case means language. So a polyglot person is a person who speakes many languages.

A polyglot document in this case is a document which "speaks" XHTML and HTML. So to an XHTML parser it looks perfectly formed, and it also looks perfectly formed to an HTML parser.

link|flag
vote up 1 vote down

See the explanation in the HTML 5 Reference http://dev.w3.org/html5/html-author/#polyglot-documents

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.