What is a polyglot document? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T21:50:35Z http://stackoverflow.com/feeds/question/1079427 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1079427/what-is-a-polyglot-document 3 What is a polyglot document? Svish 2009-07-03T13:45:44Z 2009-07-03T15:16:07Z <p>In <a href="http://stackoverflow.com/questions/1076897/html5-syntax-html-vs-xhtml/1077151#1077151">this answer</a> to <a href="http://stackoverflow.com/questions/1076897/html5-syntax-html-vs-xhtml">this question</a>, <a href="http://stackoverflow.com/users/132537/lachlan-hunt">Lachlan-Hunt</a> writes the following:</p> <blockquote> <p>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 <strong>Polyglot document</strong>, 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).</p> </blockquote> <p>What is a Polyglot document?</p> http://stackoverflow.com/questions/1079427/what-is-a-polyglot-document/1079442#1079442 8 Answer by Patrick McDonald for What is a polyglot document? Patrick McDonald 2009-07-03T13:49:02Z 2009-07-03T13:49:02Z <p>A polyglot program is a program that is valid in more than one language. See <a href="http://en.wikipedia.org/wiki/Polyglot%5F%28computing%29" rel="nofollow">http://en.wikipedia.org/wiki/Polyglot_(computing)</a>.</p> <p>A polyglot (person) is someone who is fluent in many languages.</p> <p>So the polyglot document in this case is both valid HTML and XHTML.</p> <p>Apparently the word derives from the Ancient Greek πολύγλωττος (poluglōttos, “'many-tongued, polyglot'”), from πολύς (polus, “many”) + γλῶττα (glōtta, “'tongue, language'”)</p> http://stackoverflow.com/questions/1079427/what-is-a-polyglot-document/1079459#1079459 1 Answer by Nick Fortescue for What is a polyglot document? Nick Fortescue 2009-07-03T13:52:19Z 2009-07-03T13:52:19Z <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/1079427/what-is-a-polyglot-document/1079817#1079817 1 Answer by Lachlan Hunt for What is a polyglot document? Lachlan Hunt 2009-07-03T15:16:07Z 2009-07-03T15:16:07Z <p>See the explanation in the HTML 5 Reference <a href="http://dev.w3.org/html5/html-author/#polyglot-documents" rel="nofollow">http://dev.w3.org/html5/html-author/#polyglot-documents</a></p>